-- MySQL dump 10.19  Distrib 10.3.35-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: lanternrealty_lantern
-- ------------------------------------------------------
-- Server version	10.3.35-MariaDB-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 utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `lrwp_actionscheduler_actions`
--

DROP TABLE IF EXISTS `lrwp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=722 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_actionscheduler_actions`
--

LOCK TABLES `lrwp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `lrwp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `lrwp_actionscheduler_actions` VALUES (721,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[48]','O:28:\"ActionScheduler_NullSchedule\":0:{}',3,1,'2022-06-23 23:58:19','2022-06-23 23:58:19',0,NULL);
/*!40000 ALTER TABLE `lrwp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_actionscheduler_claims`
--

DROP TABLE IF EXISTS `lrwp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=733179 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_actionscheduler_claims`
--

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

--
-- Table structure for table `lrwp_actionscheduler_groups`
--

DROP TABLE IF EXISTS `lrwp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_actionscheduler_groups`
--

LOCK TABLES `lrwp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `lrwp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `lrwp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wpforms'),(3,'wp_mail_smtp');
/*!40000 ALTER TABLE `lrwp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_actionscheduler_logs`
--

DROP TABLE IF EXISTS `lrwp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=275 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_actionscheduler_logs`
--

LOCK TABLES `lrwp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `lrwp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `lrwp_actionscheduler_logs` VALUES (274,721,'action complete via WP Cron','2022-06-23 23:58:19','2022-06-23 23:58:19'),(273,721,'action started via WP Cron','2022-06-23 23:58:19','2022-06-23 23:58:19'),(272,721,'action created','2022-06-23 23:58:14','2022-06-23 23:58:14');
/*!40000 ALTER TABLE `lrwp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_commentmeta`
--

DROP TABLE IF EXISTS `lrwp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_commentmeta`
--

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

--
-- Table structure for table `lrwp_comments`
--

DROP TABLE IF EXISTS `lrwp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_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=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_comments`
--

LOCK TABLES `lrwp_comments` WRITE;
/*!40000 ALTER TABLE `lrwp_comments` DISABLE KEYS */;
INSERT INTO `lrwp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-08-20 00:26:23','2018-08-20 00:26:23','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,'post-trashed','','comment',0,0),(2,1,'AffiliateLabz','comments@affiliatelabz.com','https://affiliatelabz.com/special/?source=lantern-realty.com','62.171.135.115','2020-02-16 02:00:09','2020-02-16 02:00:09','Great content! Super high-quality! Keep it up! :)',0,'post-trashed','Mozilla/5.0 (compatible; AffiliateLabz/1.0; +https://affiliatelabz.com/)','comment',0,0),(3,1,'Brianpauck','sugraem_demo_mail@meta.ua','','178.159.37.134','2020-03-26 19:33:19','2020-03-26 19:33:19','I enjoy this website - its so usefull and helpfull.',0,'post-trashed','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','comment',0,0),(4,1,'Brianpauck','sugraem_demo_mail@meta.ua','','178.159.37.134','2020-04-06 06:01:16','2020-04-06 06:01:16','Great internet site! It looks very professional! Sustain the great job!',0,'post-trashed','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','comment',0,0),(5,1,'JamesAbils','southnoller_lomliw9@yahoo.com','','178.159.37.134','2020-04-25 18:09:01','2020-04-25 18:09:01','Thank you so much! It is an fantastic webpage.',0,'post-trashed','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','comment',0,0);
/*!40000 ALTER TABLE `lrwp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_e_events`
--

DROP TABLE IF EXISTS `lrwp_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_e_events`
--

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

--
-- Table structure for table `lrwp_erp_acct_bill_account_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_bill_account_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_bill_account_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `bill_no` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_bill_account_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_bill_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_bill_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_bill_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `ledger_id` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_bill_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_bills`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_bills`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_bills` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `vendor_id` int(11) DEFAULT NULL,
  `vendor_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `ref` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_bills`
--

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

--
-- Table structure for table `lrwp_erp_acct_cash_at_banks`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_cash_at_banks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_cash_at_banks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ledger_id` int(11) DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `balance` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_cash_at_banks`
--

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

--
-- Table structure for table `lrwp_erp_acct_chart_of_accounts`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_chart_of_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_chart_of_accounts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_chart_of_accounts`
--

LOCK TABLES `lrwp_erp_acct_chart_of_accounts` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_chart_of_accounts` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_chart_of_accounts` VALUES (1,'Asset','asset',NULL,NULL,NULL,NULL),(2,'Liability','liability',NULL,NULL,NULL,NULL),(3,'Equity','equity',NULL,NULL,NULL,NULL),(4,'Income','income',NULL,NULL,NULL,NULL),(5,'Expense','expense',NULL,NULL,NULL,NULL),(6,'Asset & Liability','asset_liability',NULL,NULL,NULL,NULL),(7,'Bank','bank',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_chart_of_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_currency_info`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_currency_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_currency_info` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sign` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=163 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_currency_info`
--

LOCK TABLES `lrwp_erp_acct_currency_info` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_currency_info` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_currency_info` VALUES (1,'AED','د.إ',NULL,NULL,NULL,NULL),(2,'AFN','؋',NULL,NULL,NULL,NULL),(3,'ALL','L',NULL,NULL,NULL,NULL),(4,'AMD','AMD',NULL,NULL,NULL,NULL),(5,'ANG','ƒ',NULL,NULL,NULL,NULL),(6,'AOA','Kz',NULL,NULL,NULL,NULL),(7,'ARS','$',NULL,NULL,NULL,NULL),(8,'AUD','$',NULL,NULL,NULL,NULL),(9,'AWG','ƒ',NULL,NULL,NULL,NULL),(10,'AZN','₼',NULL,NULL,NULL,NULL),(11,'BAM','KM',NULL,NULL,NULL,NULL),(12,'BBD','$',NULL,NULL,NULL,NULL),(13,'BDT','৳',NULL,NULL,NULL,NULL),(14,'BGN','лв',NULL,NULL,NULL,NULL),(15,'BHD','.د.ب',NULL,NULL,NULL,NULL),(16,'BIF','Fr',NULL,NULL,NULL,NULL),(17,'BMD','$',NULL,NULL,NULL,NULL),(18,'BND','$',NULL,NULL,NULL,NULL),(19,'BOB','Bs.',NULL,NULL,NULL,NULL),(20,'BRL','R$',NULL,NULL,NULL,NULL),(21,'BSD','$',NULL,NULL,NULL,NULL),(22,'BTN','Nu.',NULL,NULL,NULL,NULL),(23,'BWP','P',NULL,NULL,NULL,NULL),(24,'BYN','Br',NULL,NULL,NULL,NULL),(25,'BYR','Br',NULL,NULL,NULL,NULL),(26,'BZD','$',NULL,NULL,NULL,NULL),(27,'CAD','$',NULL,NULL,NULL,NULL),(28,'CDF','Fr',NULL,NULL,NULL,NULL),(29,'CHF','Fr',NULL,NULL,NULL,NULL),(30,'CLP','$',NULL,NULL,NULL,NULL),(31,'CNY','¥',NULL,NULL,NULL,NULL),(32,'COP','$',NULL,NULL,NULL,NULL),(33,'CRC','₡',NULL,NULL,NULL,NULL),(34,'CUC','$',NULL,NULL,NULL,NULL),(35,'CUP','$',NULL,NULL,NULL,NULL),(36,'CVE','$',NULL,NULL,NULL,NULL),(37,'CZK','Kč',NULL,NULL,NULL,NULL),(38,'DJF','Fr',NULL,NULL,NULL,NULL),(39,'DKK','kr',NULL,NULL,NULL,NULL),(40,'DOP','$',NULL,NULL,NULL,NULL),(41,'DZD','د.ج',NULL,NULL,NULL,NULL),(42,'EGP','£',NULL,NULL,NULL,NULL),(43,'ERN','Nfk',NULL,NULL,NULL,NULL),(44,'ETB','Br',NULL,NULL,NULL,NULL),(45,'EUR','€',NULL,NULL,NULL,NULL),(46,'FJD','$',NULL,NULL,NULL,NULL),(47,'FKP','£',NULL,NULL,NULL,NULL),(48,'GBP','£',NULL,NULL,NULL,NULL),(49,'GEL','GEL',NULL,NULL,NULL,NULL),(50,'GGP','£',NULL,NULL,NULL,NULL),(51,'GHS','₵',NULL,NULL,NULL,NULL),(52,'GIP','£',NULL,NULL,NULL,NULL),(53,'GMD','D',NULL,NULL,NULL,NULL),(54,'GNF','Fr',NULL,NULL,NULL,NULL),(55,'GTQ','Q',NULL,NULL,NULL,NULL),(56,'GYD','$',NULL,NULL,NULL,NULL),(57,'HKD','$',NULL,NULL,NULL,NULL),(58,'HNL','L',NULL,NULL,NULL,NULL),(59,'HRK','kn',NULL,NULL,NULL,NULL),(60,'HTG','G',NULL,NULL,NULL,NULL),(61,'HUF','Ft',NULL,NULL,NULL,NULL),(62,'IDR','Rp',NULL,NULL,NULL,NULL),(63,'ILS','₪',NULL,NULL,NULL,NULL),(64,'IMP','£',NULL,NULL,NULL,NULL),(65,'INR','₹',NULL,NULL,NULL,NULL),(66,'IQD','ع.د',NULL,NULL,NULL,NULL),(67,'IRR','﷼',NULL,NULL,NULL,NULL),(68,'ISK','kr',NULL,NULL,NULL,NULL),(69,'JEP','£',NULL,NULL,NULL,NULL),(70,'JMD','$',NULL,NULL,NULL,NULL),(71,'JOD','د.ا',NULL,NULL,NULL,NULL),(72,'JPY','¥',NULL,NULL,NULL,NULL),(73,'KES','Sh',NULL,NULL,NULL,NULL),(74,'KGS','с',NULL,NULL,NULL,NULL),(75,'KHR','៛',NULL,NULL,NULL,NULL),(76,'KMF','Fr',NULL,NULL,NULL,NULL),(77,'KPW','₩',NULL,NULL,NULL,NULL),(78,'KRW','₩',NULL,NULL,NULL,NULL),(79,'KWD','د.ك',NULL,NULL,NULL,NULL),(80,'KYD','$',NULL,NULL,NULL,NULL),(81,'KZT','KZT',NULL,NULL,NULL,NULL),(82,'LAK','₭',NULL,NULL,NULL,NULL),(83,'LBP','ل.ل',NULL,NULL,NULL,NULL),(84,'LKR','Rs',NULL,NULL,NULL,NULL),(85,'LRD','$',NULL,NULL,NULL,NULL),(86,'LSL','L',NULL,NULL,NULL,NULL),(87,'LYD','ل.د',NULL,NULL,NULL,NULL),(88,'MAD','د.م.',NULL,NULL,NULL,NULL),(89,'MDL','L',NULL,NULL,NULL,NULL),(90,'MGA','Ar',NULL,NULL,NULL,NULL),(91,'MKD','ден',NULL,NULL,NULL,NULL),(92,'MMK','Ks',NULL,NULL,NULL,NULL),(93,'MNT','₮',NULL,NULL,NULL,NULL),(94,'MOP','P',NULL,NULL,NULL,NULL),(95,'MRO','UM',NULL,NULL,NULL,NULL),(96,'MUR','₨',NULL,NULL,NULL,NULL),(97,'MVR','MVR',NULL,NULL,NULL,NULL),(98,'MWK','MK',NULL,NULL,NULL,NULL),(99,'MXN','$',NULL,NULL,NULL,NULL),(100,'MYR','RM',NULL,NULL,NULL,NULL),(101,'MZN','MT',NULL,NULL,NULL,NULL),(102,'NAD','$',NULL,NULL,NULL,NULL),(103,'NGN','₦',NULL,NULL,NULL,NULL),(104,'NIO','C$',NULL,NULL,NULL,NULL),(105,'NOK','kr',NULL,NULL,NULL,NULL),(106,'NPR','₨',NULL,NULL,NULL,NULL),(107,'NZD','$',NULL,NULL,NULL,NULL),(108,'OMR','ر.ع.',NULL,NULL,NULL,NULL),(109,'PAB','B/.',NULL,NULL,NULL,NULL),(110,'PEN','S/.',NULL,NULL,NULL,NULL),(111,'PGK','K',NULL,NULL,NULL,NULL),(112,'PHP','₱',NULL,NULL,NULL,NULL),(113,'PKR','₨',NULL,NULL,NULL,NULL),(114,'PLN','zł',NULL,NULL,NULL,NULL),(115,'PRB','р.',NULL,NULL,NULL,NULL),(116,'PYG','₲',NULL,NULL,NULL,NULL),(117,'QAR','ر.ق',NULL,NULL,NULL,NULL),(118,'RON','lei',NULL,NULL,NULL,NULL),(119,'RSD','дин',NULL,NULL,NULL,NULL),(120,'RUB','₽',NULL,NULL,NULL,NULL),(121,'RWF','Fr',NULL,NULL,NULL,NULL),(122,'SAR','ر.س',NULL,NULL,NULL,NULL),(123,'SBD','$',NULL,NULL,NULL,NULL),(124,'SCR','₨',NULL,NULL,NULL,NULL),(125,'SDG','ج.س.',NULL,NULL,NULL,NULL),(126,'SEK','kr',NULL,NULL,NULL,NULL),(127,'SGD','$',NULL,NULL,NULL,NULL),(128,'SHP','£',NULL,NULL,NULL,NULL),(129,'SLL','Le',NULL,NULL,NULL,NULL),(130,'SOS','Sh',NULL,NULL,NULL,NULL),(131,'SRD','$',NULL,NULL,NULL,NULL),(132,'SSP','£',NULL,NULL,NULL,NULL),(133,'STD','Db',NULL,NULL,NULL,NULL),(134,'SYP','£',NULL,NULL,NULL,NULL),(135,'SZL','L',NULL,NULL,NULL,NULL),(136,'THB','฿',NULL,NULL,NULL,NULL),(137,'TJS','ЅМ',NULL,NULL,NULL,NULL),(138,'TMT','m',NULL,NULL,NULL,NULL),(139,'TND','د.ت',NULL,NULL,NULL,NULL),(140,'TOP','T$',NULL,NULL,NULL,NULL),(141,'TRY','TRY',NULL,NULL,NULL,NULL),(142,'TTD','$',NULL,NULL,NULL,NULL),(143,'TVD','$',NULL,NULL,NULL,NULL),(144,'TWD','$',NULL,NULL,NULL,NULL),(145,'TZS','Sh',NULL,NULL,NULL,NULL),(146,'UAH','₴',NULL,NULL,NULL,NULL),(147,'UGX','Sh',NULL,NULL,NULL,NULL),(148,'USD','$',NULL,NULL,NULL,NULL),(149,'UYU','$',NULL,NULL,NULL,NULL),(150,'UZS','UZS',NULL,NULL,NULL,NULL),(151,'VEF','Bs',NULL,NULL,NULL,NULL),(152,'VND','₫',NULL,NULL,NULL,NULL),(153,'VUV','Vt',NULL,NULL,NULL,NULL),(154,'WST','T',NULL,NULL,NULL,NULL),(155,'XAF','Fr',NULL,NULL,NULL,NULL),(156,'XCD','$',NULL,NULL,NULL,NULL),(157,'XOF','Fr',NULL,NULL,NULL,NULL),(158,'XPF','Fr',NULL,NULL,NULL,NULL),(159,'YER','﷼',NULL,NULL,NULL,NULL),(160,'ZAR','R',NULL,NULL,NULL,NULL),(161,'ZMW','ZK',NULL,NULL,NULL,NULL),(162,'ZWL','$',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_currency_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_expense_checks`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_expense_checks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_expense_checks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `check_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `bank` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pay_to` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_expense_checks`
--

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

--
-- Table structure for table `lrwp_erp_acct_expense_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_expense_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_expense_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `ledger_id` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_expense_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_expenses`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_expenses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_expenses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `people_id` int(11) DEFAULT NULL,
  `people_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `ref` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `check_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `trn_by` int(11) DEFAULT NULL,
  `trn_by_ledger_id` int(11) DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_expenses`
--

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

--
-- Table structure for table `lrwp_erp_acct_financial_years`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_financial_years`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_financial_years` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_financial_years`
--

LOCK TABLES `lrwp_erp_acct_financial_years` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_financial_years` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_financial_years` VALUES (1,'2020','2020-01-01','2020-12-31',NULL,'2020-10-10','1',NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_financial_years` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_invoice_account_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoice_account_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoice_account_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `invoice_no` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoice_account_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_invoice_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoice_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoice_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `product_id` int(11) DEFAULT NULL,
  `qty` int(11) DEFAULT NULL,
  `unit_price` decimal(20,2) DEFAULT 0.00,
  `discount` decimal(20,2) DEFAULT 0.00,
  `tax` decimal(20,2) DEFAULT 0.00,
  `item_total` decimal(20,2) DEFAULT 0.00,
  `ecommerce_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoice_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_invoice_details_tax`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoice_details_tax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoice_details_tax` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `invoice_details_id` int(11) DEFAULT NULL,
  `agency_id` int(11) DEFAULT NULL,
  `tax_rate` decimal(20,2) DEFAULT 0.00,
  `tax_amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoice_details_tax`
--

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

--
-- Table structure for table `lrwp_erp_acct_invoice_receipts`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoice_receipts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoice_receipts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `customer_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `transaction_charge` decimal(20,2) DEFAULT 0.00,
  `ref` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `trn_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_by_ledger_id` int(11) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoice_receipts`
--

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

--
-- Table structure for table `lrwp_erp_acct_invoice_receipts_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoice_receipts_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoice_receipts_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `invoice_no` int(11) DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoice_receipts_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_invoices`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoices` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `customer_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `billing_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `discount` decimal(20,2) DEFAULT 0.00,
  `discount_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tax` decimal(20,2) DEFAULT 0.00,
  `estimate` tinyint(1) DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoices`
--

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

--
-- Table structure for table `lrwp_erp_acct_journal_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_journal_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_journal_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `ledger_id` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_journal_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_journals`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_journals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_journals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_date` date DEFAULT NULL,
  `ref` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_no` int(11) DEFAULT NULL,
  `voucher_amount` decimal(20,2) DEFAULT 0.00,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_journals`
--

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

--
-- Table structure for table `lrwp_erp_acct_ledger_categories`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_ledger_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_ledger_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `chart_id` int(11) DEFAULT NULL,
  `parent_id` int(11) DEFAULT NULL,
  `system` tinyint(1) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_ledger_categories`
--

LOCK TABLES `lrwp_erp_acct_ledger_categories` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_ledger_categories` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_ledger_categories` VALUES (1,'Current Asset',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(2,'Fixed Asset',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(3,'Inventory',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(4,'Non-current Asset',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(5,'Prepayment',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(6,'Bank & Cash',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(7,'Current Liability',NULL,2,NULL,NULL,NULL,NULL,NULL,NULL),(8,'Liability',NULL,2,NULL,NULL,NULL,NULL,NULL,NULL),(9,'Non-current Liability',NULL,2,NULL,NULL,NULL,NULL,NULL,NULL),(10,'Depreciation',NULL,3,NULL,NULL,NULL,NULL,NULL,NULL),(11,'Direct Costs',NULL,3,NULL,NULL,NULL,NULL,NULL,NULL),(12,'Expense',NULL,3,NULL,NULL,NULL,NULL,NULL,NULL),(13,'Revenue',NULL,4,NULL,NULL,NULL,NULL,NULL,NULL),(14,'Sales',NULL,4,NULL,NULL,NULL,NULL,NULL,NULL),(15,'Other Income',NULL,4,NULL,NULL,NULL,NULL,NULL,NULL),(16,'Equity',NULL,5,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_ledger_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_ledger_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_ledger_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_ledger_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ledger_id` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `trn_date` date DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_ledger_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_ledger_settings`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_ledger_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_ledger_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ledger_id` int(11) DEFAULT NULL,
  `short_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_ledger_settings`
--

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

--
-- Table structure for table `lrwp_erp_acct_ledgers`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_ledgers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_ledgers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `chart_id` int(11) DEFAULT NULL,
  `category_id` int(11) DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `code` int(11) DEFAULT NULL,
  `unused` tinyint(1) DEFAULT NULL,
  `system` tinyint(1) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=106 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_ledgers`
--

LOCK TABLES `lrwp_erp_acct_ledgers` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_ledgers` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_ledgers` VALUES (1,1,NULL,'Accounts Receivable','accounts_receivable',120,1,1,NULL,NULL,NULL,NULL),(2,1,NULL,'Inventory','inventory',140,NULL,1,NULL,NULL,NULL,NULL),(3,1,NULL,'Office Equipment','office_equipment',150,NULL,1,NULL,NULL,NULL,NULL),(4,1,NULL,'Less Accumulated Depreciation on Office Equipment','less_accumulated_depreciation_on_office_equipment',151,NULL,1,NULL,NULL,NULL,NULL),(5,1,NULL,'Computer Equipment','computer_equipment',160,NULL,1,NULL,NULL,NULL,NULL),(6,1,NULL,'Less Accumulated Depreciation on Computer Equipment','less_accumulated_depreciation_on_computer_equipment',161,NULL,1,NULL,NULL,NULL,NULL),(7,1,NULL,'Cash','cash',90,NULL,0,NULL,NULL,NULL,NULL),(8,2,NULL,'Accounts Payable','accounts_payable',200,1,1,NULL,NULL,NULL,NULL),(9,2,NULL,'Accruals','accruals',205,NULL,0,NULL,NULL,NULL,NULL),(10,2,NULL,'Unpaid Expense Claims','unpaid_expense_claims',210,NULL,1,NULL,NULL,NULL,NULL),(11,2,NULL,'Wages Payable','wages_payable',215,NULL,1,NULL,NULL,NULL,NULL),(12,2,NULL,'Wages Payable - Payroll','wages_payable_payroll',216,NULL,0,NULL,NULL,NULL,NULL),(13,2,NULL,'Sales Tax','sales_tax',220,NULL,1,NULL,NULL,NULL,NULL),(14,2,NULL,'Employee Tax Payable','employee_tax_payable',230,NULL,0,NULL,NULL,NULL,NULL),(15,2,NULL,'Employee Benefits Payable','employee_benefits_payable',235,NULL,0,NULL,NULL,NULL,NULL),(16,2,NULL,'Employee Deductions payable','employee_deductions_payable',236,NULL,0,NULL,NULL,NULL,NULL),(17,2,NULL,'Income Tax Payable','income_tax_payable',240,NULL,0,NULL,NULL,NULL,NULL),(18,2,NULL,'Suspense','suspense',250,NULL,0,NULL,NULL,NULL,NULL),(19,2,NULL,'Historical Adjustments','historical_adjustments',255,NULL,1,NULL,NULL,NULL,NULL),(20,2,NULL,'Rounding','rounding',260,NULL,1,NULL,NULL,NULL,NULL),(21,2,NULL,'Revenue Received in Advance','revenue_received_in_advance',835,NULL,0,NULL,NULL,NULL,NULL),(22,2,NULL,'Clearing Account','clearing_account',855,NULL,0,NULL,NULL,NULL,NULL),(23,2,NULL,'Loan','loan',290,NULL,0,NULL,NULL,NULL,NULL),(24,5,NULL,'Costs of Goods Sold','costs_of_goods_sold',500,NULL,1,NULL,NULL,NULL,NULL),(25,5,NULL,'Advertising','advertising',600,NULL,0,NULL,NULL,NULL,NULL),(26,5,NULL,'Bank Service Charges','bank_service_charges',605,NULL,0,NULL,NULL,NULL,NULL),(27,5,NULL,'Bank Transaction Charge','bank_transaction_charge',606,NULL,0,NULL,NULL,NULL,NULL),(28,5,NULL,'Janitorial Expenses','janitorial_expenses',610,NULL,0,NULL,NULL,NULL,NULL),(29,5,NULL,'Consulting & Accounting','consulting_accounting',615,NULL,0,NULL,NULL,NULL,NULL),(30,5,NULL,'Entertainment','entertainment',620,NULL,0,NULL,NULL,NULL,NULL),(31,5,NULL,'Postage & Delivary','postage_delivary',624,NULL,0,NULL,NULL,NULL,NULL),(32,5,NULL,'General Expenses','general_expenses',628,NULL,0,NULL,NULL,NULL,NULL),(33,5,NULL,'Insurance','insurance',632,NULL,0,NULL,NULL,NULL,NULL),(34,5,NULL,'Legal Expenses','legal_expenses',636,NULL,0,NULL,NULL,NULL,NULL),(35,5,NULL,'Utilities','utilities',640,NULL,1,NULL,NULL,NULL,NULL),(36,5,NULL,'Automobile Expenses','automobile_expenses',644,NULL,0,NULL,NULL,NULL,NULL),(37,5,NULL,'Office Expenses','office_expenses',648,NULL,1,NULL,NULL,NULL,NULL),(38,5,NULL,'Printing & Stationary','printing_stationary',652,NULL,0,NULL,NULL,NULL,NULL),(39,5,NULL,'Rent','rent',656,NULL,1,NULL,NULL,NULL,NULL),(40,5,NULL,'Repairs & Maintenance','repairs_maintenance',660,NULL,0,NULL,NULL,NULL,NULL),(41,5,NULL,'Wages & Salaries','wages_salaries',664,NULL,0,NULL,NULL,NULL,NULL),(42,5,NULL,'Payroll Tax Expense','payroll_tax_expense',668,NULL,0,NULL,NULL,NULL,NULL),(43,5,NULL,'Dues & Subscriptions','dues_subscriptions',672,NULL,0,NULL,NULL,NULL,NULL),(44,5,NULL,'Telephone & Internet','telephone_internet',676,NULL,0,NULL,NULL,NULL,NULL),(45,5,NULL,'Travel','travel',680,NULL,0,NULL,NULL,NULL,NULL),(46,5,NULL,'Bad Debts','bad_debts',684,NULL,0,NULL,NULL,NULL,NULL),(47,5,NULL,'Depreciation','depreciation',700,NULL,1,NULL,NULL,NULL,NULL),(48,5,NULL,'Income Tax Expense','income_tax_expense',710,NULL,0,NULL,NULL,NULL,NULL),(49,5,NULL,'Employee Benefits Expense','employee_benefits_expense',715,NULL,0,NULL,NULL,NULL,NULL),(50,5,NULL,'Interest Expense','interest_expense',800,NULL,0,NULL,NULL,NULL,NULL),(51,5,NULL,'Bank Revaluations','bank_revaluations',810,NULL,1,NULL,NULL,NULL,NULL),(52,5,NULL,'Unrealized Currency Gains','unrealized_currency_gains',815,NULL,1,NULL,NULL,NULL,NULL),(53,5,NULL,'Realized Currency Gains','realized_currency_gains',820,NULL,1,NULL,NULL,NULL,NULL),(54,5,NULL,'Sales Discount','sales_discount',825,NULL,1,NULL,NULL,NULL,NULL),(55,4,NULL,'Sales','sales',400,NULL,0,NULL,NULL,NULL,NULL),(56,4,NULL,'Interest Income','interest_income',460,NULL,0,NULL,NULL,NULL,NULL),(57,4,NULL,'Other Revenue','other_revenue',470,NULL,0,NULL,NULL,NULL,NULL),(58,4,NULL,'Purchase Discount','purchase_discount',475,NULL,1,NULL,NULL,NULL,NULL),(59,3,NULL,'Owners Contribution','owners_contribution',300,NULL,0,NULL,NULL,NULL,NULL),(60,3,NULL,'Owners Draw','owners_draw',310,NULL,0,NULL,NULL,NULL,NULL),(61,3,NULL,'Retained Earnings','retained_earnings',320,NULL,1,NULL,NULL,NULL,NULL),(62,3,NULL,'Common Stock','common_stock',330,NULL,0,NULL,NULL,NULL,NULL),(63,1,NULL,'Savings Account','savings_account',92,NULL,0,NULL,NULL,NULL,NULL),(64,1,NULL,'Allowance for Doubtful Accounts','allowance_for_doubtful_accounts',1001,NULL,1,NULL,NULL,NULL,NULL),(65,1,NULL,'Interest Receivable','interest_receivable',1002,NULL,1,NULL,NULL,NULL,NULL),(66,1,NULL,'Supplies','supplies',1003,NULL,1,NULL,NULL,NULL,NULL),(67,1,NULL,'Prepaid Insurance','prepaid_insurance',1004,NULL,1,NULL,NULL,NULL,NULL),(68,1,NULL,'Prepaid Rent','prepaid_rent',1005,NULL,1,NULL,NULL,NULL,NULL),(69,1,NULL,'Prepaid Salary','prepaid_salary',1006,NULL,1,NULL,NULL,NULL,NULL),(70,1,NULL,'Land','land',1007,NULL,1,NULL,NULL,NULL,NULL),(71,1,NULL,'Furniture & Fixture','furniture_fixture',1008,NULL,1,NULL,NULL,NULL,NULL),(72,1,NULL,'Buildings','buildings',1009,NULL,1,NULL,NULL,NULL,NULL),(73,1,NULL,'Copyrights','copyrights',1010,NULL,1,NULL,NULL,NULL,NULL),(74,1,NULL,'Goodwill','goodwill',1011,NULL,1,NULL,NULL,NULL,NULL),(75,1,NULL,'Patents','patents',1012,NULL,1,NULL,NULL,NULL,NULL),(76,1,NULL,'Accoumulated Depreciation- Buildings','accoumulated_depreciation_buildings',1013,NULL,1,NULL,NULL,NULL,NULL),(77,1,NULL,'Accoumulated Depreciation- Furniture & Fixtures','accoumulated_depreciation_furniture_fixtures',1014,NULL,1,NULL,NULL,NULL,NULL),(78,2,NULL,'Notes Payable','notes_payable',1201,NULL,1,NULL,NULL,NULL,NULL),(79,2,NULL,'Salaries and Wages Payable','salaries_and_wages_payable',1202,NULL,1,NULL,NULL,NULL,NULL),(80,2,NULL,'Unearned Rent Revenue','unearned_rent_revenue',1203,NULL,1,NULL,NULL,NULL,NULL),(81,2,NULL,'Interest Payable','interest_payable',1204,NULL,1,NULL,NULL,NULL,NULL),(82,2,NULL,'Dividends Payable','dividends_payable',1205,NULL,1,NULL,NULL,NULL,NULL),(83,2,NULL,'Bonds Payable','bonds_payable',1206,NULL,1,NULL,NULL,NULL,NULL),(84,2,NULL,'Discount on Bonds Payable','discount_on_bonds_payable',1207,NULL,1,NULL,NULL,NULL,NULL),(85,2,NULL,'Premium on Bonds Payable','premium_on_bonds_payable',1208,NULL,1,NULL,NULL,NULL,NULL),(86,2,NULL,'Mortgage Payable','mortgage_payable',1209,NULL,1,NULL,NULL,NULL,NULL),(87,3,NULL,'Owner\'s Equity','owner_s_equity',1301,NULL,1,NULL,NULL,NULL,NULL),(88,3,NULL,'Paid-in Capital in Excess of Par- Common Stock','paid_in_capital_in_excess_of_par_common_stock',1302,NULL,1,NULL,NULL,NULL,NULL),(89,3,NULL,'Paid-in Capital in Excess of Par- Preferred Stock','paid_in_capital_in_excess_of_par_preferred_stock',1303,NULL,1,NULL,NULL,NULL,NULL),(90,3,NULL,'Preferred Stock','preferred_stock',1304,NULL,1,NULL,NULL,NULL,NULL),(91,3,NULL,'Treasury Stock','treasury_stock',1305,NULL,1,NULL,NULL,NULL,NULL),(92,3,NULL,'Dividends','dividends',1306,NULL,1,NULL,NULL,NULL,NULL),(93,3,NULL,'Income Summary','income_summary',1307,NULL,1,NULL,NULL,NULL,NULL),(94,4,NULL,'Service Revenue','service_revenue',1401,NULL,1,NULL,NULL,NULL,NULL),(95,4,NULL,'Sales Revenue','sales_revenue',1402,NULL,1,NULL,NULL,NULL,NULL),(96,4,NULL,'Gain on Disposal of Plant Assets','gain_on_disposal_of_plant_assets',1404,NULL,1,NULL,NULL,NULL,NULL),(97,4,NULL,'Asset Sales','asset_sales',1405,NULL,1,NULL,NULL,NULL,NULL),(98,5,NULL,'Amortization Expense','amortization_expense',1501,NULL,1,NULL,NULL,NULL,NULL),(99,5,NULL,'Freight-Out','freight_out',1502,NULL,1,NULL,NULL,NULL,NULL),(100,5,NULL,'Insurance Expense','insurance_expense',1503,NULL,1,NULL,NULL,NULL,NULL),(101,5,NULL,'Loss on Disposal of Plant Assets','loss_on_disposal_of_plant_assets',1504,NULL,1,NULL,NULL,NULL,NULL),(102,5,NULL,'Maintenance and Repairs Expense','maintenance_and_repairs_expense',1505,NULL,1,NULL,NULL,NULL,NULL),(103,5,NULL,'Purchase','purchase',1506,NULL,1,NULL,NULL,NULL,NULL),(104,5,NULL,'Asset Purchase','asset_purchase',1506,NULL,1,NULL,NULL,NULL,NULL),(105,5,NULL,'Sales Returns and Allowance','sales_returns_and_allowance',1403,NULL,1,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_ledgers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_opening_balances`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_opening_balances`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_opening_balances` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `financial_year_id` int(11) DEFAULT NULL,
  `chart_id` int(11) DEFAULT NULL,
  `ledger_id` int(11) DEFAULT NULL,
  `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_opening_balances`
--

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

--
-- Table structure for table `lrwp_erp_acct_pay_bill`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_pay_bill`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_pay_bill` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `vendor_id` int(11) DEFAULT NULL,
  `vendor_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `trn_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_by_ledger_id` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_pay_bill`
--

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

--
-- Table structure for table `lrwp_erp_acct_pay_bill_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_pay_bill_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_pay_bill_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `bill_no` int(11) DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_pay_bill_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_pay_purchase`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_pay_purchase`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_pay_purchase` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `vendor_id` int(11) DEFAULT NULL,
  `vendor_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `trn_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_by_ledger_id` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_pay_purchase`
--

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

--
-- Table structure for table `lrwp_erp_acct_pay_purchase_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_pay_purchase_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_pay_purchase_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `purchase_no` int(11) DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_pay_purchase_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_payment_methods`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_payment_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_payment_methods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_payment_methods`
--

LOCK TABLES `lrwp_erp_acct_payment_methods` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_payment_methods` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_payment_methods` VALUES (1,'Cash',NULL,NULL,NULL,NULL),(2,'Bank',NULL,NULL,NULL,NULL),(3,'Check',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_payment_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_people_account_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_people_account_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_people_account_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `people_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `trn_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_people_account_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_people_trn`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_people_trn`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_people_trn` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `people_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_no` int(11) DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `trn_date` date DEFAULT NULL,
  `trn_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_people_trn`
--

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

--
-- Table structure for table `lrwp_erp_acct_people_trn_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_people_trn_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_people_trn_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `people_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_people_trn_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_product_categories`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_product_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_product_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `parent` int(11) NOT NULL DEFAULT 0,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_product_categories`
--

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

--
-- Table structure for table `lrwp_erp_acct_product_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_product_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_product_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `stock_in` int(11) DEFAULT NULL,
  `stock_out` int(11) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_product_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_product_types`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_product_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_product_types` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_product_types`
--

LOCK TABLES `lrwp_erp_acct_product_types` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_product_types` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_product_types` VALUES (1,'Inventory','inventory',NULL,NULL,NULL,NULL),(2,'Service','service',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_product_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_products`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `product_type_id` int(11) DEFAULT NULL,
  `category_id` int(11) DEFAULT NULL,
  `tax_cat_id` int(11) DEFAULT NULL,
  `vendor` int(11) DEFAULT NULL,
  `cost_price` decimal(20,2) DEFAULT 0.00,
  `sale_price` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_products`
--

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

--
-- Table structure for table `lrwp_erp_acct_purchase`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_purchase`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_purchase` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `vendor_id` int(11) DEFAULT NULL,
  `vendor_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `ref` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `purchase_order` tinyint(1) DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_purchase`
--

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

--
-- Table structure for table `lrwp_erp_acct_purchase_account_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_purchase_account_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_purchase_account_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `purchase_no` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_purchase_account_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_purchase_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_purchase_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_purchase_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `product_id` int(11) DEFAULT NULL,
  `qty` int(11) DEFAULT NULL,
  `price` decimal(20,2) DEFAULT 0.00,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_purchase_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_tax_agencies`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_tax_agencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_tax_agencies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ecommerce_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_tax_agencies`
--

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

--
-- Table structure for table `lrwp_erp_acct_tax_agency_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_tax_agency_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_tax_agency_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `agency_id` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_tax_agency_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_tax_cat_agency`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_tax_cat_agency`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_tax_cat_agency` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_id` int(11) DEFAULT NULL,
  `component_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tax_cat_id` int(11) DEFAULT NULL,
  `agency_id` int(11) DEFAULT NULL,
  `tax_rate` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_tax_cat_agency`
--

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

--
-- Table structure for table `lrwp_erp_acct_tax_categories`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_tax_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_tax_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_tax_categories`
--

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

--
-- Table structure for table `lrwp_erp_acct_tax_pay`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_tax_pay`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_tax_pay` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `voucher_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_by` int(11) DEFAULT NULL,
  `agency_id` int(11) DEFAULT NULL,
  `ledger_id` int(11) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_tax_pay`
--

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

--
-- Table structure for table `lrwp_erp_acct_taxes`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_taxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_taxes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_rate_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tax_number` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `default` tinyint(1) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_taxes`
--

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

--
-- Table structure for table `lrwp_erp_acct_transfer_voucher`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_transfer_voucher`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_transfer_voucher` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT NULL,
  `ac_from` int(11) DEFAULT NULL,
  `ac_to` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_transfer_voucher`
--

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

--
-- Table structure for table `lrwp_erp_acct_trn_status_types`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_trn_status_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_trn_status_types` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_trn_status_types`
--

LOCK TABLES `lrwp_erp_acct_trn_status_types` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_trn_status_types` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_trn_status_types` VALUES (1,'Draft','draft',NULL,NULL,NULL,NULL),(2,'Awaiting Payment','awaiting_payment',NULL,NULL,NULL,NULL),(3,'Pending','pending',NULL,NULL,NULL,NULL),(4,'Paid','paid',NULL,NULL,NULL,NULL),(5,'Partially Paid','partially_paid',NULL,NULL,NULL,NULL),(6,'Approved','approved',NULL,NULL,NULL,NULL),(7,'Closed','closed',NULL,NULL,NULL,NULL),(8,'Void','void',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_trn_status_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_voucher_no`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_voucher_no`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_voucher_no` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `editable` tinyint(4) DEFAULT 0,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_voucher_no`
--

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

--
-- Table structure for table `lrwp_erp_audit_log`
--

DROP TABLE IF EXISTS `lrwp_erp_audit_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_audit_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `component` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `sub_component` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `data_id` bigint(20) DEFAULT NULL,
  `old_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `new_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `changetype` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `component` (`component`),
  KEY `sub_component` (`sub_component`),
  KEY `changetype` (`changetype`),
  KEY `created_by` (`created_by`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_audit_log`
--

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

--
-- Table structure for table `lrwp_erp_company_locations`
--

DROP TABLE IF EXISTS `lrwp_erp_company_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_company_locations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` int(11) unsigned DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `zip` int(6) DEFAULT NULL,
  `country` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fax` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `company_id` (`company_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_company_locations`
--

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

--
-- Table structure for table `lrwp_erp_crm_activities_task`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_activities_task`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_activities_task` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `activity_id` int(11) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `activity_id` (`activity_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_activities_task`
--

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

--
-- Table structure for table `lrwp_erp_crm_contact_group`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_contact_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_contact_group` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `private` tinyint(1) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_contact_group`
--

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

--
-- Table structure for table `lrwp_erp_crm_contact_subscriber`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_contact_subscriber`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_contact_subscriber` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `group_id` int(11) DEFAULT NULL,
  `status` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subscribe_at` datetime DEFAULT NULL,
  `unsubscribe_at` datetime DEFAULT NULL,
  `hash` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `user_group` (`user_id`,`group_id`),
  KEY `status` (`status`),
  KEY `hash` (`hash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_contact_subscriber`
--

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

--
-- Table structure for table `lrwp_erp_crm_customer_activities`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_customer_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_customer_activities` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_subject` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `log_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `extra` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sent_notification` tinyint(4) DEFAULT 0,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `type` (`type`(250)),
  KEY `log_type` (`log_type`(250)),
  KEY `created_by` (`created_by`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_customer_activities`
--

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

--
-- Table structure for table `lrwp_erp_crm_customer_companies`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_customer_companies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_customer_companies` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` bigint(20) DEFAULT NULL,
  `company_id` bigint(50) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `company_id` (`company_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_customer_companies`
--

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

--
-- Table structure for table `lrwp_erp_crm_save_email_replies`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_save_email_replies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_save_email_replies` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `template` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_save_email_replies`
--

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

--
-- Table structure for table `lrwp_erp_crm_save_search`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_save_search`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_save_search` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `global` tinyint(4) DEFAULT 0,
  `search_name` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `search_val` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_save_search`
--

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

--
-- Table structure for table `lrwp_erp_holidays_indv`
--

DROP TABLE IF EXISTS `lrwp_erp_holidays_indv`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_holidays_indv` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `holiday_id` int(11) DEFAULT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` date DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_holidays_indv`
--

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

--
-- Table structure for table `lrwp_erp_hr_announcement`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_announcement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_announcement` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `post_id` bigint(11) NOT NULL,
  `status` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_status` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `post_id` (`post_id`),
  KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_announcement`
--

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

--
-- Table structure for table `lrwp_erp_hr_dependents`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_dependents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_dependents` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(11) DEFAULT NULL,
  `name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `relation` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `employee_id` (`employee_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_dependents`
--

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

--
-- Table structure for table `lrwp_erp_hr_depts`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_depts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_depts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lead` int(11) unsigned DEFAULT 0,
  `parent` int(11) unsigned DEFAULT 0,
  `status` tinyint(1) unsigned DEFAULT 1,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_depts`
--

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

--
-- Table structure for table `lrwp_erp_hr_designations`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_designations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_designations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` tinyint(1) DEFAULT 1,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_designations`
--

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

--
-- Table structure for table `lrwp_erp_hr_education`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_education`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_education` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(11) unsigned DEFAULT NULL,
  `school` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `degree` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `finished` int(4) unsigned DEFAULT NULL,
  `notes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `interest` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `employee_id` (`employee_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_education`
--

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

--
-- Table structure for table `lrwp_erp_hr_employee_history`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_employee_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_employee_history` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `module` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `category` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `module` (`module`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_employee_history`
--

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

--
-- Table structure for table `lrwp_erp_hr_employee_notes`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_employee_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_employee_notes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_by` bigint(20) unsigned NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_employee_notes`
--

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

--
-- Table structure for table `lrwp_erp_hr_employee_performance`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_employee_performance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_employee_performance` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(11) unsigned DEFAULT NULL,
  `reporting_to` int(11) unsigned DEFAULT NULL,
  `job_knowledge` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `work_quality` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attendance` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `communication` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `dependablity` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reviewer` int(11) unsigned DEFAULT NULL,
  `comments` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `completion_date` datetime DEFAULT NULL,
  `goal_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `employee_assessment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `supervisor` int(11) unsigned DEFAULT NULL,
  `supervisor_assessment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `performance_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `employee_id` (`employee_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_employee_performance`
--

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

--
-- Table structure for table `lrwp_erp_hr_employees`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_employees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_employees` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `employee_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `designation` int(11) unsigned NOT NULL DEFAULT 0,
  `department` int(11) unsigned NOT NULL DEFAULT 0,
  `location` int(10) unsigned NOT NULL DEFAULT 0,
  `hiring_source` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `hiring_date` date NOT NULL,
  `termination_date` date NOT NULL,
  `date_of_birth` date NOT NULL,
  `reporting_to` bigint(20) unsigned NOT NULL DEFAULT 0,
  `pay_rate` int(11) unsigned NOT NULL DEFAULT 0,
  `pay_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `deleted_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `employee_id` (`employee_id`),
  KEY `designation` (`designation`),
  KEY `department` (`department`),
  KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_employees`
--

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

--
-- Table structure for table `lrwp_erp_hr_financial_years`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_financial_years`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_financial_years` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `fy_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `start_date` int(11) DEFAULT NULL,
  `end_date` int(11) DEFAULT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `updated_by` bigint(20) unsigned DEFAULT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `year_search` (`start_date`,`end_date`),
  KEY `start_date` (`start_date`),
  KEY `end_date` (`end_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_financial_years`
--

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

--
-- Table structure for table `lrwp_erp_hr_holiday`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_holiday`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_holiday` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `start` timestamp NOT NULL DEFAULT current_timestamp(),
  `end` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `range_status` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_holiday`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_approval_status`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_approval_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_approval_status` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `leave_request_id` bigint(20) unsigned NOT NULL,
  `approval_status_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `approved_by` bigint(20) unsigned DEFAULT NULL,
  `message` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leave_request_id` (`leave_request_id`),
  KEY `approval_status_id` (`approval_status_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_approval_status`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_encashment_requests`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_encashment_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_encashment_requests` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `leave_id` smallint(6) unsigned NOT NULL,
  `approved_by` bigint(20) unsigned DEFAULT NULL,
  `approval_status_id` tinyint(3) unsigned NOT NULL DEFAULT 1,
  `encash_days` decimal(4,1) unsigned NOT NULL DEFAULT 0.0,
  `forward_days` decimal(4,1) unsigned NOT NULL DEFAULT 0.0,
  `amount` decimal(20,2) NOT NULL DEFAULT 0.00,
  `total` decimal(20,2) NOT NULL DEFAULT 0.00,
  `f_year` smallint(5) unsigned NOT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `leave_id` (`leave_id`),
  KEY `f_year` (`f_year`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_encashment_requests`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_entitlements`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_entitlements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_entitlements` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `leave_id` smallint(6) unsigned NOT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `trn_id` bigint(20) unsigned NOT NULL,
  `trn_type` enum('leave_policies','leave_approval_status','leave_encashment_requests','leave_entitlements','unpaid_leave','leave_encashment','leave_carryforward','manual_leave_policies','Accounts','others','leave_accrual','carry_forward_leave_expired') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'leave_policies',
  `day_in` decimal(5,1) unsigned NOT NULL DEFAULT 0.0,
  `day_out` decimal(5,1) unsigned NOT NULL DEFAULT 0.0,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `f_year` smallint(6) NOT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `comp_key_1` (`user_id`,`leave_id`,`f_year`,`trn_type`),
  KEY `trn_id` (`trn_id`),
  KEY `leave_id` (`leave_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_entitlements`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_policies`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_policies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_policies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `leave_id` smallint(5) unsigned NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `days` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `color` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `apply_limit` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `employee_type` enum('-1','permanent','parttime','contract','temporary','trainee') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'permanent',
  `department_id` int(11) NOT NULL DEFAULT -1,
  `location_id` int(11) NOT NULL DEFAULT -1,
  `designation_id` int(11) NOT NULL DEFAULT -1,
  `gender` enum('-1','male','female','other') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '-1',
  `marital` enum('-1','single','married','widowed') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '-1',
  `f_year` smallint(5) unsigned DEFAULT NULL,
  `apply_for_new_users` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `carryover_days` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `carryover_uses_limit` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `encashment_days` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `encashment_based_on` enum('pay_rate','basic','gross') COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `forward_default` enum('encashment','carryover') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'encashment',
  `applicable_from_days` smallint(5) unsigned NOT NULL DEFAULT 0,
  `accrued_amount` decimal(10,2) NOT NULL DEFAULT 0.00,
  `accrued_max_days` smallint(4) unsigned NOT NULL DEFAULT 0,
  `halfday_enable` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leave_id` (`leave_id`),
  KEY `f_year` (`f_year`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_policies`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_policies_segregation`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_policies_segregation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_policies_segregation` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `leave_policy_id` bigint(20) unsigned NOT NULL,
  `jan` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `feb` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `mar` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `apr` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `may` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `jun` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `jul` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `aug` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `sep` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `oct` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `nov` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `decem` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leave_policy_id` (`leave_policy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_policies_segregation`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_request_details`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_request_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_request_details` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `leave_request_id` bigint(20) unsigned NOT NULL,
  `leave_approval_status_id` bigint(20) unsigned NOT NULL,
  `workingday_status` tinyint(3) unsigned NOT NULL DEFAULT 1,
  `user_id` bigint(20) unsigned NOT NULL,
  `f_year` smallint(6) NOT NULL,
  `leave_date` int(11) NOT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leave_request_id` (`leave_request_id`),
  KEY `user_id` (`user_id`),
  KEY `user_fyear_leave` (`user_id`,`f_year`,`leave_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_request_details`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_requests`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_requests` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `leave_id` smallint(6) unsigned NOT NULL,
  `leave_entitlement_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `day_status_id` smallint(5) unsigned NOT NULL DEFAULT 1,
  `days` decimal(5,1) unsigned NOT NULL DEFAULT 0.0,
  `start_date` int(11) NOT NULL,
  `end_date` int(11) NOT NULL,
  `reason` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_status` smallint(6) unsigned NOT NULL DEFAULT 2,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `user_leave` (`user_id`,`leave_id`),
  KEY `user_entitlement` (`user_id`,`leave_entitlement_id`),
  KEY `last_status` (`last_status`),
  KEY `leave_entitlement_id` (`leave_entitlement_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_requests`
--

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

--
-- Table structure for table `lrwp_erp_hr_leaves`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leaves`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leaves` (
  `id` smallint(6) NOT NULL AUTO_INCREMENT,
  `name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leaves`
--

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

--
-- Table structure for table `lrwp_erp_hr_leaves_unpaid`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leaves_unpaid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leaves_unpaid` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `leave_id` smallint(6) unsigned NOT NULL,
  `leave_request_id` bigint(20) unsigned NOT NULL,
  `leave_approval_status_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `days` decimal(4,1) unsigned NOT NULL DEFAULT 0.0,
  `amount` decimal(20,2) NOT NULL DEFAULT 0.00,
  `total` decimal(20,2) NOT NULL DEFAULT 0.00,
  `f_year` smallint(5) unsigned NOT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `leave_id` (`leave_id`),
  KEY `f_year` (`f_year`),
  KEY `leave_request_id` (`leave_request_id`),
  KEY `leave_approval_status_id` (`leave_approval_status_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leaves_unpaid`
--

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

--
-- Table structure for table `lrwp_erp_hr_work_exp`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_work_exp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_work_exp` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(11) DEFAULT NULL,
  `company_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `job_title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `from` date DEFAULT NULL,
  `to` date DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `employee_id` (`employee_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_work_exp`
--

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

--
-- Table structure for table `lrwp_erp_people_type_relations`
--

DROP TABLE IF EXISTS `lrwp_erp_people_type_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_people_type_relations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `people_id` bigint(20) unsigned DEFAULT NULL,
  `people_types_id` int(11) unsigned DEFAULT NULL,
  `deleted_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `people_id` (`people_id`),
  KEY `people_types_id` (`people_types_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_people_type_relations`
--

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

--
-- Table structure for table `lrwp_erp_people_types`
--

DROP TABLE IF EXISTS `lrwp_erp_people_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_people_types` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_people_types`
--

LOCK TABLES `lrwp_erp_people_types` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_people_types` DISABLE KEYS */;
INSERT INTO `lrwp_erp_people_types` VALUES (1,'contact'),(2,'company'),(3,'customer'),(4,'vendor'),(5,'employee');
/*!40000 ALTER TABLE `lrwp_erp_people_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_peoplemeta`
--

DROP TABLE IF EXISTS `lrwp_erp_peoplemeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_peoplemeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `erp_people_id` bigint(20) DEFAULT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `erp_people_id` (`erp_people_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_peoplemeta`
--

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

--
-- Table structure for table `lrwp_erp_peoples`
--

DROP TABLE IF EXISTS `lrwp_erp_peoples`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_peoples` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT 0,
  `first_name` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `company` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mobile` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `other` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `website` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fax` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `notes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `street_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `street_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `postal_code` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `life_stage` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `contact_owner` bigint(20) DEFAULT NULL,
  `hash` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_by` bigint(20) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `first_name` (`first_name`),
  KEY `last_name` (`last_name`),
  KEY `email` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_peoples`
--

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

--
-- Table structure for table `lrwp_erp_user_leaves`
--

DROP TABLE IF EXISTS `lrwp_erp_user_leaves`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_user_leaves` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `request_id` int(11) DEFAULT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` date DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_user_leaves`
--

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

--
-- Table structure for table `lrwp_favethemes_currency_converter`
--

DROP TABLE IF EXISTS `lrwp_favethemes_currency_converter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_favethemes_currency_converter` (
  `currency_code` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_rate` float NOT NULL,
  `currency_data` varchar(5000) COLLATE utf8mb4_unicode_ci NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE current_timestamp(),
  UNIQUE KEY `currency_code` (`currency_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_favethemes_currency_converter`
--

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

--
-- Table structure for table `lrwp_favethemes_insights`
--

DROP TABLE IF EXISTS `lrwp_favethemes_insights`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_favethemes_insights` (
  `id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `listing_id` bigint(25) unsigned NOT NULL,
  `time` datetime NOT NULL,
  `ip_address` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `unique_identifier` varchar(70) COLLATE utf8mb4_unicode_ci NOT NULL,
  `referral_url` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `referral_domain` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `platform` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `device` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `browser` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `http_user_agent` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `language` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_code` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `referral_domain` (`referral_domain`(250)),
  KEY `referral_url` (`referral_url`(250)),
  KEY `unique_identifier` (`unique_identifier`),
  KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_favethemes_insights`
--

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

--
-- Table structure for table `lrwp_houzez_crm_activities`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_activities` (
  `activity_id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `meta` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`activity_id`)
) ENGINE=MyISAM AUTO_INCREMENT=308 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_activities`
--

LOCK TABLES `lrwp_houzez_crm_activities` WRITE;
/*!40000 ALTER TABLE `lrwp_houzez_crm_activities` DISABLE KEYS */;
INSERT INTO `lrwp_houzez_crm_activities` VALUES (1,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Eric Hebert\";s:5:\"email\";s:23:\"eric@emjaproperties.com\";s:5:\"phone\";s:10:\"7042247413\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:58:\"Interested in the 9 house portfolio and the numbers in it.\";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-08 05:20:47'),(2,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Wayne\";s:5:\"email\";s:13:\"wbc58@att.net\";s:5:\"phone\";s:12:\"407-412-4552\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:46:\"Would like to see your listing in China Grove \";s:8:\"agent_id\";s:3:\"468\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-16 19:12:31'),(3,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Wayne\";s:5:\"email\";s:13:\"wbc58@att.net\";s:5:\"phone\";s:12:\"407-412-4552\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:46:\"Would like to see your listing in China Grove \";s:8:\"agent_id\";s:3:\"468\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-16 19:12:39'),(4,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Floyd W Scott\";s:5:\"email\";s:20:\"Honeydo777@gmail.com\";s:5:\"phone\";s:10:\"7049330006\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:406:\"Hey Cindy, hope you\\\'re doing well? Will you please stop sending me houses that are way over my price I\\\'m only looking at maybe a 50 or $60,000 high price range and unless the properties will sell for over $200,000 after fix up that I\\\'m not interested in anything that\\\'s over 60,000. You keep sending me things that are way over 60,000 that\\\'s why I\\\'m not buying anything right now that you\\\'re sending\";s:8:\"agent_id\";s:3:\"373\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-16 21:39:44'),(5,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Floyd W Scott\";s:5:\"email\";s:20:\"Honeydo777@gmail.com\";s:5:\"phone\";s:10:\"7049330006\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:161:\"I\\\'m looking for homes under $50,000 that need work in between Salisbury and Kannapolis that have HIGH ARV.I will entertain up to $80,000 if ARV is over $250,000\";s:8:\"agent_id\";s:3:\"373\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-17 19:39:52'),(6,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Floyd W Scott\";s:5:\"email\";s:20:\"Honeydo777@gmail.com\";s:5:\"phone\";s:10:\"7049330006\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:161:\"I\\\'m looking for homes under $50,000 that need work in between Salisbury and Kannapolis that have HIGH ARV.I will entertain up to $80,000 if ARV is over $250,000\";s:8:\"agent_id\";s:3:\"373\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-17 19:39:58'),(7,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Floyd W Scott\";s:5:\"email\";s:20:\"Honeydo777@gmail.com\";s:5:\"phone\";s:10:\"7049330006\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:161:\"I\\\'m looking for homes under $50,000 that need work in between Salisbury and Kannapolis that have HIGH ARV.I will entertain up to $80,000 if ARV is over $250,000\";s:8:\"agent_id\";s:3:\"373\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-17 19:40:07'),(8,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Cynthia Hahn\";s:5:\"email\";s:19:\"chahn27@hotmail.com\";s:5:\"phone\";s:10:\"7043631544\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:373:\"Amanda, \r\nMy name is Cynthia Hahn.  I am a broker.  My sister is moving here from MD and has 3 horses.  I am looking for her a place. I saw the land for sale on Austin Rd. I am not a member of the MLS. I use my license for my personal purchases and for family. I noted it is a government sale.  Can you please email me the details on the property. \r\nThank you\r\nCynthia Hahn\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-19 18:57:49'),(9,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Rochelle Lilly\";s:5:\"email\";s:23:\"rochellelilly@yahoo.com\";s:5:\"phone\";s:10:\"7736302318\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:195:\"Hi , I saw profile on Lantern Realty and Development and wanted to see if i can get some help with the property at the address of 1232. I don\\\'t remember the street or highway close to mint hill.\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-07-15 04:58:15'),(10,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Tracy Burkett\";s:5:\"email\";s:21:\"tracyb928@hotmail.com\";s:5:\"phone\";s:10:\"8287772696\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:519:\"Hey we\\\'re looking for land!  We know exactly what we want (mostly) so its just a matter of it becoming available.  We want 8+ acres (we dont care if theres a house there, and would probably prefer there not to be a house) in the cabarrus county area---Midland, harrisburg area--the other side of 601 (towards Locust) is too far.  RIght into Mecklenburg county off 24/27 would be ok too.  I\\\'ve been setting my max price for $500k when I search online, but probably we\\\'re hoping for 200K or less, more realistically.  \";s:8:\"agent_id\";s:3:\"383\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-07-22 22:21:14'),(11,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Meggie Lasher\";s:5:\"email\";s:23:\"meggie.lasher@gmail.com\";s:5:\"phone\";s:10:\"8285820753\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:210:\"Hi Jeremy,\r\n\r\nI’m interested in the property at 1802 W C Street. I’d be a first time home buyer. I’m looking into the USDA loan. Working on pre-qualification! \r\n\r\nI look forward to hearing from you soon. \";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-08-08 21:14:02'),(12,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Tamara Borges\";s:5:\"email\";s:21:\"tborges1515@gmail.com\";s:5:\"phone\";s:10:\"3215066529\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:300:\"Good morning, I’m interested in the property you have listed at 7067 NC 218\r\nPeachland, NC 28133.  I currently live in Florida and I’m coming in to Charlotte today to visit my daughter till this Sunday 8/23, will you be available to show me?  I look forward to hearing from you, thanks.\r\n\r\nTamara\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-08-20 16:15:43'),(13,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Cheryl Baxter\";s:5:\"email\";s:19:\"cmbaxter2@gmail.com\";s:5:\"phone\";s:10:\"7047968843\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:34:\"Hey Paula! Can you give me a call?\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-08-27 00:55:52'),(14,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Julia Corbin\";s:5:\"email\";s:23:\"juliacorbin88@gmail.com\";s:5:\"phone\";s:10:\"5132609464\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:1208:\"Hi, Brenda !  I don\\\'t have your home email  - so I\\\'m sending this to you - I looked up your business page online!  Mom\\\'s 80th bday is coming up - here\\\'s the email I\\\'m sending out to family.  Will you let Deanna know, too?  And Aunt Ann?  Thanks!  I hope you all are well - have a great week !  \r\n\r\nJudy Inman Richter\\\'s birthday is September 14.  Don\\\'t tell her we told you, but she will be 80!  She is the youngest 80-year-old we\\\'ve ever met !  Her address:\r\nMrs. Judy Richter1314 Glen Meadow Dr.Findlay, OH  45840\r\n\r\nMost of you know, our dad was diagnosed with bone cancer in the spring.  He is responding well to several medications.  He has some really good days, but has his share of tough days with considerable pain.  One of the hardest things about the last few months is that John and Judy have felt pretty isolated.  They have had some back porch and front porch picnics with immediate family, which has helped a lot.  Dad got out and played 9 holes of golf with John, Jim, and Mike. He was very happy about that.  We know they would appreciate cards and calls.  \r\nThank you in advance for helping to celebrate Aunt Judy / Honeybunch ! \r\nLove,\r\nJulie, John, Jill, and Jessie \";s:8:\"agent_id\";s:3:\"528\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-08-30 20:20:19'),(15,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Mitch Green\";s:5:\"email\";s:21:\"bear__007@hotmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:261:\"Hi Chris Puckett, I saw your listing 45 Mandalay Pl SW, Concord, NC 28027\r\n\r\n9x rental properties listed for 725k.  Are all 9 homes about the same size 900 sqft from the 1940s? What is the rental income?  Tenants are all long term tenants or on 1 year leases?  \";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-09-26 08:49:07'),(16,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Regan Hall\";s:5:\"email\";s:18:\"reganlhall@aol.com\";s:5:\"phone\";s:14:\"(980) 332-0780\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:490:\"Hi Kim, my mom wrote to you and asked if she signed anything with you locking her into the inability to acquire another agent?, she is looking up in the area of lenoir and spoke with an agent to see what is available and was told to find out about anything signed between you and her just like with Jessica..I\\\'m assuming you didnt have her sign any commitment the same as Jesssica but she needs to know so we can move forward with the search. Please let her or myself know asap! Thanks Kim\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-09-26 22:58:24'),(17,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Easton Nesbitt\";s:5:\"email\";s:20:\"eaneaston5@gmail.com\";s:5:\"phone\";s:10:\"9802342178\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:296:\"Hi Paula, it’s Easton Nesbitt from the barbershop on West Avenue. I was wondering if you do any type of business with rentals such as apartments or rental homes? I’m looking for one in Kannapolis and maybe the surrounding area. If you could get back with me that would be awesome! Thank you! \";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-10-06 19:08:42'),(18,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:58:\"Renae Fountain, Realtor/Broker @ High Country Realty of NC\";s:5:\"email\";s:29:\"Renae@highcountryrealtync.com\";s:5:\"phone\";s:12:\"910-612-4441\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:278:\"I have a client that would like to see 520 Alleghany Spur Road, \r\nTraphill, NC.  Can you please send me the MLS Agent Full Sheet with all information. Also, how can I gain access to homes to show them.  If possible I would  like to show Tuesday afternoon or Wednesday afternoon.\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-10-13 06:26:01'),(19,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"amanda cody\";s:5:\"email\";s:25:\"amandaearnhardt@yahoo.com\";s:5:\"phone\";s:10:\"9805811399\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:109:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-10-13 23:26:49'),(20,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Eddie Morrison\";s:5:\"email\";s:22:\"eamorrison74@gmail.com\";s:5:\"phone\";s:10:\"7049179265\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:267:\"Hi Ethan Stillinger, I saw your sign in the Cambridge community in Iron Station I believe.  It was on the left hand side as you enter in the community.  Must be the first lot.  Is this lot still available, what is the asking price and may I see the CCR\\\'s?  Thank you\";s:8:\"agent_id\";s:3:\"141\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-10-18 05:10:07'),(21,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:4:\"Oren\";s:5:\"email\";s:12:\"orenm@kw.com\";s:5:\"phone\";s:12:\"917-291-1178\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:165:\"Hi Hosanna \r\n\r\nWondering if you had any interested Buyers for a project in China Grove?\r\n\r\nhttps://matrix.carolinamls.com/matrix/shared/mgdgHv1kpGc/804RailroadAvenue\";s:8:\"agent_id\";s:3:\"555\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-11-05 23:44:07'),(22,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Josh Edwards\";s:5:\"email\";s:23:\"josh.edwards@sscoop.com\";s:5:\"phone\";s:10:\"7045760547\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:343:\"Hi Mike, I wanted to see if i can get some help with 158 Edwards Store Rd, in Peachland? I’m a very interested buyer and by the pics of the property & riding by it I will likely pay asking price if it holds true to the pics of the inside. If the seller hasn’t signed a contract with another buyer maybe I can get my name in on it. Thanks!!\";s:8:\"agent_id\";s:3:\"604\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-11-22 08:09:39'),(23,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Amy Workman\";s:5:\"email\";s:22:\"interfaceamy@gmail.com\";s:5:\"phone\";s:10:\"7046401063\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:570:\"Hi Cheyenne,\r\n\r\nI found a property that I am interested in on Zillow and believe you are the listing agent!  It is a parcel of land on high rock lake on Waters Road:  https://www.zillow.com/homedetails/0-Waters-Rd-16-Salisbury-NC-28146/2077973431_zpid/.  Is this property still available?  If so, could you give me some more details....  what are the HOA dues and what is included with the dues..pool?  Common area?  Also, is there a forested setback requirement for this land from the water?    What are the restrictions with the HOA?  Thank you so much!\r\n\r\nAmy Workman\";s:8:\"agent_id\";s:3:\"822\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-01-12 01:50:41'),(24,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Grace\";s:5:\"email\";s:24:\"graceevans1322@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:149:\"Hi Kimberly! I saw your sign out at a house on Camp Julia Rd that I would be interested in looking at to purchase and was wondering the price on it. \";s:8:\"agent_id\";s:3:\"473\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-01-18 04:55:04'),(25,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:18:\"Jennifer Burroughs\";s:5:\"email\";s:18:\"74jennyk@gmail.com\";s:5:\"phone\";s:10:\"7042322290\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:274:\"Hi Courtney Sloan Holshouser, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nGive me a call or text me...wanted to see if you still wanted to meet up tonight to talk about what Mike and I are looking for in a house.\r\nThanks!!\";s:8:\"agent_id\";s:4:\"1449\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-02-11 02:32:07'),(26,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Emily Furr\";s:5:\"email\";s:23:\"Emily.Dana.h4@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:375:\"Hi Ms. Cody! I am possibly looking for a 2-3 bedroom rental or home to purchase for my children and myself. I\\\'d like to pursue renting first, but I realize there are very limited options in Stanly County. There are a lot of things up in the air for my family currently, but Stacy Hicks recommended that I reach out to you so I could be on your radar. Thank you! - Emily Furr\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-02-25 00:06:56'),(27,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Sherry Jones\";s:5:\"email\";s:22:\"sjones201964@gmail.com\";s:5:\"phone\";s:10:\"7046779424\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:108:\"Hi Kim Sadler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-02-25 06:59:50'),(28,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Samantha Hower\";s:5:\"email\";s:25:\"sam@thehillgrouptriad.com\";s:5:\"phone\";s:10:\"3365963007\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:207:\"Hi Donna,\r\nI am Samantha with Joshua Mitchell Real Estate. I have a client interested in 105 Hasty Hill Rd. It is not in our MLS, they would like to see the home soon. Look forward to speaking with you soon.\";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-03-04 09:10:49'),(29,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:18:\"Andrew R Burgesser\";s:5:\"email\";s:22:\"bluedogexcel@yahoo.com\";s:5:\"phone\";s:10:\"7045508801\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:222:\"Hi Brenda Bingham, I wanted to get some information regarding the 10 acre parcel for sale on Cold Springs Road. I know it was pending sale, then listed again, can you advise if there was an issue with the land? Thank you. \";s:8:\"agent_id\";s:4:\"1520\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-03-25 00:11:04'),(30,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:8:\"Ben Moss\";s:5:\"email\";s:24:\"ben.rubberduck@gmail.com\";s:5:\"phone\";s:12:\"980-284-3393\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:556:\"Hi Sherri,\r\n\r\nMy name is Ben Moss, owner of Rubber Duck Trucking, provider of land clearing, grading and demo services.  \r\n\r\nI’ve learned that you’re representing the buyer for the 16.6 acres on hwy 152.   I would love the opportunity of connecting with you and/or your buyer with regards to our services. Would you be willing to share my contact information below with them?\r\n\r\n(980) 284-3393\r\nBen.RubberDuck@gmail.com\r\n\r\nI greatly appreciate your time and any consideration you allow me. \r\n\r\nCongrats on being  under contract!\r\n\r\nKind Regards,\r\n\r\nBen\";s:8:\"agent_id\";s:4:\"1408\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-03-26 22:07:37'),(31,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:25:\"Jessica and David English\";s:5:\"email\";s:21:\"jhenglish88@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:175:\"Hi Donna Hiner, I heard from a friend about a property you are listing by the end of the week on Old Mill Rd. I believe the address is 20255. Can you tell me the asking price?\";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-03-30 05:25:30'),(32,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:4:\"Test\";s:5:\"email\";s:15:\"hello@gmail.com\";s:5:\"phone\";s:12:\"704-555-9876\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1551\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-03-31 03:14:47'),(33,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Jorge Torres\";s:5:\"email\";s:21:\"junkexremoval@aol.com\";s:5:\"phone\";s:10:\"9804441918\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:900:\"Whether you buy investment properties, or manage existing properties, Junk-Ex Removal can help you today! We work with real estate investors who need to clean up a property before flipping it and also property management companies to keep their properties junk and debris free.  Junk-Ex Removal would love to partner with you to ensure your properties are making a great impression! \r\n\r\nWe specialize in working with Real Estate Professionals, Bank/Foreclosure Actions, Estate Clean-Outs, Investors and House-Flippers!\r\n\r\nServing Charlotte and the surrounding area. Experienced, reliable, ethical and reasonably priced. Family owned business. Licensed and insured in NC.\r\n\r\nFREE ESTIMATES!\r\n\r\nCheck us out at www.JunkExRemoval.com or contact me today for more information at 980-444-1918. Thank you for your consideration.\r\n\r\nJorge Torres\r\n980-444-1918\r\nJunkexremoval@aol.com\r\nwww.JunkExRemoval.com\r\n\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-04-19 23:32:15'),(34,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Jorge Torres\";s:5:\"email\";s:21:\"junkexremoval@aol.com\";s:5:\"phone\";s:10:\"9804441918\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:26:\"contact@lantern-realty.com\";s:8:\"agent_id\";s:3:\"416\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-04-19 23:33:50'),(35,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Jorge Torres\";s:5:\"email\";s:21:\"junkexremoval@aol.com\";s:5:\"phone\";s:10:\"9804441918\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:900:\"Whether you buy investment properties, or manage existing properties, Junk-Ex Removal can help you today! We work with real estate investors who need to clean up a property before flipping it and also property management companies to keep their properties junk and debris free.  Junk-Ex Removal would love to partner with you to ensure your properties are making a great impression! \r\n\r\nWe specialize in working with Real Estate Professionals, Bank/Foreclosure Actions, Estate Clean-Outs, Investors and House-Flippers!\r\n\r\nServing Charlotte and the surrounding area. Experienced, reliable, ethical and reasonably priced. Family owned business. Licensed and insured in NC.\r\n\r\nFREE ESTIMATES!\r\n\r\nCheck us out at www.JunkExRemoval.com or contact me today for more information at 980-444-1918. Thank you for your consideration.\r\n\r\nJorge Torres\r\n980-444-1918\r\nJunkexremoval@aol.com\r\nwww.JunkExRemoval.com\r\n\";s:8:\"agent_id\";s:3:\"416\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-04-19 23:34:15'),(36,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:15:\"Joel Disselkoen\";s:5:\"email\";s:17:\"jstynnc@gmail.com\";s:5:\"phone\";s:10:\"7047738016\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:115:\"Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"620\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-06 06:20:34'),(37,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:9:\"Ann Dixon\";s:5:\"email\";s:22:\"bizcorp10140@yahoo.com\";s:5:\"phone\";s:10:\"7046659292\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:246:\"Hi Jeremy Aldridge, I have seen that you were the listing agent on the property at 276 Elm Avenue Concord Avenue 28025 I want to know if this property was still available ? Can you give me a call or text me at your earliest convenience thank you.\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-06 07:40:45'),(38,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Jessica Owenby\";s:5:\"email\";s:17:\"jrowenby@live.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:169:\"Hi Katherine, I saw a for sale sign on Zion Hill Road in Marion for a piece of land that I would like info on. I’m not sure of the address. It is near Wilson Farm Rd. \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-10 03:38:41'),(39,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Jessica Owenby\";s:5:\"email\";s:17:\"jrowenby@live.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:169:\"Hi Katherine, I saw a for sale sign on Zion Hill Road in Marion for a piece of land that I would like info on. I’m not sure of the address. It is near Wilson Farm Rd. \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-10 03:39:02'),(40,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Mark MacLaughlin\";s:5:\"email\";s:26:\"Mark.maclaughlin@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:538:\"Hello Cheyenne! I’ve been keeping an eye on your listing at 530 Waters Rd #16, Salisbury, NC. I was wondering if you might be able to provide any additional information that might not be in the listing. Restrictions, docking permitting, HOA immediate requirements? We’re located in SWFL, but have been eyeing some potential properties in your area. Specifically, we’re looking at lakefront’s in the region which we would like purchase and then wait a few years to build a main structure. Email is best. Thanks for your assistance!\";s:8:\"agent_id\";s:3:\"822\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-12 07:13:09'),(41,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Ron Hainsey\";s:5:\"email\";s:19:\"ronbo4355@gmail.com\";s:5:\"phone\";s:10:\"9107701962\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:219:\"Hi Kim,\r\nMy wife and I are considering selling, we live three doors\r\ndown where you used to live (#614 Maple Ridge Cir).  Can you send me your terms, rates, so forth ? I look forward to hearing from you.\r\n\r\nRon & Denise\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-13 23:00:45'),(42,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Missy Bowers\";s:5:\"email\";s:23:\"Missy@beyourbestinc.com\";s:5:\"phone\";s:12:\"770 335 7680\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:212:\"Hi Katherine Lawing, \r\n\r\nI saw your listing for 94 Foxberry Lane #77 in Murphy, NC and I had a couple of questions.  Can I rent this when we are not using it as our second home?  What type of view does it have?  \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-18 22:52:06'),(43,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Randy E Aldridge\";s:5:\"email\";s:31:\"randyaldridge@strmechanical.com\";s:5:\"phone\";s:10:\"7046156833\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:226:\"Hi Jeremy Aldridge, I checked on the home for sale at 66 Valley View, Banner Elk. Apparently the builder has this listed with an agent. Could you review, give me your opinion and give me a call to discuss a possible offer...??\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-25 04:16:15'),(44,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Darrell Jones jr\";s:5:\"email\";s:33:\"Different.Frequency.llc@gmail.com\";s:5:\"phone\";s:10:\"5164012288\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:109:\"Hi Donna Hiner, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-25 21:30:26'),(45,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Darrell Jones jr\";s:5:\"email\";s:33:\"Different.Frequency.llc@gmail.com\";s:5:\"phone\";s:10:\"5164012288\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:114:\"Hi Donna Hiner, I was interested in presenting your property 12808 N Tryon Hwy, Charlotte, NC 28262 to my buyers. \";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-25 21:31:43'),(46,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:9:\"Christina\";s:5:\"email\";s:19:\"cfaust941@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:206:\"Hello Julie,\r\n\r\nI am interested in a property you have listed at 0 Deep Gap Rd, Whittier, NC 28789. Could you please send me the build restrictions and CCRs for the subdivision. \r\n\r\nThank you,\r\n\r\nChristina \";s:8:\"agent_id\";s:4:\"1895\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-06-23 08:18:41'),(47,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Terry Blue\";s:5:\"email\";s:18:\"tblue982@gmail.com\";s:5:\"phone\";s:10:\"7044258374\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:177:\"Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\r\n\r\n49709 Quail Trail Rd, Norwood, NC 28128 I would like to review. \";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-06-24 19:10:19'),(48,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Terry Blue\";s:5:\"email\";s:18:\"tblue982@gmail.com\";s:5:\"phone\";s:10:\"7044258374\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:177:\"Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\r\n\r\n49709 Quail Trail Rd, Norwood, NC 28128 I would like to review. \";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-06-24 19:11:26'),(49,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"stephen ellis\";s:5:\"email\";s:32:\"stephen@ellisdevelopments.com.au\";s:5:\"phone\";s:10:\"8054053263\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:51:\"Call me Re concord land for sale prices at $2.7mil \";s:8:\"agent_id\";s:3:\"553\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-06-24 22:26:30'),(50,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Christa Hartsell\";s:5:\"email\";s:20:\"cphartsell@gmail.com\";s:5:\"phone\";s:10:\"9106121767\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:72:\"Hi, would like to make an offer on a home on Quail Trail Rd , Norwood.  \";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-06-26 09:07:47'),(51,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"christina Howard\";s:5:\"email\";s:24:\"christina.idol@yahoo.com\";s:5:\"phone\";s:10:\"3368703527\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:147:\"Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted more information on the 1.25 acres listed on cold springs road. \";s:8:\"agent_id\";s:4:\"1402\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-06 20:19:55'),(52,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Daniel Lewis\";s:5:\"email\";s:26:\"lewislawncareahi@gmail.com\";s:5:\"phone\";s:10:\"9804323026\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:561:\"Good morning,\r\n\r\nI am writing to inquire about your lawn care and property repair contracts for both commercial and residential listings.  \r\n\r\nWe are a locally owned company and are interested in submitting a bid for any current or upcoming properties you may have available. We cover all forms of lawn care needs as well as all home repairs. A POI can be submitted upon request.\r\n\r\nPlease let me know if you have any further questions or are in need of services. We can be reached at 980-432-3026.\r\n\r\nThank you,\r\n\r\nBethany Lewis\r\nDaniel Lewis\r\nLewisLawnCareAHI\";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-06 23:59:39'),(53,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"James Walthall\";s:5:\"email\";s:17:\"arlcuts@gmail.com\";s:5:\"phone\";s:10:\"7049043527\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:136:\"Hi Katherine Lawing, I was riding down cold springs rd today and saw a couple of 10 acre tracts for sale. I would like any info you have\";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-07 02:54:17'),(54,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:17:\"Fred J. Allen Jr.\";s:5:\"email\";s:18:\"Fredjallen@msn.com\";s:5:\"phone\";s:10:\"7047917288\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:294:\"Hi Sandi Laney, Remember Fred & Jayne  Allen,  the land on Beaver Rd in China Grove? You probably never saw finished home. We would like you to look and see what you think it\\\'s worth. \r\nWould value your opinion. \r\nLet me know what you would charge to look it over.\r\nBest Regards;\r\nFred & Jayne\";s:8:\"agent_id\";s:3:\"427\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-09 08:41:09'),(55,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Mary Boyles\";s:5:\"email\";s:20:\"marylboyes@yahoo.com\";s:5:\"phone\";s:12:\"704-363-3655\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:397:\"Tony Overcash gave me your name. We are planning on moving back to Concord/Kannapolis area and are needing a good agent to get us there. We are currently living in Mt. Airy, NC but are ready to get back to the area we lived for many years until we moved to take care of our parents until their passing. You can reach me on my cell at 704-363-3655. Thank you and I look forward to hearing from you.\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-13 21:29:33'),(56,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Mary Boyles\";s:5:\"email\";s:20:\"marylboyes@yahoo.com\";s:5:\"phone\";s:12:\"704-363-3655\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:397:\"Tony Overcash gave me your name. We are planning on moving back to Concord/Kannapolis area and are needing a good agent to get us there. We are currently living in Mt. Airy, NC but are ready to get back to the area we lived for many years until we moved to take care of our parents until their passing. You can reach me on my cell at 704-363-3655. Thank you and I look forward to hearing from you.\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-13 21:29:49'),(57,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Russell Walthall\";s:5:\"email\";s:17:\"arlcuts@gmail.com\";s:5:\"phone\";s:10:\"7049043527\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:70:\"Looking at lots off cold spring rd in midland locust area or off of 49\";s:8:\"agent_id\";s:4:\"1520\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-27 23:11:55'),(58,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:21:\"Robert & Lori Edwards\";s:5:\"email\";s:28:\"thankinghimdaily17@gmail.com\";s:5:\"phone\";s:10:\"3364736046\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:463:\"Hello Mr. Aldridge,\r\n\r\nMy husband, Robbie, and I are the neighbors to the Redwood Drive house in Mocksville that you\\\'re selling. Yes, the ones with the playset in the front yard, lol. We see what an amazing job you did with the Watson\\\'s home and we were wondering if, when we\\\'re ready, you\\\'d be interested in flipping our house too?\r\nAlso, our 2 older boys would like to keep the yard next door mowed for you until the house sells.\r\n\r\nThank you,\r\nLori Edwards\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-03 07:32:05'),(59,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:19:\"Granita Ashley Deas\";s:5:\"email\";s:20:\"foxxyheart@yahoo.com\";s:5:\"phone\";s:10:\"7043108985\";s:9:\"user_type\";s:13:\"I\'m a tennant\";s:7:\"message\";s:110:\"Hi Rodney Queen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"834\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-05 16:47:26'),(60,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"eric perry\";s:5:\"email\";s:29:\"supplementailemail1@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:196:\"Hi Tammy Fox, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. I\\\'m wondering how much our home is worth at 1402 Brantley rd in Kannapolis? Thank you.\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-08 03:55:41'),(61,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"eric perry\";s:5:\"email\";s:28:\"supplementalemail1@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:73:\"Hi Tammy--sorry to waste your time--I found my answer. Thank you.\r\n\r\nEric\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-08 05:39:00'),(62,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Sarah Siddique\";s:5:\"email\";s:19:\"kostenfam@gmail.com\";s:5:\"phone\";s:10:\"7046160723\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:186:\"Hello,\r\nI’d like to see if I can come view the following property when it comes available for showing soon: \r\n1019 Mistywood Lane, Concord, NC.  \r\n\r\nThank you!\r\nSarah & Noman Siddique \";s:8:\"agent_id\";s:4:\"1398\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-12 05:34:27'),(63,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:20:\"Christine Laramee MD\";s:5:\"email\";s:20:\"clarameemd@gmail.com\";s:5:\"phone\";s:10:\"7276393962\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:131:\"Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans! \";s:8:\"agent_id\";s:4:\"1895\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-16 21:56:30'),(64,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:20:\"Christine Laramee MD\";s:5:\"email\";s:20:\"clarameemd@gmail.com\";s:5:\"phone\";s:10:\"7276393962\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:131:\"Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans! \";s:8:\"agent_id\";s:4:\"1895\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-16 21:56:49'),(65,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:20:\"Christine Laramee MD\";s:5:\"email\";s:20:\"clarameemd@gmail.com\";s:5:\"phone\";s:10:\"7276393962\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:131:\"Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans! \";s:8:\"agent_id\";s:4:\"1895\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-16 21:56:57'),(66,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:9:\"Mia ONeil\";s:5:\"email\";s:17:\"arbri56@yahoo.com\";s:5:\"phone\";s:10:\"8284174819\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:285:\"Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. There is a piece of land off Zion hill road marion NC, between Wilson farm drive and Hardrock road. I was wondering how much land and the price.  Thanks.  Please email. \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-17 00:55:53'),(67,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Michael Helms\";s:5:\"email\";s:23:\"jmichaelhelms@gmail.com\";s:5:\"phone\";s:10:\"7046347432\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-09-09 18:04:47'),(68,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Alicia Thomas\";s:5:\"email\";s:24:\"atkinsalicia85@gmail.com\";s:5:\"phone\";s:10:\"7049616778\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-09-10 11:43:50'),(69,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Cristy Morgan\";s:5:\"email\";s:20:\"cristy0357@yahoo.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:410:\"Hi Evonne Caudill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help I am Ryan and Skylar\\\'s mom and I am looking somewhere between Oakboro and Concord I found this property I didn\\\'t know if I could possible look at it or if you could find more properties   2281 Munsen Rd | $189,999 | 3 Beds 2 Baths you can just email me back I phone is not working at the moment.\";s:8:\"agent_id\";s:3:\"549\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-09-14 11:06:39'),(70,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Karen\";s:5:\"email\";s:12:\"kfran@me.com\";s:5:\"phone\";s:12:\"919-802-7512\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:414:\"Hi Lynnette, i was looking at the land on 6770 zion church road, concord. The listing says it has a WSACC outfall crossing it. Does this mean a sewer line crosses the property? Do you have a platt to show where this line is? Any other contor maps or flood plains that you can send me? We live in Chapel Hill and are interested in the property but would like these questions answered before we drive down. Thank you\";s:8:\"agent_id\";s:3:\"393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-09-24 08:45:58'),(71,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"David pratt\";s:5:\"email\";s:17:\"dpconcord@aol.com\";s:5:\"phone\";s:10:\"7047962193\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:219:\"Murray location \r\nIs the water deep enough for a pontoon. I’ve seen how the dock is tied to a tree I know it needs repair. But do you know how deep it is at the end of the cove?\r\nThanks \r\n\r\nSent from my iPhone\r\nDavid \";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-06 02:29:30'),(72,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Lara O’Guin\";s:5:\"email\";s:22:\"laraoguin117@gmail.com\";s:5:\"phone\";s:12:\"704-798-3553\";s:9:\"user_type\";s:13:\"I\'m a tennant\";s:7:\"message\";s:277:\"Hi Paula! My husband Jared and I are currently living in Salisbury, and we are looking to sell in hopes of purchasing some land to build our forever home on! I can be reached by email or by phone any time of day. Thank you for your time and I look forward to speaking with you!\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-10 20:33:16'),(73,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Kristin Beach\";s:5:\"email\";s:27:\"luckydoglanddeals@gmail.com\";s:5:\"phone\";s:10:\"6155892494\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1166:\"I am an investor with these properties under contract to purchase. My contract allows me to market it for sale on the MLS with plans of simultaneously closing. I\\\'ve already run a preliminary report with title and it is clear to close. At this time, I would like to bring on a real estate agent. I can offer to pay 6% commission with 3% to go to the seller\\\'s agent and 3% to the buyer\\\'s agent. Below, please find the APN, address and name on deed.  Please review and let me know your thoughts. I mainly need help to: \r\n1) Field phone calls from prospective buyers and get it under contract\r\n2) Oversee the property on sight: make recommendations, flag corners, put up a sign\r\n3) Assistance with contract to close arrangements via the title agent: Infinity Abstract and Title\r\n4) Property Marketing\r\n\r\n Acres / APN / Location / State / Name on Deed\r\nProperty #1:\r\nAcres: 7.44\r\nAPN: 6681-00-87-1168\r\nLocation: LONG CREEK LN - BRYSON CITY, NC 28713 \r\nCounty: NC-SWAIN COUNTY\r\nName on Deed: Patrick Ross\r\n\r\nProperty #2:\r\nAcres: 12\r\nAPN: 6683-00-59-9654\r\nLocation: GOVERNORS ISLAND RD - BRYSON CITY, NC 28713\r\nCounty: NC-SWAIN COUNTY\r\nName on Deed: Kenneth Woods\";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-19 00:54:48'),(74,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Ioana Workman\";s:5:\"email\";s:22:\"ioanaworkman@gmail.com\";s:5:\"phone\";s:12:\"321-652-5596\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-19 07:53:38'),(75,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"William Bass\";s:5:\"email\";s:19:\"wbass1968@gmail.com\";s:5:\"phone\";s:10:\"7042231832\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:113:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\r\n\r\n\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-22 06:08:48'),(76,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:32:\"Denise Pate-SisBro Ventures, llc\";s:5:\"email\";s:22:\"denisepate42@gmail.com\";s:5:\"phone\";s:12:\"843-601-2595\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:208:\"Hi Tammy,\r\nWas stunned to learn you had left APM but hope you are doing well in this new endeavor. Would like to speak to you concerning value/listing on one of the houses. Call when you have a moment. Thanks\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-26 05:25:14'),(77,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:32:\"Denise Pate-SisBro Ventures, llc\";s:5:\"email\";s:22:\"denisepate42@gmail.com\";s:5:\"phone\";s:12:\"843-601-2595\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:208:\"Hi Tammy,\r\nWas stunned to learn you had left APM but hope you are doing well in this new endeavor. Would like to speak to you concerning value/listing on one of the houses. Call when you have a moment. Thanks\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-26 05:25:26'),(78,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:15:\"Alicia woodward\";s:5:\"email\";s:27:\"Aliciadrealestate@gmail.com\";s:5:\"phone\";s:10:\"7042240448\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:116:\"Hi Deana Petty, I spoke with an agent at Latern and would love to learn more about you offer your agents! Thank you!\";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-28 03:14:12'),(79,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:9:\"Joe Hicks\";s:5:\"email\";s:23:\"buffettmanjoe@gmail.com\";s:5:\"phone\";s:12:\"704-572-2660\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:177:\"65Willow St. \r\nHey Paige. I forgot to ask about when Don plans on changing utilities over to him. I don’t want to cut them off before he has a chance to put them in his name. \";s:8:\"agent_id\";s:4:\"1507\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-11-04 01:41:36'),(80,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Bill Birckhead\";s:5:\"email\";s:23:\"billbirckhead@gmail.com\";s:5:\"phone\";s:12:\"704-490-1600\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:281:\"Hi Jeremy Aldridge\r\n\r\n◦ I\\\'m very interested in this property but see it has a Pending offer. If this offer falls through or if I can make an offer on it please let me know. I have cash and,or financing already approved. \r\nThank you\r\nBill\r\n\r\n8614 State Highway 89 W\r\nWestfield NC\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-11-06 03:55:11'),(81,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:15:\"Austin Burleson\";s:5:\"email\";s:28:\"furrlindsey_030189@yahoo.com\";s:5:\"phone\";s:10:\"7044386787\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:467:\"Hey Jody,  its Austin at 888 Sorrel Lane Oakboro Sean Blacks son.  We are weighing options of possibly selling our home and would like to know if you have a round about idea of what it would bring in the current market.  We have added a Fireplace, laminet flooring, quartz countertops, fenced in back yard, large deck, and porched in area.  The rest of the house is stock I guess you could say.  Let me know what you think when you have a minute.\r\n\r\nThanks,\r\n\r\nAustin\";s:8:\"agent_id\";s:3:\"598\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-11-12 01:06:34'),(82,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:8:\"Ray Holt\";s:5:\"email\";s:19:\"ray.holt@holtnc.com\";s:5:\"phone\";s:12:\"704.634.9591\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:200:\" Chris,\r\nI am looking for larger pieces of land served by municipal water and sanitary sewer in Salisbury.  Would you either help me or refer me to your land broker?\r\n\r\nThank you for your help.\r\n\r\nRay\";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-01 05:27:34'),(83,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:4:\"TEST\";s:5:\"email\";s:14:\"test@gmail.com\";s:5:\"phone\";s:10:\"7045551234\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:113:\"Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1551\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-01 22:56:32'),(84,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:17:\"Patricia Campbell\";s:5:\"email\";s:26:\"glory_grace@windstream.net\";s:5:\"phone\";s:10:\"7048551823\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:226:\"Hi Lynnette.\r\n\r\nWe are interested in your listing at 201 JACKSON STREET, MOUNT PLEASANT, NC 28124.  Are there any pictures of the inside?  We\\\'re planning on downsizing early next year and are now looking seriously.\r\n\r\nThanks.\";s:8:\"agent_id\";s:3:\"393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-09 05:14:37'),(85,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Juan Almaras\";s:5:\"email\";s:22:\"juanalmaras6@gmail.com\";s:5:\"phone\";s:10:\"9805655595\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:335:\"Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in advice and guidance into buying a home. I have heard great things about you from families that you have helped in their process of buying their new homes. Thank you for your time it is greatly appreciated. \r\n\r\nGod Bless. \";s:8:\"agent_id\";s:3:\"808\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-10 08:10:35'),(86,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Juan Almaras\";s:5:\"email\";s:22:\"juanalmaras6@gmail.com\";s:5:\"phone\";s:10:\"9805655595\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:373:\"Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in starting to make plans for buying a home as well as guidance and advice. We have heard great things about you helping families in the community by making their dreams come true with their new home. \r\n\r\nGod Bless and thank you\r\n- Juan Almaras y Lisa Navarrete \";s:8:\"agent_id\";s:3:\"808\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:20:43'),(87,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Juan Almaras\";s:5:\"email\";s:22:\"juanalmaras6@gmail.com\";s:5:\"phone\";s:10:\"9805655595\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:373:\"Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in starting to make plans for buying a home as well as guidance and advice. We have heard great things about you helping families in the community by making their dreams come true with their new home. \r\n\r\nGod Bless and thank you\r\n- Juan Almaras y Lisa Navarrete \";s:8:\"agent_id\";s:3:\"808\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:21:29'),(88,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:28:52'),(89,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:29:30'),(90,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:30:25'),(91,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"528\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:31:25'),(92,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"788\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:32:01'),(93,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"380\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:32:41'),(94,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"549\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:33:22'),(95,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2169\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:33:53'),(96,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:34:47'),(97,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"801\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:35:25'),(98,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"383\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:36:16'),(99,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"808\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:37:47'),(100,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1510\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:08:53'),(101,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"645\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:09:29'),(102,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2082\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:10:16'),(103,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2171\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:10:45'),(104,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"551\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:11:19'),(105,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2165\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:11:59'),(106,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"553\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:12:42'),(107,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"814\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:20:12'),(108,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2167\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:21:46'),(109,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:22:19'),(110,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1398\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:22:45'),(111,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2163\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:23:19'),(112,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"555\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:23:53'),(113,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"390\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:24:25'),(114,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"476\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:24:52'),(115,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"819\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:25:26'),(116,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"503\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:26:08'),(117,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2086\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:27:20'),(118,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"424\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:28:14'),(119,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"825\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:28:50'),(120,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"427\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:29:31'),(121,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1402\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:30:12'),(122,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"481\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:30:41'),(123,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"400\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:31:47'),(124,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"828\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:32:50'),(125,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:33:24'),(126,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Dana Coulston\";s:5:\"email\";s:23:\"dana.coulston@yahoo.com\";s:5:\"phone\";s:10:\"8436942577\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:345:\"Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help I seen that 805 Gold Hill Ave in Rockwell is about to come available and I really love it and it is in my kids school district so was wondering when is it available to look at? If you could let me know that would be great thanks!\";s:8:\"agent_id\";s:3:\"620\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-21 03:13:04'),(127,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:9:\"Sean Ryan\";s:5:\"email\";s:18:\"sjryan@charter.net\";s:5:\"phone\";s:10:\"8283183041\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:236:\"Hi Doreen,\r\nMy wife and I are interested in your listing at 3 Northview Ln. We were wondering when the listing would be active and when we could schedule a showing. She is a licensed agent with Carolina Mountain sales. \r\n\r\nThanks,\r\nSean\";s:8:\"agent_id\";s:4:\"2029\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-06 22:49:01'),(128,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Cierra Young\";s:5:\"email\";s:22:\"cicinicole88@gmail.com\";s:5:\"phone\";s:10:\"9803308622\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:152:\"Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help with a property I saw listed for sale. \";s:8:\"agent_id\";s:4:\"1402\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-12 05:49:25'),(129,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Michele Bailey\";s:5:\"email\";s:30:\"cookingwithmichele@hotmail.com\";s:5:\"phone\";s:10:\"7047017128\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:361:\"Hi Karie Arem, I saw your profile on Lantern Realty and Development and wanted to see if I can get some help. I have found a home I am interested in. I have not been preapproved and not really sure what steps to take. I was given your information from Nathan Yon whose brother in Law David Earnhardt used you and gave me your name. I hope to hear from you soon.\";s:8:\"agent_id\";s:4:\"2023\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-22 03:16:28'),(130,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:42:\"Toby Russell with north group real estate.\";s:5:\"email\";s:22:\"tobymrussell@gmail.com\";s:5:\"phone\";s:10:\"3366891702\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:169:\"Hi Brianne, I had a client looking at 707 Frontier cir. I’m not in your mls but could you tell me if you have the room sizes on it and are there any deed restrictions?\";s:8:\"agent_id\";s:3:\"563\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-24 21:45:34'),(131,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:15:\"Erica Zimmerman\";s:5:\"email\";s:18:\"ezimm930@gmail.com\";s:5:\"phone\";s:10:\"5164298275\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:477:\"Hi April, my friend Christina Tepedino gave me your phone number. I currently live on Long Island in New York with my husband and son but we wanted to start looking down in North Carolina and possibly South Carolina to\r\nGet an idea on areas; my husband retires in two years and we are done with NY lol. \r\nWe really don’t know any areas down there—we are looking to be more rural with more land. And a good school district…Would you be able to help us?\r\n\r\nThanks! \r\nErica \";s:8:\"agent_id\";s:3:\"565\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-29 07:45:35'),(132,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Devon Goolsby\";s:5:\"email\";s:21:\"dgoolsby624@gmail.com\";s:5:\"phone\";s:10:\"7046173114\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:408:\"Hi Sherri Wiles Argabright, I was recommended to reach out to you as I start my home search in the Concord/Kannapolis area! I am a first-time home buyer. I am moving from Hickory, NC to the Concord/Kannapolis area around June and looking to buy. I am preferably looking to settle in the Kannapolis area. \r\n\r\nI would love to chat and see if working together would be a good fit! \r\n\r\nThank you! \r\nDevon Goolsby\";s:8:\"agent_id\";s:4:\"1408\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-31 09:14:56'),(133,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Michael Key\";s:5:\"email\";s:22:\"michaelkey24@yahoo.com\";s:5:\"phone\";s:12:\"704-640-9767\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:156:\"Hi Pam Lambert, I saw your name on a sign in our development. You actually helped us buy our first home. We are looking for a change and hope you can help. \";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-06 09:21:34'),(134,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Karen Petersen\";s:5:\"email\";s:27:\"kpetersen@healyrealtors.com\";s:5:\"phone\";s:10:\"6097581776\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:556:\"Hi Conard Haywood, I saw your listing at 2300 Heritage and wanted to see if i can get some help. I am a realtor with Berkshire Hathaway Home Services Healy Realtors in NJ, and I am looking for a new home for our extended family in the Concord area. I was wondering if this property has any other photos, mostly of the inside of the home? Also, do you know why the previous deal fell through? I am not looking to subdivide, but clear the land and build a small horse farm, so if you can explain the property lines it would also be helpful. Thanks! God bless\";s:8:\"agent_id\";s:3:\"814\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-10 09:03:24'),(135,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Chase Winslow\";s:5:\"email\";s:23:\"chasewinslow1@gmail.com\";s:5:\"phone\";s:10:\"3363838275\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:292:\"Hi Melissa, I am extremely interested in a property that you have just listed in Lake James.  If you can please give me a call at your earliest convenience, that would be much appreciated.  My cell is 336-383-8275, you are welcome to call me at any time.  I look forward to speaking with you!\";s:8:\"agent_id\";s:3:\"579\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-11 10:04:50'),(136,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Kimberly Sanchez\";s:5:\"email\";s:16:\"kpv237@gmail.com\";s:5:\"phone\";s:10:\"3862906696\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:215:\"Hi Kim Sadler, I saw a property that you are currently showing (255 Winding Way, Salisbury, NC 28147). I am interested, and wondering what the current status of the property is. Please reach out at your convenience.\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-14 03:07:26'),(137,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:19:\"Stephanie Stallings\";s:5:\"email\";s:25:\"stephaniemkuntz@gmail.com\";s:5:\"phone\";s:10:\"5714201889\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:353:\"Hi Kelly!\r\n\r\nI was given your info from my cousin Sydney Falls! We are looking into moving to Kannapolis in a little less than a year. we are considering new builds but want some help in that contract process (looking for fixed contracts) and just some general info on the area and what the next year might look like. \r\n\r\nlooking forward to connecting! \";s:8:\"agent_id\";s:3:\"836\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-15 04:17:14'),(138,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:19:\"Stephanie Stallings\";s:5:\"email\";s:25:\"stephaniemkuntz@gmail.com\";s:5:\"phone\";s:10:\"5714201889\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:353:\"Hi Kelly!\r\n\r\nI was given your info from my cousin Sydney Falls! We are looking into moving to Kannapolis in a little less than a year. we are considering new builds but want some help in that contract process (looking for fixed contracts) and just some general info on the area and what the next year might look like. \r\n\r\nlooking forward to connecting! \";s:8:\"agent_id\";s:3:\"836\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-15 04:17:24'),(139,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:23:\"Sandy Rivera (Braswell)\";s:5:\"email\";s:22:\"diepparivera@gmail.com\";s:5:\"phone\";s:10:\"7045165448\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:697:\"Hi Deana, It\\\'s Sandy. I need advice and, of course, you\\\'re the first person I\\\'m turning to. Our renter, Faye Brown, passed away last month at the age of 99 ... just 2 months shy of her 100th birthday. We loved her and will miss her. Now I need to decide what to do:  stay in my side of the duplex, renovate and rent out the other side; or do some repairs to both sides and sell. (Selling and buying may be tough right now; property values have increased a lot!)  Could you please call me to advise and help me make a decision on what\\\'s best for me at this time?  My number is 704-516-5448. Would be nice to talk to you about the duplex and your family, kids, Melanie and Ricky.  Regards, Sandy\";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-18 00:37:17'),(140,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Joseph Steele\";s:5:\"email\";s:25:\"joseph.w.steele@gmail.com\";s:5:\"phone\";s:10:\"5615076065\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:109:\"Hi Liz Hallman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1398\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-23 06:34:32'),(141,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Mike Davis\";s:5:\"email\";s:13:\"mike.d@kw.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:99:\"Hey Courtney. Regarding your listing at 494 Vera Drive. Does it have a crawl space?\r\n\r\nThanks, Mike\";s:8:\"agent_id\";s:4:\"1449\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-26 03:27:50'),(142,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"wendy compton\";s:5:\"email\";s:21:\"comptonw777@gmail.com\";s:5:\"phone\";s:10:\"8432901840\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:273:\"Hi Jeremy Aldridge, I am looking for your cleaning service for my airbnb now. We emailed before and I had someone else that wanted to do this from my family. They have become very busy and I need additional help. If you are still interested please email me. \r\nThanks, Wendy\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-03 22:31:27'),(143,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:8:\"Jennifer\";s:5:\"email\";s:20:\"jennifer@femexec.com\";s:5:\"phone\";s:12:\"910 431 6334\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:42:\"I am interested in 17356 Randall\\\'s ferry.\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-04 11:43:03'),(144,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Robert Schupp\";s:5:\"email\";s:24:\"slyweasl@carolina.rr.com\";s:5:\"phone\";s:30:\"704-469-5656 (VP) for the deaf\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:914:\"Hi Deanna Miltz, I am the treasurer for Oakleaf Homeowners Assn. I spoke with Anita Camphen ?(spelling may be incorrect due to her cursive writing) . Anyway I’m contacting you to see if your agency contacted our HOA and IF a “right-of-first-refusal” form was signed between Anita and our President Patrick Brown before the closing ? Also I was not informed of this sale and as such I was not given the opportunity to send and invoice of 200.00 accessed to the BUYER for a “document fee” according to our by-laws . Can you reply by email please if these 2 transactions were completed before the closing on unit 617 Camrose Circle NE , Concord NC 28025 . If I don’t hear from you then I’ll contact Knipp Law Office at their address and phone number to verify what exactly was done prior to the sale of this unit which was sold by Jim & Willene Price. Thank you for your time and help …. Robert Schupp\";s:8:\"agent_id\";s:3:\"558\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-10 04:38:24'),(145,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Anon Ymous\";s:5:\"email\";s:16:\"Voodoo@yahoo.com\";s:5:\"phone\";s:12:\"704-567-9125\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:446:\"Hi Jerry,\r\n\r\nThought I\\\'d let you know(since you\\\'re not smart enough to figure it out) that you missed the absolute best offer you would have received on a Concord home for sale that ended yesterday(3.13.22) only because of your arrogant, self-righteous, rude & \\\"that\\\'s the buyer\\\'s problem\\\" attitude!\r\n\r\nI\\\'m sure I\\\'m not the first person to tell you this & know I won\\\'t be the last!!! So say hello to lost opportunities & #instantkarma.\r\n\";s:8:\"agent_id\";s:4:\"1405\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-14 19:28:26'),(146,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Anon Ymous\";s:5:\"email\";s:16:\"Voodoo@yahoo.com\";s:5:\"phone\";s:12:\"704-567-9125\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:446:\"Hi Jerry,\r\n\r\nThought I\\\'d let you know(since you\\\'re not smart enough to figure it out) that you missed the absolute best offer you would have received on a Concord home for sale that ended yesterday(3.13.22) only because of your arrogant, self-righteous, rude & \\\"that\\\'s the buyer\\\'s problem\\\" attitude!\r\n\r\nI\\\'m sure I\\\'m not the first person to tell you this & know I won\\\'t be the last!!! So say hello to lost opportunities & #instantkarma.\r\n\";s:8:\"agent_id\";s:4:\"1405\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-14 19:28:35'),(147,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Louisa Casarez\";s:5:\"email\";s:21:\"lcasarez042@gmail.com\";s:5:\"phone\";s:10:\"7044601987\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:168:\"Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help, regarding a rental in Gastonia In Riverwood Planation \";s:8:\"agent_id\";s:4:\"1402\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-15 20:23:02'),(148,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:17:\"Khari D. Williams\";s:5:\"email\";s:19:\"Hondo1899@gmail.com\";s:5:\"phone\";s:10:\"7065339371\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:515:\"Hi Brittney Steele, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help locating an investment property. My name is Khari D. Williams and I am energetically looking for an investment property. I\\\'m seeking a Single-family or multi-family property with a price point between 60-200k. Willing to pay the higher end for a multi-family home.\r\n \r\nI have my pre-approval letter in hand and will forward you a copy if you are willing to work with me. \r\n\r\nThank you for your time\r\n\";s:8:\"agent_id\";s:4:\"2274\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-17 15:35:17'),(149,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Layne\";s:5:\"email\";s:25:\"lhinson8662@cms.k12.nc.us\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:15:\"Hi Grammy!!!!!!\";s:8:\"agent_id\";s:3:\"617\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-21 08:47:09'),(150,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Richard Ross\";s:5:\"email\";s:22:\"richardaross@yahoo.com\";s:5:\"phone\";s:11:\"18175646467\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:84:\"Hi Chris , is there a floorplan available for 508 Main St in Kannapolis?  Thank you!\";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-25 04:16:11'),(151,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Carol Harris\";s:5:\"email\";s:15:\"cah2451@aol.com\";s:5:\"phone\";s:10:\"7046401160\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:90:\"Hi Marguerite Keller, \r\nWe are very interested in the building lot located in Summerfield \";s:8:\"agent_id\";s:3:\"576\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-27 20:44:11'),(152,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Anjali Wilson\";s:5:\"email\";s:23:\"wilsonanjali0@gmail.com\";s:5:\"phone\";s:10:\"7047462778\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:332:\"Hi Deana, I’m a new agent looking into affiliating with your from the current one I am at. I actually work with Lissette in Concord office. She recommended I reach out to you as she’s pursuing her real estate license and get a little more information. I would love to hear back from you at your earliest convenience. Thank you! \";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-30 22:15:37'),(153,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:20:\"Brian & Natalie Gray\";s:5:\"email\";s:24:\"natalie.gray86@yahoo.com\";s:5:\"phone\";s:10:\"7042132450\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:133:\"Hi Kim Sadler, wanted to see if you could come look at our house 145 Winding Way Salisbury, NC 28147. We are thinking about selling. \";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-31 07:07:01'),(154,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Noah Malpass\";s:5:\"email\";s:22:\"noah.malpass@gmail.com\";s:5:\"phone\";s:10:\"4342037706\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:276:\"Hi Courtney! \r\nI saw your property on 2025 brewer rd and think it has a lot of potential for a flip. What can you tell me as far as any damages on the inside, motivation of the sellers, and how much the estimated ARV in that neighborhood would be?\r\n\r\nThank you\r\n\r\nNoah Malpass\";s:8:\"agent_id\";s:4:\"1449\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-04 17:24:02'),(155,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:18:\"Denise Louise Bump\";s:5:\"email\";s:16:\"denise@dbump.com\";s:5:\"phone\";s:10:\"3367849941\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:324:\"Good morning, Courtney.\r\nI am a real estate investor and saw one of your listings that I would be interested in seeing (2025 Brewer Rd). I have flipped 5 properties over the last few years and I have been looking for a new project. I would have a hard money lender for this project and provide a letter with proof of funds. \";s:8:\"agent_id\";s:4:\"1449\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-04 20:10:04'),(156,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Hunter Miller\";s:5:\"email\";s:27:\"hunter.miller87@outlook.com\";s:5:\"phone\";s:10:\"9803650502\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:223:\"Hi Jenna Cook, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. Extremely interested in the Rimer property. Would be a cash offer. We are scheduled to come Thursday am at 9 am. \";s:8:\"agent_id\";s:4:\"1393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-05 09:08:25'),(157,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Hunter Miller\";s:5:\"email\";s:27:\"hunter.miller87@outlook.com\";s:5:\"phone\";s:10:\"9803650502\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:262:\"Hi Liz Hallman, I saw your profile on LanterRealty and Development and wanted to see if i can get some help. I sent Jenna and email but extremely interested in the Rimer property. This would be a cash offer. Have an appointment at 9 am Thursday with my realtor. \";s:8:\"agent_id\";s:4:\"1398\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-05 09:10:10'),(158,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Stephen Copeland\";s:5:\"email\";s:19:\"copes370z@gmail.com\";s:5:\"phone\";s:10:\"6785700689\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:417:\"Hi Brianne Watson, I saw your listing for 0 Cloud Top Ln, Mooresville, NC 28115, $199k, for 5.677 acres, and wanted to know if the seller would be will to split the parcel down the stream and sell half? I will offer $100k for the property, and may have a buyer for the other half. I am a real buyer, please let me know. Im in a meeting until noon, but free after. Lets work out a deal either way. Thank you,\r\n-Stephen\";s:8:\"agent_id\";s:3:\"563\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-07 09:44:27'),(159,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Michael King\";s:5:\"email\";s:30:\"TheKingSellsTheDream@gmail.com\";s:5:\"phone\";s:10:\"7044503936\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:75:\"Hi Wendell just wondering if you might have a few minutes to chat sometime?\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-08 04:44:47'),(160,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Michael King\";s:5:\"email\";s:30:\"TheKingSellsTheDream@gmail.com\";s:5:\"phone\";s:10:\"7044503936\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:75:\"Hi Wendell just wondering if you might have a few minutes to chat sometime?\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-08 04:50:01'),(161,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Wendy Roseman\";s:5:\"email\";s:22:\"wendyroseman@gmail.com\";s:5:\"phone\";s:12:\"336-807-0442\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:212:\"Hey Brianne, this is Wendy Roseman, Michael\\\'s mom. Michael tells me you have your realtors license. We have a piece of land across from where Michael and Laura live that we\\\'d like to talk to you about selling. \";s:8:\"agent_id\";s:3:\"563\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-10 05:07:03'),(162,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Tia Turner\";s:5:\"email\";s:23:\"tmturner70061@gmail.com\";s:5:\"phone\";s:10:\"8049821070\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1583:\"YOUR BROKER COURTNEY HEDRICK.... BROKER IN CHARGE OF SPEEK, HER SON WILL KNOWINGLY AND DELIBERATELY SOLD ME A HOME IN WINSTON-SALEM WITH MOLD AND MILDEW AND DID NOT DISCLOSE IT. REALTORS SHOWING THE HOME TEXTED WILL WITH REMARKS AND PICS OF THE EVIDENCE. WILL\\\'S RESPONSE WAS \\\"THAT\\\'S INTERESTING.\\\" THE STATE IS INVESTIGATING MY COMPLAINT WE HAVE DOCUMENTAIION FROM REALTORS THAT WILL REFUSED TO LISTEN TO. HE COVERED THE MOLD PROBLEM UP!!!!\r\nHE FLED TO NYC AND I NOTIFIED HIS BOSS OF HIS DELIBERATE COVER UP AND SELLING ME THE HOME AS A DUAL AGENT WITH MOLD AND MILDEW, AND, THE FRIDGE, CHANDELIER AND COOKTOP WERE STOLEN. HIS EXPLANATION THEY SAWED THE LOCK BOX OFF AND CAME IN THE BASEMENT. WILL HEDRICK REFUSED TO DISCLOSE THE POLICE REPORT.\r\nHE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. I INFORMED HER OF THE GROSS NEGLIGENCE AND MISCONDUCT OF WILL WITH THE DETAILS AND DOCUMENTATION.\r\n\r\n HE WAS IMMEDIATLEY LET GO IN NYC BY THE CANDICE MILANO TEAM. MYSELF AN OTHER REALTORS TALKED TO THE BOSSES.\r\n\r\n HEDRICK DIDN\\\'T WANT OR ENCOURAGE ME TO HAVE AN INSPECTION. HE SAID RON AND HE WERE SO HAPPY I DID NOT DO AND INSPECTION.\r\n\r\nCOURTNEY HEDRICK WITH WILL ARE DISPICABLE REALTORS TO CON ME KNOWING THERE WAS MOLD AND MILDEW AND A HOST OF OTHER VERY, VERY, VERY BAD PROBLEMS. TOO MANY TO LIST.\r\n HEDRICK IS A VERY UNETHICAL, CON MAN AND THE REALTORS CONFIRMED THAT FACT. YOU SHOULD KNOW WHAT THE HEDRICK TEAM DOES TO SUCK MONEY OUT OF BUYERS, ABSOLUTELY TERRIBLE. HORRIBLE PEOPLE!!!!!! THE STATE AND LEGAL TEAM ARE INVESTIGATING THIS COUPLE ASSOCIATED WITH LANTERN REALTY.  \";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-12 07:27:22'),(163,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Tia Turner\";s:5:\"email\";s:23:\"tmturner70061@gmail.com\";s:5:\"phone\";s:10:\"8049821070\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:1544:\"PAULA,\r\nWILL HEDRICK A FORMER AGENT WITH YOUR AGENCY, AND COURTNEY HEDRICK ARE NOW IMPLICATED IN A STATE NC REAL ESTATE BOARD FOR NOT DISCLOSING MOLD/MILDEW/MOISTURE INTRUSION IN A HOME I BOUGHT FROM THEM IN JANUARY 2022. WILL WAS SEND TEXTS AND PICS BY REALTORS, IN PARTICULAR ROYDA TURMAN A WELL KNOWN WINSTON REALTOR THAT THE HOME HAD PROBLEMS IN SUMMER 2021. HE DENIED AND SAID \\\"THAT\\\'S INTERESTING.\\\" WILL HEDRICK IS A PATHOLOGICAL NARCSSTIC LIAR WHO LIES AND GROSSLY UNETHICAL!! HE LIED ABOUT EVERYTHING, AND HE IS TOTALLY INCOMPETENT AND STUPID. I HAVE FILED A COMPLAINT WITH THE STATE AND THEY HAVE AN INVESTIGATION. WILL AFTER HE CLOSED MY HOUSE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. ROYDA TURMAN, REALTOR AND I INFORMED CANDICE OF ALL THE MISDEEDS, LACK OF TRANSPARENCY, MADE UP SPEEK HOME INSPECTION WAIVER FORM, AND ALL HIS LIES, LIES AND UNETHICAL MISCONDUCT. WILL WAS IMMEDIATELY FIRED!!! MILANO INFORMED ME,\r\nHE STRONGLY TOLD ME NOT, NOT TO GET A HOME INSPECTION.ITS PERFECT THEY SAID!!\r\n AFTER I MOVED INTO THE HOUSE ITWAS HELL, WATER HEATER BROKEN, SEWER PUMP BROKEN. BROKEN HVAC HEATING FAN!!! LAST SUMMER WHEN WILL HAD THE PROPERTY, IT WAS BROKEN INTO. HE STATED THE LOCK BOX HAD BEEN SAWED INTO, 10K CHANDELIER, FRIDGE, AND COOKTOP TAKEN. HE MADE A POLICE REPORT. EVERYONE IN BENT TREE KNOWS IT WAS AN INSIDE JOB~~ HIS SQUARE FOOTAGE WAS INCORECT AND WHEN I GOT THE OFFICIAL APPRASIAL THE FOOTAGE  WAS WAY OFF!!!!! BE AWARE OF THE LYING HIGH LIABILTY HEDRICKS!!!!\r\nIF YOU NEED TO CALL ME FEEL FREE. TIA 8049821070\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-14 21:45:06'),(164,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Tia Turner\";s:5:\"email\";s:23:\"tmturner70061@gmail.com\";s:5:\"phone\";s:10:\"8049821070\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:1544:\"PAULA,\r\nWILL HEDRICK A FORMER AGENT WITH YOUR AGENCY, AND COURTNEY HEDRICK ARE NOW IMPLICATED IN A STATE NC REAL ESTATE BOARD FOR NOT DISCLOSING MOLD/MILDEW/MOISTURE INTRUSION IN A HOME I BOUGHT FROM THEM IN JANUARY 2022. WILL WAS SEND TEXTS AND PICS BY REALTORS, IN PARTICULAR ROYDA TURMAN A WELL KNOWN WINSTON REALTOR THAT THE HOME HAD PROBLEMS IN SUMMER 2021. HE DENIED AND SAID \\\"THAT\\\'S INTERESTING.\\\" WILL HEDRICK IS A PATHOLOGICAL NARCSSTIC LIAR WHO LIES AND GROSSLY UNETHICAL!! HE LIED ABOUT EVERYTHING, AND HE IS TOTALLY INCOMPETENT AND STUPID. I HAVE FILED A COMPLAINT WITH THE STATE AND THEY HAVE AN INVESTIGATION. WILL AFTER HE CLOSED MY HOUSE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. ROYDA TURMAN, REALTOR AND I INFORMED CANDICE OF ALL THE MISDEEDS, LACK OF TRANSPARENCY, MADE UP SPEEK HOME INSPECTION WAIVER FORM, AND ALL HIS LIES, LIES AND UNETHICAL MISCONDUCT. WILL WAS IMMEDIATELY FIRED!!! MILANO INFORMED ME,\r\nHE STRONGLY TOLD ME NOT, NOT TO GET A HOME INSPECTION.ITS PERFECT THEY SAID!!\r\n AFTER I MOVED INTO THE HOUSE ITWAS HELL, WATER HEATER BROKEN, SEWER PUMP BROKEN. BROKEN HVAC HEATING FAN!!! LAST SUMMER WHEN WILL HAD THE PROPERTY, IT WAS BROKEN INTO. HE STATED THE LOCK BOX HAD BEEN SAWED INTO, 10K CHANDELIER, FRIDGE, AND COOKTOP TAKEN. HE MADE A POLICE REPORT. EVERYONE IN BENT TREE KNOWS IT WAS AN INSIDE JOB~~ HIS SQUARE FOOTAGE WAS INCORECT AND WHEN I GOT THE OFFICIAL APPRASIAL THE FOOTAGE  WAS WAY OFF!!!!! BE AWARE OF THE LYING HIGH LIABILTY HEDRICKS!!!!\r\nIF YOU NEED TO CALL ME FEEL FREE. TIA 8049821070\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-14 21:45:30'),(165,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Amanda Schenk\";s:5:\"email\";s:26:\"schenkfamily1983@yahoo.com\";s:5:\"phone\";s:10:\"3362664174\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:240:\"Hi Jeremy Aldridge, \r\nWe just bought the house at 795 Murray Dr, Salisbury, NC.\r\nThere were a couple of Contractors Invoices left from the day before closing.  Also your last Duke Energy bill arrived.  Where would you like us to send these.\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-18 08:20:17'),(166,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Karen Condon\";s:5:\"email\";s:15:\"kc2100@live.com\";s:5:\"phone\";s:10:\"3362029935\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:201:\"Hi I saw your listing in Rockwell,\r\n$257,250\r\n 24.5 acre lot\r\nBasinger Kluttz Rd, Rockwell, NC 28138\r\nWondered if you had detailed info...Why not selling?  Super steep?  Any other issues?\r\nThanks Karen\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-20 02:21:30'),(167,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Karen Condon\";s:5:\"email\";s:15:\"kc2100@live.com\";s:5:\"phone\";s:10:\"3362029935\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:201:\"Hi I saw your listing in Rockwell,\r\n$257,250\r\n 24.5 acre lot\r\nBasinger Kluttz Rd, Rockwell, NC 28138\r\nWondered if you had detailed info...Why not selling?  Super steep?  Any other issues?\r\nThanks Karen\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-20 02:27:19'),(168,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:15:\"Jordan Kennerly\";s:5:\"email\";s:23:\"jordank@steinfibers.com\";s:5:\"phone\";s:10:\"7042247478\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:191:\"Hi Deana, \r\n\r\nI wanted to reach out to you and inquire about your services, our your companies services, for a home for Kim and I. \r\n\r\nI look forward to hearing from you soon. \r\n\r\nThank you. \";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-20 08:25:40'),(169,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:8:\"Jim Ryan\";s:5:\"email\";s:23:\"coachryan9393@gmail.com\";s:5:\"phone\";s:10:\"8157219150\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:256:\"Hi Katherine, I was hoping to schedule a time to see the property at 356 Autumn Ln. in Tryon.  We will be back in town and available all day Sunday...or anytime after 4 next week.  Please let me know if any of those times work.   Thank you for your time.  \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-22 05:01:48'),(170,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Sandra Matter\";s:5:\"email\";s:20:\"paintryder@yahoo.com\";s:5:\"phone\";s:12:\"970-214-6886\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:180:\"Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help on 356 Autumn Ln, Tryon, NC 28782 I would like to get more info. \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-22 05:23:26'),(171,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Sally\";s:5:\"email\";s:22:\"sab1.homes@outlook.com\";s:5:\"phone\";s:11:\"17044338462\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:112:\"Hi Sabine Amoakon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"781\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-27 21:24:12'),(172,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Cliff Parker\";s:5:\"email\";s:19:\"cnmparker@yahoo.com\";s:5:\"phone\";s:12:\"425-315-6505\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:572:\"Hi Kim,\r\nI noticed that you recently had a townhome on the market in Harrisburg Towncenter.\r\nWe have a condo there that we are interested in selling.\r\nOur address is 6410 Kee Lane, Harrisburg, NC 28075\r\n\r\nHere is a little about our situation.\r\nThe condo is our \\\"second home\\\", we actually live in Charleston, SC.\r\nWe were using the condo to visit our son and grandkids, but they recently moved.\r\n\r\nIf working with us to sell our condo is something you would be able to do, please give me a call and we can discuss things further.\r\n\r\nThanks!\r\n\r\nCliff Parker\r\n(425)315-6505\";s:8:\"agent_id\";s:3:\"383\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-30 05:53:36'),(173,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Byron Sherman\";s:5:\"email\";s:21:\"johnch9vs39@gmail.com\";s:5:\"phone\";s:12:\"704-213-2286\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:234:\"Hi Jody Clodfelter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nI’m interested in the property @ Austin Rd. & Joe Rd. near Red Cross.  Sq. Footage, acreage, price, etc.  Thank you!\";s:8:\"agent_id\";s:3:\"598\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-14 23:23:43'),(174,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Robin Matthews\";s:5:\"email\";s:21:\"rmatthews30@gmail.com\";s:5:\"phone\";s:10:\"7047016434\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:233:\"Hi Brittney, we just drove by a vacate lot adjacent to Partridge Bluff or in that area. We don’t see it listed on the website. Can you provide some information about this lot? The street was “Wind Ridge” or similar. Thank you! \";s:8:\"agent_id\";s:4:\"2274\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-21 07:06:24'),(175,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:8:\"Jameshia\";s:5:\"email\";s:19:\"jbaldwin@eckerd.org\";s:5:\"phone\";s:7:\"Baldwin\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:143:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. I’m looking for a home to rent\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-22 10:33:39'),(176,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:17:\"Noni Waite-Kucera\";s:5:\"email\";s:12:\"noni@enf.org\";s:5:\"phone\";s:12:\"336-761-1040\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:801:\"Hello Casey,\r\nI am the Executive Director of Eagle\\\'s Nest Foundation and our campus is adjacent to the house you are listing at 332 Hart Rd., Pisgah Forest.  I sent a message through Zillow but wasn\\\'t sure if that would make it to you.   After conferring with our Board of Trustees we would like to request that you adjust the property description to not include the mention of Eagle\\\'s Nest Camp or our conservation easement. Our campus is home to a summer camp and school and there is no public access.  We don\\\'t want potential buyers to think there may be walking access on our campus that is busy with young people night and day.  I hope you will make this consideration and certainly I am happy to discuss with you over the phone.  I can be reached at 336-761-1040 ext. 102.  Many thanks, Noni\";s:8:\"agent_id\";s:4:\"2079\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-26 03:31:29'),(177,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:7:\"Esteban\";s:5:\"email\";s:23:\"alfa.thinking@gmail.com\";s:5:\"phone\";s:6:\"Alfaro\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:163:\"Hello Paula, saw your listing for a lot on high rock lake address is 1026 Emerald Bay Dr. Salisbury NC. Would like o know if the HOA will allow short term rentals.\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-29 00:25:44'),(178,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Sandy Helms\";s:5:\"email\";s:22:\"sandyhelms68@yahoo.com\";s:5:\"phone\";s:11:\"704-4410384\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:167:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nCan you tell me how this property is zoned.\r\nThank you \";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-31 20:35:16'),(179,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Austin Freeman\";s:5:\"email\";s:20:\"Austinf526@gmail.com\";s:5:\"phone\";s:10:\"7047836735\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:485:\"Hello my name is Austin Freeman, I was recommended to you from my uncle Scott Barbee. I have two lots in Kannapolis, NC that I hoping to put on the market in July as was hoping to get a market appraisal and potentially list it. The properties are 2489 Forrestbrook Dr, Kannapolis, NC, 28083 (0.97 acres) and 2508 Forrestbrook Dr, Kannapolis, NC, 28083 (18 Acres). If you would give me a call at 704-783-6735 or email me back at Austinf526@gmail.com so we can discuss further. Thank you\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-03 07:17:41'),(180,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Jude DeVirgiliis\";s:5:\"email\";s:23:\"judecarter828@gmail.com\";s:5:\"phone\";s:12:\"828.964.5174\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:242:\"Hi Katherine Lawing, I\\\'m Sandy Devirgiliis\\\' child and we were looking at some land that came up for sale and was hoping you could help us figure out if it\\\'s a good purchase for building our home on. It\\\'s 8 silver long road, Asheville NC. \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-04 04:33:02'),(181,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:6:\"Walter\";s:5:\"email\";s:19:\"bundyfive@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Amy Bundy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2283\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-07 04:04:13'),(182,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Jeremy Aldridge, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:44:56'),(183,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Katie Abell, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1904\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:45:30'),(184,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Sabine Amoakon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"781\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:46:10'),(185,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Casey Barber, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"416\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:46:36'),(186,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Cheryl Baxter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"785\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:47:00'),(187,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Amy Bundy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2283\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:47:33'),(188,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Toni Benton, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"546\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:48:09'),(189,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Annie Boger Kamp, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"111\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:48:34'),(190,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Elizabeth Brown, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"126\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:48:56'),(191,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Dale Bullock, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"788\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:49:44'),(192,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Crystal Cauble, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"380\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:50:36'),(193,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Jenna Cook, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:50:58'),(194,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Tan Crawford, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2169\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:51:27'),(195,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Evonne Caudill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"549\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:51:45'),(196,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Jessica Eudy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2709\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:52:13'),(197,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Michael Davis, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"801\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:52:44'),(198,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Kim Drakulich, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"383\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:53:04'),(199,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"808\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:56:42'),(200,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Amy Evans, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"135\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:00:26'),(201,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:118:\"Hi Taylor David McClure, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1510\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:00:46'),(202,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:119:\"Hi Cecilia Maria Ferrari, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2082\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:01:05'),(203,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Erin Hyman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2171\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:01:28'),(204,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Yira Garcia, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"551\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:01:47'),(205,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Sarah Grace Horn, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2308\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:02:09'),(206,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:122:\"Hi Evelin lisseth Hernandez, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2165\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:02:33'),(207,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Lynnette Gearing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:02:57'),(208,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Cathy Hager, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"553\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:03:15'),(209,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Conard Haywood, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"814\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:03:40'),(210,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Lezli Rae Leath, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2167\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:04:02'),(211,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Tammy Fox, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:05:04'),(212,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Liz Hallman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1398\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:05:46'),(213,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Stephanie E Morgan, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2163\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:06:05'),(214,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Hosanna Hill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"555\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:06:28'),(215,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Melissa Jackling, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"390\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:06:54'),(216,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Christine Jalynski, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"476\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:07:32'),(217,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Kelly Keller, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"503\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:08:00'),(218,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:120:\"Hi Rochelle Shanae Ogburn, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1907\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:08:26'),(219,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Misty Lynn Moss, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2086\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:08:46'),(220,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Melinda R Mesimerr, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2711\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:09:03'),(221,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Melissa LaCroix, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"424\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:09:28'),(222,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Dawn Lamb, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"825\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:09:48'),(223,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1402\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:13:24'),(224,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Helen Robb, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"481\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:13:46'),(225,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Lindsey McCauley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"400\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:14:07'),(226,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Connie Merrell, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"828\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:14:27'),(227,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:14:44'),(228,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Megan Owens, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2713\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:15:03'),(229,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Julie Nutter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"484\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:15:21'),(230,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Jason Overcash, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"322\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:15:54'),(231,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Laura Overcash, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"430\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:16:25'),(232,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Alicia Love Hammel, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1557\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:16:46'),(233,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:115:\"Hi Charity K Meachum, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2280\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:17:04'),(234,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Kelly Robinson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"836\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:17:24'),(235,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:121:\"Hi Viviana Martinez Campos, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1677\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:17:44'),(236,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Kim Sadler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:18:04'),(237,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Chelsi Sherin, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"845\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:19:07'),(238,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Holden Sides, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"848\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:19:33'),(239,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:115:\"Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"620\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:19:55'),(240,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi John Suther, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"439\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:20:48'),(241,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Dawn Wetherbee, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1892\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:21:06'),(242,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Brittney Steele, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2274\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:21:24'),(243,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Kimberly Trask, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"560\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:21:41'),(244,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Brianne Watson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"563\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:22:10'),(245,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Rick Wilson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"853\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:22:33'),(246,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Wendell Rummage, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:22:56'),(247,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Todd Wooley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"444\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:23:14'),(248,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:121:\"Hi Sherri Wiles Argabright, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1408\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:23:44'),(249,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Taina Shaw, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1682\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:24:07'),(250,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:120:\"Hi Andrew Jason Wetherbee, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2722\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:24:50'),(251,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Michele Tichnor, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1545\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:25:11'),(252,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Amber Tsumas, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2027\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:25:37'),(253,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Colleen Viteri, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2716\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:26:13'),(254,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Robbie Bendig, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"468\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:30:26'),(255,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Sandra Bean, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1901\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:30:40'),(256,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Jessica Cloward, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"470\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:31:00'),(257,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:117:\"Hi Carmady King Kruger, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2173\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:31:53'),(258,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Deborah Griffin, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"573\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:32:12'),(259,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:130:\"Hi Melissa Shannon Morefield-Valley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2292\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:32:34'),(260,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:115:\"Hi Marguerite Keller, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"576\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:33:06'),(261,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Cheyenne Kidd, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"822\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:33:35'),(262,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Bret Leonard, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"497\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:34:14'),(263,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:118:\"Hi Mitzi Mcdaniel Smith, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2720\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:34:42'),(264,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Rodney Queen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"834\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:35:04'),(265,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:117:\"Hi Alexis Devine Smith, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2718\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:35:28'),(266,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:120:\"Hi Benjamin Allen Surratt, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2302\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:36:16'),(267,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Paige Wiser, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1507\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:39:10'),(268,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Maranda Allen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1514\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:39:32'),(269,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Karie Arem, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2023\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:39:46'),(270,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Emily Chandler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"791\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:40:22'),(271,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Janice Cannon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1523\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:40:31'),(272,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:110:\"Hi Tracie Clark, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"798\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:40:50'),(273,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi David G Cannon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2021\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:41:04'),(274,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Dawn Fisher, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2035\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:41:19'),(275,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Donna Hiner, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:41:31'),(276,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Aaron Forsyth, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2277\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:41:58'),(277,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Deanna Miltz, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"558\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:42:14'),(278,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Rick Rhew, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"434\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:42:45'),(279,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Hayley Rogers, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"839\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:44:07'),(280,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Jamie Stewart, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2289\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:44:25'),(281,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Susan Starnes, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"617\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:44:38'),(282,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Min Zhang, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"623\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:44:56'),(283,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Sheila Allison, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"411\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:45:09'),(284,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Brenda Bingham, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1520\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:45:24'),(285,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Jody Clodfelter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"598\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:45:35'),(286,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:45:47'),(287,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Mike Fullerton, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"604\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:46:04'),(288,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Chelsea Trexler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1898\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:46:19'),(289,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi April Bird, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"565\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:46:49'),(290,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1551\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:46:58'),(291,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Rachel Monrad, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"831\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:49:10'),(292,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Sarah Romesburg, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"842\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:49:27'),(293,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Dominique Walter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1548\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:49:42'),(294,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Ashley Uttecht, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1637\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:49:55'),(295,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Kathy Gurney, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2031\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:52:55'),(296,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Julie Arader, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1895\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:53:57'),(297,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Colleen Crane, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2305\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:54:33'),(298,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi IIona Kenrick, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2077\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:54:54'),(299,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Micheal Farlow, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1640\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:55:15'),(300,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Casey Paige Maness, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2079\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:55:37'),(301,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:56:30'),(302,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Doreen Shaughnessy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2029\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:56:47'),(303,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Jenna Stoll, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2084\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:57:16'),(304,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Claire Sonnier, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2033\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:58:36'),(305,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Stephanie Knight, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2298\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:58:49'),(306,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Ashley Ferlauto, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"645\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:59:00'),(307,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:17:\"Kaitlyn Goldsmith\";s:5:\"email\";s:20:\"ksammons42@gmail.com\";s:5:\"phone\";s:10:\"7047875877\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:256:\"Hi Kim. We recently purchased a property put up by Lantern, 145 winding way in Salisbury. However, your lock box is still on the door. We plan on changing the locks soon, and I was wondering when you would be able to come and get the box?\r\n\r\nThanks,\r\nKatie\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-07-01 08:19:10');
/*!40000 ALTER TABLE `lrwp_houzez_crm_activities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_houzez_crm_deals`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_deals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_deals` (
  `deal_id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `listing_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `lead_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `agent_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `agent_type` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `next_action` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action_due_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `deal_value` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_contact_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `private_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deal_group` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`deal_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_deals`
--

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

--
-- Table structure for table `lrwp_houzez_crm_enquiries`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_enquiries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_enquiries` (
  `enquiry_id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `lead_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `listing_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `negotiator` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enquiry_to` bigint(25) DEFAULT NULL,
  `enquiry_user_type` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enquiry_type` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enquiry_meta` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `private_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`enquiry_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_enquiries`
--

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

--
-- Table structure for table `lrwp_houzez_crm_leads`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_leads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_leads` (
  `lead_id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `prefix` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `display_name` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `first_name` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `mobile` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `home_phone` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `work_phone` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `zipcode` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source_link` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enquiry_to` bigint(200) DEFAULT NULL,
  `enquiry_user_type` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `twitter_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `linkedin_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `facebook_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `private_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`lead_id`)
) ENGINE=MyISAM AUTO_INCREMENT=304 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_leads`
--

LOCK TABLES `lrwp_houzez_crm_leads` WRITE;
/*!40000 ALTER TABLE `lrwp_houzez_crm_leads` DISABLE KEYS */;
INSERT INTO `lrwp_houzez_crm_leads` VALUES (1,1,'','Eric Hebert','','','eric@emjaproperties.com','7042247413','','','','','','','','buyer','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','Interested in the 9 house portfolio and the numbers in it.','2020-06-07 22:20:47'),(2,1,'','Wayne','','','wbc58@att.net','407-412-4552','','','','','','','','buyer','','','https://lantern-realty.com/agent/robbie-bendig/',468,'agent_info','','','','','Would like to see your listing in China Grove','2020-06-16 12:12:31'),(3,1,'','Floyd W Scott','','','Honeydo777@gmail.com','7049330006','','','','','','','','buyer','','','https://lantern-realty.com/agent/cindy-widenhouse/',373,'agent_info','','','','','Hey Cindy, hope you\\\'re doing well? Will you please stop sending me houses that are way over my price I\\\'m only looking at maybe a 50 or $60,000 high price range and unless the properties will sell for over $200,000 after fix up that I\\\'m not interested in anything that\\\'s over 60,000. You keep sending me things that are way over 60,000 that\\\'s why I\\\'m not buying anything right now that you\\\'re sending','2020-06-16 14:39:44'),(4,1,'','Cynthia Hahn','','','chahn27@hotmail.com','7043631544','','','','','','','','buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Amanda, \r\nMy name is Cynthia Hahn.  I am a broker.  My sister is moving here from MD and has 3 horses.  I am looking for her a place. I saw the land for sale on Austin Rd. I am not a member of the MLS. I use my license for my personal purchases and for family. I noted it is a government sale.  Can you please email me the details on the property. \r\nThank you\r\nCynthia Hahn','2020-06-19 11:57:49'),(5,1,'','Rochelle Lilly','','','rochellelilly@yahoo.com','7736302318','','','','','','','','buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi , I saw profile on Lantern Realty and Development and wanted to see if i can get some help with the property at the address of 1232. I don\\\'t remember the street or highway close to mint hill.','2020-07-14 21:58:15'),(6,1,'','Tracy Burkett','','','tracyb928@hotmail.com','8287772696','','','','','','','','buyer','','','https://lantern-realty.com/agent/kim-drakulich/',383,'agent_info','','','','','Hey we\\\'re looking for land!  We know exactly what we want (mostly) so its just a matter of it becoming available.  We want 8+ acres (we dont care if theres a house there, and would probably prefer there not to be a house) in the cabarrus county area---Midland, harrisburg area--the other side of 601 (towards Locust) is too far.  RIght into Mecklenburg county off 24/27 would be ok too.  I\\\'ve been setting my max price for $500k when I search online, but probably we\\\'re hoping for 200K or less, more realistically.','2020-07-22 15:21:14'),(7,1,'','Meggie Lasher','','','meggie.lasher@gmail.com','8285820753','','','','','','','','buyer','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy,\r\n\r\nI’m interested in the property at 1802 W C Street. I’d be a first time home buyer. I’m looking into the USDA loan. Working on pre-qualification! \r\n\r\nI look forward to hearing from you soon.','2020-08-08 14:14:02'),(8,1,'','Tamara Borges','','','tborges1515@gmail.com','3215066529','','','','','','','','buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Good morning, I’m interested in the property you have listed at 7067 NC 218\r\nPeachland, NC 28133.  I currently live in Florida and I’m coming in to Charlotte today to visit my daughter till this Sunday 8/23, will you be available to show me?  I look forward to hearing from you, thanks.\r\n\r\nTamara','2020-08-20 09:15:43'),(9,1,'','Cheryl Baxter','','','cmbaxter2@gmail.com','7047968843','','','','','','','','buyer','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Hey Paula! Can you give me a call?','2020-08-26 17:55:52'),(10,1,'','Julia Corbin','','','juliacorbin88@gmail.com','5132609464','','','','','','','','buyer','','','https://lantern-realty.com/agent/brenda-brown/',528,'agent_info','','','','','Hi, Brenda !  I don\\\'t have your home email  - so I\\\'m sending this to you - I looked up your business page online!  Mom\\\'s 80th bday is coming up - here\\\'s the email I\\\'m sending out to family.  Will you let Deanna know, too?  And Aunt Ann?  Thanks!  I hope you all are well - have a great week !  \r\n\r\nJudy Inman Richter\\\'s birthday is September 14.  Don\\\'t tell her we told you, but she will be 80!  She is the youngest 80-year-old we\\\'ve ever met !  Her address:\r\nMrs. Judy Richter1314 Glen Meadow Dr.Findlay, OH  45840\r\n\r\nMost of you know, our dad was diagnosed with bone cancer in the spring.  He is responding well to several medications.  He has some really good days, but has his share of tough days with considerable pain.  One of the hardest things about the last few months is that John and Judy have felt pretty isolated.  They have had some back porch and front porch picnics with immediate family, which has helped a lot.  Dad got out and played 9 holes of golf with John, Jim, and Mike. He was very happy about that.  We know they would appreciate cards and calls.  \r\nThank you in advance for helping to celebrate Aunt Judy / Honeybunch ! \r\nLove,\r\nJulie, John, Jill, and Jessie ','2020-08-30 13:20:19'),(11,1,'','Mitch Green','','','bear__007@hotmail.com','','','','','','','','','','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','Hi Chris Puckett, I saw your listing 45 Mandalay Pl SW, Concord, NC 28027\r\n\r\n9x rental properties listed for 725k.  Are all 9 homes about the same size 900 sqft from the 1940s? What is the rental income?  Tenants are all long term tenants or on 1 year leases?','2020-09-26 01:49:07'),(12,1,'','Regan Hall','','','reganlhall@aol.com','(980) 332-0780','','','','','','','','','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim, my mom wrote to you and asked if she signed anything with you locking her into the inability to acquire another agent?, she is looking up in the area of lenoir and spoke with an agent to see what is available and was told to find out about anything signed between you and her just like with Jessica..I\\\'m assuming you didnt have her sign any commitment the same as Jesssica but she needs to know so we can move forward with the search. Please let her or myself know asap! Thanks Kim','2020-09-26 15:58:24'),(13,1,'','Easton Nesbitt','','','eaneaston5@gmail.com','9802342178','','','','','','','','','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Hi Paula, it’s Easton Nesbitt from the barbershop on West Avenue. I was wondering if you do any type of business with rentals such as apartments or rental homes? I’m looking for one in Kannapolis and maybe the surrounding area. If you could get back with me that would be awesome! Thank you!','2020-10-06 12:08:42'),(14,1,'','Renae Fountain, Realtor/Broker @ High Country Realty of NC','','','Renae@highcountryrealtync.com','910-612-4441','','','','','','','','','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','I have a client that would like to see 520 Alleghany Spur Road, \r\nTraphill, NC.  Can you please send me the MLS Agent Full Sheet with all information. Also, how can I gain access to homes to show them.  If possible I would  like to show Tuesday afternoon or Wednesday afternoon.','2020-10-12 23:26:01'),(15,1,'','amanda cody','','','amandaearnhardt@yahoo.com','9805811399','','','','','','','','','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2020-10-13 16:26:49'),(16,1,'','Eddie Morrison','','','eamorrison74@gmail.com','7049179265','','','','','','','','','','','https://lantern-realty.com/agent/ethan-stillinger/',141,'agent_info','','','','','Hi Ethan Stillinger, I saw your sign in the Cambridge community in Iron Station I believe.  It was on the left hand side as you enter in the community.  Must be the first lot.  Is this lot still available, what is the asking price and may I see the CCR\\\'s?  Thank you','2020-10-17 22:10:07'),(17,1,'','Oren','','','orenm@kw.com','917-291-1178','','','','','','','','','','','https://lantern-realty.com/agent/hosanna-hill/',555,'agent_info','','','','','Hi Hosanna \r\n\r\nWondering if you had any interested Buyers for a project in China Grove?\r\n\r\nhttps://matrix.carolinamls.com/matrix/shared/mgdgHv1kpGc/804RailroadAvenue','2020-11-05 15:44:07'),(18,1,'','Josh Edwards','','','josh.edwards@sscoop.com','7045760547','','','','','','','','','','','https://lantern-realty.com/agent/mike-fullerton/',604,'agent_info','','','','','Hi Mike, I wanted to see if i can get some help with 158 Edwards Store Rd, in Peachland? I’m a very interested buyer and by the pics of the property & riding by it I will likely pay asking price if it holds true to the pics of the inside. If the seller hasn’t signed a contract with another buyer maybe I can get my name in on it. Thanks!!','2020-11-22 00:09:39'),(19,1,'','Amy Workman','','','interfaceamy@gmail.com','7046401063','','','','','','','','','','','https://lantern-realty.com/agent/cheyenne-kidd/',822,'agent_info','','','','','Hi Cheyenne,\r\n\r\nI found a property that I am interested in on Zillow and believe you are the listing agent!  It is a parcel of land on high rock lake on Waters Road:  https://www.zillow.com/homedetails/0-Waters-Rd-16-Salisbury-NC-28146/2077973431_zpid/.  Is this property still available?  If so, could you give me some more details....  what are the HOA dues and what is included with the dues..pool?  Common area?  Also, is there a forested setback requirement for this land from the water?    What are the restrictions with the HOA?  Thank you so much!\r\n\r\nAmy Workman','2021-01-11 17:50:41'),(20,1,'','Grace','','','graceevans1322@gmail.com','','','','','','','','','','','','https://lantern-realty.com/agent/kimberly-howell/',473,'agent_info','','','','','Hi Kimberly! I saw your sign out at a house on Camp Julia Rd that I would be interested in looking at to purchase and was wondering the price on it.','2021-01-17 20:55:04'),(21,1,'','Jennifer Burroughs','','','74jennyk@gmail.com','7042322290','','','','','','','','','','','https://lantern-realty.com/agent/courtney-sloan-holshouser/',1449,'agent_info','','','','','Hi Courtney Sloan Holshouser, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nGive me a call or text me...wanted to see if you still wanted to meet up tonight to talk about what Mike and I are looking for in a house.\r\nThanks!!','2021-02-10 18:32:07'),(22,1,'','Emily Furr','','','Emily.Dana.h4@gmail.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Ms. Cody! I am possibly looking for a 2-3 bedroom rental or home to purchase for my children and myself. I\\\'d like to pursue renting first, but I realize there are very limited options in Stanly County. There are a lot of things up in the air for my family currently, but Stacy Hicks recommended that I reach out to you so I could be on your radar. Thank you! - Emily Furr','2021-02-24 16:06:56'),(23,1,'','Sherry Jones','','','sjones201964@gmail.com','7046779424','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim Sadler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-02-24 22:59:50'),(24,1,'','Samantha Hower','','','sam@thehillgrouptriad.com','3365963007','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','Hi Donna,\r\nI am Samantha with Joshua Mitchell Real Estate. I have a client interested in 105 Hasty Hill Rd. It is not in our MLS, they would like to see the home soon. Look forward to speaking with you soon.','2021-03-04 01:10:49'),(25,1,'','Andrew R Burgesser','','','bluedogexcel@yahoo.com','7045508801','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brenda-sue-bingham/',1520,'agent_info','','','','','Hi Brenda Bingham, I wanted to get some information regarding the 10 acre parcel for sale on Cold Springs Road. I know it was pending sale, then listed again, can you advise if there was an issue with the land? Thank you.','2021-03-24 17:11:04'),(26,1,'','Ben Moss','','','ben.rubberduck@gmail.com','980-284-3393','','','','','','','','','','','https://lantern-realty.com/agent/sherri-wiles-argabright/',1408,'agent_info','','','','','Hi Sherri,\r\n\r\nMy name is Ben Moss, owner of Rubber Duck Trucking, provider of land clearing, grading and demo services.  \r\n\r\nI’ve learned that you’re representing the buyer for the 16.6 acres on hwy 152.   I would love the opportunity of connecting with you and/or your buyer with regards to our services. Would you be willing to share my contact information below with them?\r\n\r\n(980) 284-3393\r\nBen.RubberDuck@gmail.com\r\n\r\nI greatly appreciate your time and any consideration you allow me. \r\n\r\nCongrats on being  under contract!\r\n\r\nKind Regards,\r\n\r\nBen','2021-03-26 15:07:37'),(27,1,'','Jessica and David English','','','jhenglish88@gmail.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','Hi Donna Hiner, I heard from a friend about a property you are listing by the end of the week on Old Mill Rd. I believe the address is 20255. Can you tell me the asking price?','2021-03-29 22:25:30'),(28,1,'','Test','','','hello@gmail.com','704-555-9876','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivan-henrickson/',1551,'agent_info','','','','','Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-03-30 20:14:47'),(29,1,'','Jorge Torres','','','junkexremoval@aol.com','9804441918','','','','','','','','Other','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Whether you buy investment properties, or manage existing properties, Junk-Ex Removal can help you today! We work with real estate investors who need to clean up a property before flipping it and also property management companies to keep their properties junk and debris free.  Junk-Ex Removal would love to partner with you to ensure your properties are making a great impression! \r\n\r\nWe specialize in working with Real Estate Professionals, Bank/Foreclosure Actions, Estate Clean-Outs, Investors and House-Flippers!\r\n\r\nServing Charlotte and the surrounding area. Experienced, reliable, ethical and reasonably priced. Family owned business. Licensed and insured in NC.\r\n\r\nFREE ESTIMATES!\r\n\r\nCheck us out at www.JunkExRemoval.com or contact me today for more information at 980-444-1918. Thank you for your consideration.\r\n\r\nJorge Torres\r\n980-444-1918\r\nJunkexremoval@aol.com\r\nwww.JunkExRemoval.com','2021-04-19 16:32:15'),(30,1,'','Jorge Torres','','','junkexremoval@aol.com','9804441918','','','','','','','','Other','','','https://lantern-realty.com/agent/casey-barber/',416,'agent_info','','','','','contact@lantern-realty.com','2021-04-19 16:33:50'),(31,1,'','Jorge Torres','','','junkexremoval@aol.com','9804441918','','','','','','','','Other','','','https://lantern-realty.com/agent/casey-barber/',416,'agent_info','','','','','Whether you buy investment properties, or manage existing properties, Junk-Ex Removal can help you today! We work with real estate investors who need to clean up a property before flipping it and also property management companies to keep their properties junk and debris free.  Junk-Ex Removal would love to partner with you to ensure your properties are making a great impression! \r\n\r\nWe specialize in working with Real Estate Professionals, Bank/Foreclosure Actions, Estate Clean-Outs, Investors and House-Flippers!\r\n\r\nServing Charlotte and the surrounding area. Experienced, reliable, ethical and reasonably priced. Family owned business. Licensed and insured in NC.\r\n\r\nFREE ESTIMATES!\r\n\r\nCheck us out at www.JunkExRemoval.com or contact me today for more information at 980-444-1918. Thank you for your consideration.\r\n\r\nJorge Torres\r\n980-444-1918\r\nJunkexremoval@aol.com\r\nwww.JunkExRemoval.com','2021-04-19 16:34:15'),(32,1,'','Joel Disselkoen','','','jstynnc@gmail.com','7047738016','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/tricia-strickland/',620,'agent_info','','','','','Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-05-05 23:20:34'),(33,1,'','Ann Dixon','','','bizcorp10140@yahoo.com','7046659292','','','','','','','','','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge, I have seen that you were the listing agent on the property at 276 Elm Avenue Concord Avenue 28025 I want to know if this property was still available ? Can you give me a call or text me at your earliest convenience thank you.','2021-05-06 00:40:45'),(34,1,'','Jessica Owenby','','','jrowenby@live.com','','','','','','','','','','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine, I saw a for sale sign on Zion Hill Road in Marion for a piece of land that I would like info on. I’m not sure of the address. It is near Wilson Farm Rd.','2021-05-09 20:38:41'),(35,1,'','Jessica Owenby','','','jrowenby@live.com','','','','','','','','','','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine, I saw a for sale sign on Zion Hill Road in Marion for a piece of land that I would like info on. I’m not sure of the address. It is near Wilson Farm Rd.','2021-05-09 20:39:02'),(36,1,'','Mark MacLaughlin','','','Mark.maclaughlin@gmail.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/cheyenne-kidd/',822,'agent_info','','','','','Hello Cheyenne! I’ve been keeping an eye on your listing at 530 Waters Rd #16, Salisbury, NC. I was wondering if you might be able to provide any additional information that might not be in the listing. Restrictions, docking permitting, HOA immediate requirements? We’re located in SWFL, but have been eyeing some potential properties in your area. Specifically, we’re looking at lakefront’s in the region which we would like purchase and then wait a few years to build a main structure. Email is best. Thanks for your assistance!','2021-05-12 00:13:09'),(37,1,'','Ron Hainsey','','','ronbo4355@gmail.com','9107701962','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim,\r\nMy wife and I are considering selling, we live three doors\r\ndown where you used to live (#614 Maple Ridge Cir).  Can you send me your terms, rates, so forth ? I look forward to hearing from you.\r\n\r\nRon & Denise','2021-05-13 16:00:45'),(38,1,'','Missy Bowers','','','Missy@beyourbestinc.com','770 335 7680','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, \r\n\r\nI saw your listing for 94 Foxberry Lane #77 in Murphy, NC and I had a couple of questions.  Can I rent this when we are not using it as our second home?  What type of view does it have?','2021-05-18 15:52:06'),(39,1,'','Randy E Aldridge','','','randyaldridge@strmechanical.com','7046156833','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge, I checked on the home for sale at 66 Valley View, Banner Elk. Apparently the builder has this listed with an agent. Could you review, give me your opinion and give me a call to discuss a possible offer...??','2021-05-24 21:16:15'),(40,1,'','Darrell Jones jr','','','Different.Frequency.llc@gmail.com','5164012288','','','','','','','','Other','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','Hi Donna Hiner, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-05-25 14:30:26'),(41,1,'','Darrell Jones jr','','','Different.Frequency.llc@gmail.com','5164012288','','','','','','','','Other','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','Hi Donna Hiner, I was interested in presenting your property 12808 N Tryon Hwy, Charlotte, NC 28262 to my buyers.','2021-05-25 14:31:43'),(42,1,'','Christina','','','cfaust941@gmail.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-arader/',1895,'agent_info','','','','','Hello Julie,\r\n\r\nI am interested in a property you have listed at 0 Deep Gap Rd, Whittier, NC 28789. Could you please send me the build restrictions and CCRs for the subdivision. \r\n\r\nThank you,\r\n\r\nChristina','2021-06-23 01:18:41'),(43,1,'','Terry Blue','','','tblue982@gmail.com','7044258374','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\r\n\r\n49709 Quail Trail Rd, Norwood, NC 28128 I would like to review.','2021-06-24 12:10:19'),(44,1,'','Terry Blue','','','tblue982@gmail.com','7044258374','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\r\n\r\n49709 Quail Trail Rd, Norwood, NC 28128 I would like to review.','2021-06-24 12:11:26'),(45,1,'','stephen ellis','','','stephen@ellisdevelopments.com.au','8054053263','','','','','','','','','','','https://lantern-realty.com/agent/cathy-hager/',553,'agent_info','','','','','Call me Re concord land for sale prices at $2.7mil','2021-06-24 15:26:30'),(46,1,'','Christa Hartsell','','','cphartsell@gmail.com','9106121767','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Hi, would like to make an offer on a home on Quail Trail Rd , Norwood.','2021-06-26 02:07:47'),(47,1,'','christina Howard','','','christina.idol@yahoo.com','3368703527','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-lambert/',1402,'agent_info','','','','','Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted more information on the 1.25 acres listed on cold springs road.','2021-07-06 13:19:55'),(48,1,'','Daniel Lewis','','','lewislawncareahi@gmail.com','9804323026','','','','','','','','','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Good morning,\r\n\r\nI am writing to inquire about your lawn care and property repair contracts for both commercial and residential listings.  \r\n\r\nWe are a locally owned company and are interested in submitting a bid for any current or upcoming properties you may have available. We cover all forms of lawn care needs as well as all home repairs. A POI can be submitted upon request.\r\n\r\nPlease let me know if you have any further questions or are in need of services. We can be reached at 980-432-3026.\r\n\r\nThank you,\r\n\r\nBethany Lewis\r\nDaniel Lewis\r\nLewisLawnCareAHI','2021-07-06 16:59:39'),(49,1,'','James Walthall','','','arlcuts@gmail.com','7049043527','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, I was riding down cold springs rd today and saw a couple of 10 acre tracts for sale. I would like any info you have','2021-07-06 19:54:17'),(50,1,'','Fred J. Allen Jr.','','','Fredjallen@msn.com','7047917288','','','','','','','','Other','','','https://lantern-realty.com/agent/sandi-laney/',427,'agent_info','','','','','Hi Sandi Laney, Remember Fred & Jayne  Allen,  the land on Beaver Rd in China Grove? You probably never saw finished home. We would like you to look and see what you think it\\\'s worth. \r\nWould value your opinion. \r\nLet me know what you would charge to look it over.\r\nBest Regards;\r\nFred & Jayne','2021-07-09 01:41:09'),(51,1,'','Mary Boyles','','','marylboyes@yahoo.com','704-363-3655','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Tony Overcash gave me your name. We are planning on moving back to Concord/Kannapolis area and are needing a good agent to get us there. We are currently living in Mt. Airy, NC but are ready to get back to the area we lived for many years until we moved to take care of our parents until their passing. You can reach me on my cell at 704-363-3655. Thank you and I look forward to hearing from you.','2021-07-13 14:29:33'),(52,1,'','Mary Boyles','','','marylboyes@yahoo.com','704-363-3655','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Tony Overcash gave me your name. We are planning on moving back to Concord/Kannapolis area and are needing a good agent to get us there. We are currently living in Mt. Airy, NC but are ready to get back to the area we lived for many years until we moved to take care of our parents until their passing. You can reach me on my cell at 704-363-3655. Thank you and I look forward to hearing from you.','2021-07-13 14:29:49'),(53,1,'','Russell Walthall','','','arlcuts@gmail.com','7049043527','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brenda-sue-bingham/',1520,'agent_info','','','','','Looking at lots off cold spring rd in midland locust area or off of 49','2021-07-27 16:11:55'),(54,1,'','Robert & Lori Edwards','','','thankinghimdaily17@gmail.com','3364736046','','','','','','','','','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hello Mr. Aldridge,\r\n\r\nMy husband, Robbie, and I are the neighbors to the Redwood Drive house in Mocksville that you\\\'re selling. Yes, the ones with the playset in the front yard, lol. We see what an amazing job you did with the Watson\\\'s home and we were wondering if, when we\\\'re ready, you\\\'d be interested in flipping our house too?\r\nAlso, our 2 older boys would like to keep the yard next door mowed for you until the house sells.\r\n\r\nThank you,\r\nLori Edwards','2021-08-03 00:32:05'),(55,1,'','Granita Ashley Deas','','','foxxyheart@yahoo.com','7043108985','','','','','','','','I\'m a tennant','','','https://lantern-realty.com/agent/rodney-queen/',834,'agent_info','','','','','Hi Rodney Queen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-08-05 09:47:26'),(56,1,'','eric perry','','','supplementailemail1@gmail.com','','','','','','','','','Other','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Hi Tammy Fox, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. I\\\'m wondering how much our home is worth at 1402 Brantley rd in Kannapolis? Thank you.','2021-08-07 20:55:41'),(57,1,'','eric perry','','','supplementalemail1@gmail.com','','','','','','','','','','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Hi Tammy--sorry to waste your time--I found my answer. Thank you.\r\n\r\nEric','2021-08-07 22:39:00'),(58,1,'','Sarah Siddique','','','kostenfam@gmail.com','7046160723','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/liz-hallman/',1398,'agent_info','','','','','Hello,\r\nI’d like to see if I can come view the following property when it comes available for showing soon: \r\n1019 Mistywood Lane, Concord, NC.  \r\n\r\nThank you!\r\nSarah & Noman Siddique','2021-08-11 22:34:27'),(59,1,'','Christine Laramee MD','','','clarameemd@gmail.com','7276393962','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-arader/',1895,'agent_info','','','','','Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans!','2021-08-16 14:56:30'),(60,1,'','Christine Laramee MD','','','clarameemd@gmail.com','7276393962','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-arader/',1895,'agent_info','','','','','Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans!','2021-08-16 14:56:49'),(61,1,'','Christine Laramee MD','','','clarameemd@gmail.com','7276393962','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-arader/',1895,'agent_info','','','','','Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans!','2021-08-16 14:56:57'),(62,1,'','Mia ONeil','','','arbri56@yahoo.com','8284174819','','','','','','','','','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. There is a piece of land off Zion hill road marion NC, between Wilson farm drive and Hardrock road. I was wondering how much land and the price.  Thanks.  Please email.','2021-08-16 17:55:53'),(63,1,'','Michael Helms','','','jmichaelhelms@gmail.com','7046347432','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-09-09 11:04:47'),(64,1,'','Alicia Thomas','','','atkinsalicia85@gmail.com','7049616778','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-09-10 04:43:50'),(65,1,'','Cristy Morgan','','','cristy0357@yahoo.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/evonne-caudill/',549,'agent_info','','','','','Hi Evonne Caudill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help I am Ryan and Skylar\\\'s mom and I am looking somewhere between Oakboro and Concord I found this property I didn\\\'t know if I could possible look at it or if you could find more properties   2281 Munsen Rd | $189,999 | 3 Beds 2 Baths you can just email me back I phone is not working at the moment.','2021-09-14 04:06:39'),(66,1,'','Karen','','','kfran@me.com','919-802-7512','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/lynnette-gearing/',393,'agent_info','','','','','Hi Lynnette, i was looking at the land on 6770 zion church road, concord. The listing says it has a WSACC outfall crossing it. Does this mean a sewer line crosses the property? Do you have a platt to show where this line is? Any other contor maps or flood plains that you can send me? We live in Chapel Hill and are interested in the property but would like these questions answered before we drive down. Thank you','2021-09-24 01:45:58'),(67,1,'','David pratt','','','dpconcord@aol.com','7047962193','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Murray location \r\nIs the water deep enough for a pontoon. I’ve seen how the dock is tied to a tree I know it needs repair. But do you know how deep it is at the end of the cove?\r\nThanks \r\n\r\nSent from my iPhone\r\nDavid','2021-10-05 19:29:30'),(68,1,'','Lara O’Guin','','','laraoguin117@gmail.com','704-798-3553','','','','','','','','I\'m a tennant','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Hi Paula! My husband Jared and I are currently living in Salisbury, and we are looking to sell in hopes of purchasing some land to build our forever home on! I can be reached by email or by phone any time of day. Thank you for your time and I look forward to speaking with you!','2021-10-10 13:33:16'),(69,1,'','Kristin Beach','','','luckydoglanddeals@gmail.com','6155892494','','','','','','','','Other','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','I am an investor with these properties under contract to purchase. My contract allows me to market it for sale on the MLS with plans of simultaneously closing. I\\\'ve already run a preliminary report with title and it is clear to close. At this time, I would like to bring on a real estate agent. I can offer to pay 6% commission with 3% to go to the seller\\\'s agent and 3% to the buyer\\\'s agent. Below, please find the APN, address and name on deed.  Please review and let me know your thoughts. I mainly need help to: \r\n1) Field phone calls from prospective buyers and get it under contract\r\n2) Oversee the property on sight: make recommendations, flag corners, put up a sign\r\n3) Assistance with contract to close arrangements via the title agent: Infinity Abstract and Title\r\n4) Property Marketing\r\n\r\n Acres / APN / Location / State / Name on Deed\r\nProperty #1:\r\nAcres: 7.44\r\nAPN: 6681-00-87-1168\r\nLocation: LONG CREEK LN - BRYSON CITY, NC 28713 \r\nCounty: NC-SWAIN COUNTY\r\nName on Deed: Patrick Ross\r\n\r\nProperty #2:\r\nAcres: 12\r\nAPN: 6683-00-59-9654\r\nLocation: GOVERNORS ISLAND RD - BRYSON CITY, NC 28713\r\nCounty: NC-SWAIN COUNTY\r\nName on Deed: Kenneth Woods','2021-10-18 17:54:48'),(70,1,'','Ioana Workman','','','ioanaworkman@gmail.com','321-652-5596','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-10-19 00:53:38'),(71,1,'','William Bass','','','wbass1968@gmail.com','7042231832','','','','','','','','Other','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-10-21 23:08:48'),(72,1,'','Denise Pate-SisBro Ventures, llc','','','denisepate42@gmail.com','843-601-2595','','','','','','','','Other','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Hi Tammy,\r\nWas stunned to learn you had left APM but hope you are doing well in this new endeavor. Would like to speak to you concerning value/listing on one of the houses. Call when you have a moment. Thanks','2021-10-25 22:25:14'),(73,1,'','Denise Pate-SisBro Ventures, llc','','','denisepate42@gmail.com','843-601-2595','','','','','','','','Other','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Hi Tammy,\r\nWas stunned to learn you had left APM but hope you are doing well in this new endeavor. Would like to speak to you concerning value/listing on one of the houses. Call when you have a moment. Thanks','2021-10-25 22:25:26'),(74,1,'','Alicia woodward','','','Aliciadrealestate@gmail.com','7042240448','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Hi Deana Petty, I spoke with an agent at Latern and would love to learn more about you offer your agents! Thank you!','2021-10-27 20:14:12'),(75,1,'','Joe Hicks','','','buffettmanjoe@gmail.com','704-572-2660','','','','','','','','Other','','','https://lantern-realty.com/agent/paige-wiser/',1507,'agent_info','','','','','65Willow St. \r\nHey Paige. I forgot to ask about when Don plans on changing utilities over to him. I don’t want to cut them off before he has a chance to put them in his name.','2021-11-03 18:41:36'),(76,1,'','Bill Birckhead','','','billbirckhead@gmail.com','704-490-1600','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge\r\n\r\n◦ I\\\'m very interested in this property but see it has a Pending offer. If this offer falls through or if I can make an offer on it please let me know. I have cash and,or financing already approved. \r\nThank you\r\nBill\r\n\r\n8614 State Highway 89 W\r\nWestfield NC','2021-11-05 20:55:11'),(77,1,'','Austin Burleson','','','furrlindsey_030189@yahoo.com','7044386787','','','','','','','','Other','','','https://lantern-realty.com/agent/jody-clodfelter/',598,'agent_info','','','','','Hey Jody,  its Austin at 888 Sorrel Lane Oakboro Sean Blacks son.  We are weighing options of possibly selling our home and would like to know if you have a round about idea of what it would bring in the current market.  We have added a Fireplace, laminet flooring, quartz countertops, fenced in back yard, large deck, and porched in area.  The rest of the house is stock I guess you could say.  Let me know what you think when you have a minute.\r\n\r\nThanks,\r\n\r\nAustin','2021-11-11 17:06:34'),(78,1,'','Ray Holt','','','ray.holt@holtnc.com','704.634.9591','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','Chris,\r\nI am looking for larger pieces of land served by municipal water and sanitary sewer in Salisbury.  Would you either help me or refer me to your land broker?\r\n\r\nThank you for your help.\r\n\r\nRay','2021-11-30 21:27:34'),(79,1,'','TEST','','','test@gmail.com','7045551234','','','','','','','','','','','https://lantern-realty.com/agent/ivan-henrickson/',1551,'agent_info','','','','','Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-12-01 14:56:32'),(80,1,'','Patricia Campbell','','','glory_grace@windstream.net','7048551823','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/lynnette-gearing/',393,'agent_info','','','','','Hi Lynnette.\r\n\r\nWe are interested in your listing at 201 JACKSON STREET, MOUNT PLEASANT, NC 28124.  Are there any pictures of the inside?  We\\\'re planning on downsizing early next year and are now looking seriously.\r\n\r\nThanks.','2021-12-08 21:14:37'),(81,1,'','Juan Almaras','','','juanalmaras6@gmail.com','9805655595','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivonne-erion/',808,'agent_info','','','','','Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in advice and guidance into buying a home. I have heard great things about you from families that you have helped in their process of buying their new homes. Thank you for your time it is greatly appreciated. \r\n\r\nGod Bless.','2021-12-10 00:10:35'),(82,1,'','Juan Almaras','','','juanalmaras6@gmail.com','9805655595','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivonne-erion/',808,'agent_info','','','','','Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in starting to make plans for buying a home as well as guidance and advice. We have heard great things about you helping families in the community by making their dreams come true with their new home. \r\n\r\nGod Bless and thank you\r\n- Juan Almaras y Lisa Navarrete','2021-12-15 19:20:43'),(83,1,'','Juan Almaras','','','juanalmaras6@gmail.com','9805655595','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivonne-erion/',808,'agent_info','','','','','Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in starting to make plans for buying a home as well as guidance and advice. We have heard great things about you helping families in the community by making their dreams come true with their new home. \r\n\r\nGod Bless and thank you\r\n- Juan Almaras y Lisa Navarrete','2021-12-15 19:21:29'),(84,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:28:52'),(85,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:29:30'),(86,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:30:25'),(87,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/brenda-brown/',528,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:31:25'),(88,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/dale-bullock/',788,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:32:01'),(89,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/crystal-cauble/',380,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:32:41'),(90,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/evonne-caudill/',549,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:33:22'),(91,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/tan-crawford/',2169,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:33:53'),(92,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/jenna-cook/',1393,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:34:47'),(93,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/michael-davis/',801,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:35:25'),(94,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-drakulich/',383,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:36:16'),(95,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/ivonne-erion/',808,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:37:47'),(96,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/taylor-david-mcclure/',1510,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:08:53'),(97,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/ashley-ferlauto/',645,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:09:29'),(98,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/cecilia-maria-ferrari/',2082,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:10:16'),(99,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/erin-hyman/',2171,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:10:45'),(100,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/yira-garcia/',551,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:11:19'),(101,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/evelin-lisseth-hernandez/',2165,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:11:59'),(102,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/cathy-hager/',553,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:12:42'),(103,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/conard-haywood/',814,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:20:12'),(104,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/lezli-rae-leath/',2167,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:21:46'),(105,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:22:19'),(106,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/liz-hallman/',1398,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:22:45'),(107,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/stephanie-e-morgan/',2163,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:23:19'),(108,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/hosanna-hill/',555,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:23:53'),(109,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/melissa-jackling/',390,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:24:25'),(110,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/christine-jalynski/',476,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:24:52'),(111,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/priscilla-johnson/',819,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:25:26'),(112,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/kelly-keller/',503,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:26:08'),(113,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/misty-lynn-moss/',2086,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:27:20'),(114,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/melissa-lacroix/',424,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:28:14'),(115,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/dawn-lamb/',825,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:28:50'),(116,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/sandi-laney/',427,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:29:31'),(117,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/amanda-lambert/',1402,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:30:12'),(118,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/helen-matthews/',481,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:30:41'),(119,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/lindsey-mccauley/',400,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:31:47'),(120,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/connie-merrell/',828,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:32:50'),(121,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:33:24'),(122,1,'','Dana Coulston','','','dana.coulston@yahoo.com','8436942577','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/tricia-strickland/',620,'agent_info','','','','','Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help I seen that 805 Gold Hill Ave in Rockwell is about to come available and I really love it and it is in my kids school district so was wondering when is it available to look at? If you could let me know that would be great thanks!','2021-12-20 19:13:04'),(123,1,'','Sean Ryan','','','sjryan@charter.net','8283183041','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/doreen-shaughnessy/',2029,'agent_info','','','','','Hi Doreen,\r\nMy wife and I are interested in your listing at 3 Northview Ln. We were wondering when the listing would be active and when we could schedule a showing. She is a licensed agent with Carolina Mountain sales. \r\n\r\nThanks,\r\nSean','2022-01-06 14:49:01'),(124,1,'','Cierra Young','','','cicinicole88@gmail.com','9803308622','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-lambert/',1402,'agent_info','','','','','Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help with a property I saw listed for sale.','2022-01-11 21:49:25'),(125,1,'','Michele Bailey','','','cookingwithmichele@hotmail.com','7047017128','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/karie-sturdevant/',2023,'agent_info','','','','','Hi Karie Arem, I saw your profile on Lantern Realty and Development and wanted to see if I can get some help. I have found a home I am interested in. I have not been preapproved and not really sure what steps to take. I was given your information from Nathan Yon whose brother in Law David Earnhardt used you and gave me your name. I hope to hear from you soon.','2022-01-21 19:16:28'),(126,1,'','Toby Russell with north group real estate.','','','tobymrussell@gmail.com','3366891702','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/brianne-watson/',563,'agent_info','','','','','Hi Brianne, I had a client looking at 707 Frontier cir. I’m not in your mls but could you tell me if you have the room sizes on it and are there any deed restrictions?','2022-01-24 13:45:34'),(127,1,'','Erica Zimmerman','','','ezimm930@gmail.com','5164298275','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/april-bird/',565,'agent_info','','','','','Hi April, my friend Christina Tepedino gave me your phone number. I currently live on Long Island in New York with my husband and son but we wanted to start looking down in North Carolina and possibly South Carolina to\r\nGet an idea on areas; my husband retires in two years and we are done with NY lol. \r\nWe really don’t know any areas down there—we are looking to be more rural with more land. And a good school district…Would you be able to help us?\r\n\r\nThanks! \r\nErica','2022-01-28 23:45:35'),(128,1,'','Devon Goolsby','','','dgoolsby624@gmail.com','7046173114','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sherri-wiles-argabright/',1408,'agent_info','','','','','Hi Sherri Wiles Argabright, I was recommended to reach out to you as I start my home search in the Concord/Kannapolis area! I am a first-time home buyer. I am moving from Hickory, NC to the Concord/Kannapolis area around June and looking to buy. I am preferably looking to settle in the Kannapolis area. \r\n\r\nI would love to chat and see if working together would be a good fit! \r\n\r\nThank you! \r\nDevon Goolsby','2022-01-31 01:14:56'),(129,1,'','Michael Key','','','michaelkey24@yahoo.com','704-640-9767','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Hi Pam Lambert, I saw your name on a sign in our development. You actually helped us buy our first home. We are looking for a change and hope you can help.','2022-02-06 01:21:34'),(130,1,'','Karen Petersen','','','kpetersen@healyrealtors.com','6097581776','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/conard-haywood/',814,'agent_info','','','','','Hi Conard Haywood, I saw your listing at 2300 Heritage and wanted to see if i can get some help. I am a realtor with Berkshire Hathaway Home Services Healy Realtors in NJ, and I am looking for a new home for our extended family in the Concord area. I was wondering if this property has any other photos, mostly of the inside of the home? Also, do you know why the previous deal fell through? I am not looking to subdivide, but clear the land and build a small horse farm, so if you can explain the property lines it would also be helpful. Thanks! God bless','2022-02-10 01:03:24'),(131,1,'','Chase Winslow','','','chasewinslow1@gmail.com','3363838275','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/melissa-yates/',579,'agent_info','','','','','Hi Melissa, I am extremely interested in a property that you have just listed in Lake James.  If you can please give me a call at your earliest convenience, that would be much appreciated.  My cell is 336-383-8275, you are welcome to call me at any time.  I look forward to speaking with you!','2022-02-11 02:04:50'),(132,1,'','Kimberly Sanchez','','','kpv237@gmail.com','3862906696','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim Sadler, I saw a property that you are currently showing (255 Winding Way, Salisbury, NC 28147). I am interested, and wondering what the current status of the property is. Please reach out at your convenience.','2022-02-13 19:07:26'),(133,1,'','Stephanie Stallings','','','stephaniemkuntz@gmail.com','5714201889','','','','','','','','','','','https://lantern-realty.com/agent/kelly-robinson/',836,'agent_info','','','','','Hi Kelly!\r\n\r\nI was given your info from my cousin Sydney Falls! We are looking into moving to Kannapolis in a little less than a year. we are considering new builds but want some help in that contract process (looking for fixed contracts) and just some general info on the area and what the next year might look like. \r\n\r\nlooking forward to connecting!','2022-02-14 20:17:14'),(134,1,'','Stephanie Stallings','','','stephaniemkuntz@gmail.com','5714201889','','','','','','','','','','','https://lantern-realty.com/agent/kelly-robinson/',836,'agent_info','','','','','Hi Kelly!\r\n\r\nI was given your info from my cousin Sydney Falls! We are looking into moving to Kannapolis in a little less than a year. we are considering new builds but want some help in that contract process (looking for fixed contracts) and just some general info on the area and what the next year might look like. \r\n\r\nlooking forward to connecting!','2022-02-14 20:17:24'),(135,1,'','Sandy Rivera (Braswell)','','','diepparivera@gmail.com','7045165448','','','','','','','','','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Hi Deana, It\\\'s Sandy. I need advice and, of course, you\\\'re the first person I\\\'m turning to. Our renter, Faye Brown, passed away last month at the age of 99 ... just 2 months shy of her 100th birthday. We loved her and will miss her. Now I need to decide what to do:  stay in my side of the duplex, renovate and rent out the other side; or do some repairs to both sides and sell. (Selling and buying may be tough right now; property values have increased a lot!)  Could you please call me to advise and help me make a decision on what\\\'s best for me at this time?  My number is 704-516-5448. Would be nice to talk to you about the duplex and your family, kids, Melanie and Ricky.  Regards, Sandy','2022-02-17 16:37:17'),(136,1,'','Joseph Steele','','','joseph.w.steele@gmail.com','5615076065','','','','','','','','Other','','','https://lantern-realty.com/agent/liz-hallman/',1398,'agent_info','','','','','Hi Liz Hallman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-02-22 22:34:32'),(137,1,'','Mike Davis','','','mike.d@kw.com','','','','','','','','','','','','https://lantern-realty.com/agent/courtney-sloan-holshouser/',1449,'agent_info','','','','','Hey Courtney. Regarding your listing at 494 Vera Drive. Does it have a crawl space?\r\n\r\nThanks, Mike','2022-02-25 19:27:50'),(138,1,'','wendy compton','','','comptonw777@gmail.com','8432901840','','','','','','','','','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge, I am looking for your cleaning service for my airbnb now. We emailed before and I had someone else that wanted to do this from my family. They have become very busy and I need additional help. If you are still interested please email me. \r\nThanks, Wendy','2022-03-03 14:31:27'),(139,1,'','Jennifer','','','jennifer@femexec.com','910 431 6334','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','I am interested in 17356 Randall\\\'s ferry.','2022-03-04 03:43:03'),(140,1,'','Robert Schupp','','','slyweasl@carolina.rr.com','704-469-5656 (VP) for the deaf','','','','','','','','Other','','','https://lantern-realty.com/agent/deanna-miltz/',558,'agent_info','','','','','Hi Deanna Miltz, I am the treasurer for Oakleaf Homeowners Assn. I spoke with Anita Camphen ?(spelling may be incorrect due to her cursive writing) . Anyway I’m contacting you to see if your agency contacted our HOA and IF a “right-of-first-refusal” form was signed between Anita and our President Patrick Brown before the closing ? Also I was not informed of this sale and as such I was not given the opportunity to send and invoice of 200.00 accessed to the BUYER for a “document fee” according to our by-laws . Can you reply by email please if these 2 transactions were completed before the closing on unit 617 Camrose Circle NE , Concord NC 28025 . If I don’t hear from you then I’ll contact Knipp Law Office at their address and phone number to verify what exactly was done prior to the sale of this unit which was sold by Jim & Willene Price. Thank you for your time and help …. Robert Schupp','2022-03-09 20:38:24'),(141,1,'','Anon Ymous','','','Voodoo@yahoo.com','704-567-9125','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jerry-lambert/',1405,'agent_info','','','','','Hi Jerry,\r\n\r\nThought I\\\'d let you know(since you\\\'re not smart enough to figure it out) that you missed the absolute best offer you would have received on a Concord home for sale that ended yesterday(3.13.22) only because of your arrogant, self-righteous, rude & \\\"that\\\'s the buyer\\\'s problem\\\" attitude!\r\n\r\nI\\\'m sure I\\\'m not the first person to tell you this & know I won\\\'t be the last!!! So say hello to lost opportunities & #instantkarma.','2022-03-14 12:28:26'),(142,1,'','Anon Ymous','','','Voodoo@yahoo.com','704-567-9125','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jerry-lambert/',1405,'agent_info','','','','','Hi Jerry,\r\n\r\nThought I\\\'d let you know(since you\\\'re not smart enough to figure it out) that you missed the absolute best offer you would have received on a Concord home for sale that ended yesterday(3.13.22) only because of your arrogant, self-righteous, rude & \\\"that\\\'s the buyer\\\'s problem\\\" attitude!\r\n\r\nI\\\'m sure I\\\'m not the first person to tell you this & know I won\\\'t be the last!!! So say hello to lost opportunities & #instantkarma.','2022-03-14 12:28:35'),(143,1,'','Louisa Casarez','','','lcasarez042@gmail.com','7044601987','','','','','','','','Other','','','https://lantern-realty.com/agent/amanda-lambert/',1402,'agent_info','','','','','Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help, regarding a rental in Gastonia In Riverwood Planation','2022-03-15 13:23:02'),(144,1,'','Khari D. Williams','','','Hondo1899@gmail.com','7065339371','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brittney-steele/',2274,'agent_info','','','','','Hi Brittney Steele, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help locating an investment property. My name is Khari D. Williams and I am energetically looking for an investment property. I\\\'m seeking a Single-family or multi-family property with a price point between 60-200k. Willing to pay the higher end for a multi-family home.\r\n \r\nI have my pre-approval letter in hand and will forward you a copy if you are willing to work with me. \r\n\r\nThank you for your time','2022-03-17 08:35:17'),(145,1,'','Layne','','','lhinson8662@cms.k12.nc.us','','','','','','','','','Other','','','https://lantern-realty.com/agent/susan-starnes/',617,'agent_info','','','','','Hi Grammy!!!!!!','2022-03-21 01:47:09'),(146,1,'','Richard Ross','','','richardaross@yahoo.com','18175646467','','','','','','','','','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','Hi Chris , is there a floorplan available for 508 Main St in Kannapolis?  Thank you!','2022-03-24 21:16:11'),(147,1,'','Carol Harris','','','cah2451@aol.com','7046401160','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/marguerite-keller/',576,'agent_info','','','','','Hi Marguerite Keller, \r\nWe are very interested in the building lot located in Summerfield','2022-03-27 13:44:11'),(148,1,'','Anjali Wilson','','','wilsonanjali0@gmail.com','7047462778','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Hi Deana, I’m a new agent looking into affiliating with your from the current one I am at. I actually work with Lissette in Concord office. She recommended I reach out to you as she’s pursuing her real estate license and get a little more information. I would love to hear back from you at your earliest convenience. Thank you!','2022-03-30 15:15:37'),(149,1,'','Brian & Natalie Gray','','','natalie.gray86@yahoo.com','7042132450','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim Sadler, wanted to see if you could come look at our house 145 Winding Way Salisbury, NC 28147. We are thinking about selling.','2022-03-31 00:07:01'),(150,1,'','Noah Malpass','','','noah.malpass@gmail.com','4342037706','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/courtney-sloan-holshouser/',1449,'agent_info','','','','','Hi Courtney! \r\nI saw your property on 2025 brewer rd and think it has a lot of potential for a flip. What can you tell me as far as any damages on the inside, motivation of the sellers, and how much the estimated ARV in that neighborhood would be?\r\n\r\nThank you\r\n\r\nNoah Malpass','2022-04-04 10:24:02'),(151,1,'','Denise Louise Bump','','','denise@dbump.com','3367849941','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/courtney-sloan-holshouser/',1449,'agent_info','','','','','Good morning, Courtney.\r\nI am a real estate investor and saw one of your listings that I would be interested in seeing (2025 Brewer Rd). I have flipped 5 properties over the last few years and I have been looking for a new project. I would have a hard money lender for this project and provide a letter with proof of funds.','2022-04-04 13:10:04'),(152,1,'','Hunter Miller','','','hunter.miller87@outlook.com','9803650502','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jenna-cook/',1393,'agent_info','','','','','Hi Jenna Cook, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. Extremely interested in the Rimer property. Would be a cash offer. We are scheduled to come Thursday am at 9 am.','2022-04-05 02:08:25'),(153,1,'','Hunter Miller','','','hunter.miller87@outlook.com','9803650502','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/liz-hallman/',1398,'agent_info','','','','','Hi Liz Hallman, I saw your profile on LanterRealty and Development and wanted to see if i can get some help. I sent Jenna and email but extremely interested in the Rimer property. This would be a cash offer. Have an appointment at 9 am Thursday with my realtor.','2022-04-05 02:10:10'),(154,1,'','Stephen Copeland','','','copes370z@gmail.com','6785700689','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brianne-watson/',563,'agent_info','','','','','Hi Brianne Watson, I saw your listing for 0 Cloud Top Ln, Mooresville, NC 28115, $199k, for 5.677 acres, and wanted to know if the seller would be will to split the parcel down the stream and sell half? I will offer $100k for the property, and may have a buyer for the other half. I am a real buyer, please let me know. Im in a meeting until noon, but free after. Lets work out a deal either way. Thank you,\r\n-Stephen','2022-04-07 02:44:27'),(155,1,'','Michael King','','','TheKingSellsTheDream@gmail.com','7044503936','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Hi Wendell just wondering if you might have a few minutes to chat sometime?','2022-04-07 21:44:47'),(156,1,'','Michael King','','','TheKingSellsTheDream@gmail.com','7044503936','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Hi Wendell just wondering if you might have a few minutes to chat sometime?','2022-04-07 21:50:01'),(157,1,'','Wendy Roseman','','','wendyroseman@gmail.com','336-807-0442','','','','','','','','Other','','','https://lantern-realty.com/agent/brianne-watson/',563,'agent_info','','','','','Hey Brianne, this is Wendy Roseman, Michael\\\'s mom. Michael tells me you have your realtors license. We have a piece of land across from where Michael and Laura live that we\\\'d like to talk to you about selling.','2022-04-09 22:07:03'),(158,1,'','Tia Turner','','','tmturner70061@gmail.com','8049821070','','','','','','','','Other','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','YOUR BROKER COURTNEY HEDRICK.... BROKER IN CHARGE OF SPEEK, HER SON WILL KNOWINGLY AND DELIBERATELY SOLD ME A HOME IN WINSTON-SALEM WITH MOLD AND MILDEW AND DID NOT DISCLOSE IT. REALTORS SHOWING THE HOME TEXTED WILL WITH REMARKS AND PICS OF THE EVIDENCE. WILL\\\'S RESPONSE WAS \\\"THAT\\\'S INTERESTING.\\\" THE STATE IS INVESTIGATING MY COMPLAINT WE HAVE DOCUMENTAIION FROM REALTORS THAT WILL REFUSED TO LISTEN TO. HE COVERED THE MOLD PROBLEM UP!!!!\r\nHE FLED TO NYC AND I NOTIFIED HIS BOSS OF HIS DELIBERATE COVER UP AND SELLING ME THE HOME AS A DUAL AGENT WITH MOLD AND MILDEW, AND, THE FRIDGE, CHANDELIER AND COOKTOP WERE STOLEN. HIS EXPLANATION THEY SAWED THE LOCK BOX OFF AND CAME IN THE BASEMENT. WILL HEDRICK REFUSED TO DISCLOSE THE POLICE REPORT.\r\nHE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. I INFORMED HER OF THE GROSS NEGLIGENCE AND MISCONDUCT OF WILL WITH THE DETAILS AND DOCUMENTATION.\r\n\r\n HE WAS IMMEDIATLEY LET GO IN NYC BY THE CANDICE MILANO TEAM. MYSELF AN OTHER REALTORS TALKED TO THE BOSSES.\r\n\r\n HEDRICK DIDN\\\'T WANT OR ENCOURAGE ME TO HAVE AN INSPECTION. HE SAID RON AND HE WERE SO HAPPY I DID NOT DO AND INSPECTION.\r\n\r\nCOURTNEY HEDRICK WITH WILL ARE DISPICABLE REALTORS TO CON ME KNOWING THERE WAS MOLD AND MILDEW AND A HOST OF OTHER VERY, VERY, VERY BAD PROBLEMS. TOO MANY TO LIST.\r\n HEDRICK IS A VERY UNETHICAL, CON MAN AND THE REALTORS CONFIRMED THAT FACT. YOU SHOULD KNOW WHAT THE HEDRICK TEAM DOES TO SUCK MONEY OUT OF BUYERS, ABSOLUTELY TERRIBLE. HORRIBLE PEOPLE!!!!!! THE STATE AND LEGAL TEAM ARE INVESTIGATING THIS COUPLE ASSOCIATED WITH LANTERN REALTY.','2022-04-12 00:27:22'),(159,1,'','Tia Turner','','','tmturner70061@gmail.com','8049821070','','','','','','','','','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','PAULA,\r\nWILL HEDRICK A FORMER AGENT WITH YOUR AGENCY, AND COURTNEY HEDRICK ARE NOW IMPLICATED IN A STATE NC REAL ESTATE BOARD FOR NOT DISCLOSING MOLD/MILDEW/MOISTURE INTRUSION IN A HOME I BOUGHT FROM THEM IN JANUARY 2022. WILL WAS SEND TEXTS AND PICS BY REALTORS, IN PARTICULAR ROYDA TURMAN A WELL KNOWN WINSTON REALTOR THAT THE HOME HAD PROBLEMS IN SUMMER 2021. HE DENIED AND SAID \\\"THAT\\\'S INTERESTING.\\\" WILL HEDRICK IS A PATHOLOGICAL NARCSSTIC LIAR WHO LIES AND GROSSLY UNETHICAL!! HE LIED ABOUT EVERYTHING, AND HE IS TOTALLY INCOMPETENT AND STUPID. I HAVE FILED A COMPLAINT WITH THE STATE AND THEY HAVE AN INVESTIGATION. WILL AFTER HE CLOSED MY HOUSE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. ROYDA TURMAN, REALTOR AND I INFORMED CANDICE OF ALL THE MISDEEDS, LACK OF TRANSPARENCY, MADE UP SPEEK HOME INSPECTION WAIVER FORM, AND ALL HIS LIES, LIES AND UNETHICAL MISCONDUCT. WILL WAS IMMEDIATELY FIRED!!! MILANO INFORMED ME,\r\nHE STRONGLY TOLD ME NOT, NOT TO GET A HOME INSPECTION.ITS PERFECT THEY SAID!!\r\n AFTER I MOVED INTO THE HOUSE ITWAS HELL, WATER HEATER BROKEN, SEWER PUMP BROKEN. BROKEN HVAC HEATING FAN!!! LAST SUMMER WHEN WILL HAD THE PROPERTY, IT WAS BROKEN INTO. HE STATED THE LOCK BOX HAD BEEN SAWED INTO, 10K CHANDELIER, FRIDGE, AND COOKTOP TAKEN. HE MADE A POLICE REPORT. EVERYONE IN BENT TREE KNOWS IT WAS AN INSIDE JOB~~ HIS SQUARE FOOTAGE WAS INCORECT AND WHEN I GOT THE OFFICIAL APPRASIAL THE FOOTAGE  WAS WAY OFF!!!!! BE AWARE OF THE LYING HIGH LIABILTY HEDRICKS!!!!\r\nIF YOU NEED TO CALL ME FEEL FREE. TIA 8049821070','2022-04-14 14:45:06'),(160,1,'','Tia Turner','','','tmturner70061@gmail.com','8049821070','','','','','','','','','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','PAULA,\r\nWILL HEDRICK A FORMER AGENT WITH YOUR AGENCY, AND COURTNEY HEDRICK ARE NOW IMPLICATED IN A STATE NC REAL ESTATE BOARD FOR NOT DISCLOSING MOLD/MILDEW/MOISTURE INTRUSION IN A HOME I BOUGHT FROM THEM IN JANUARY 2022. WILL WAS SEND TEXTS AND PICS BY REALTORS, IN PARTICULAR ROYDA TURMAN A WELL KNOWN WINSTON REALTOR THAT THE HOME HAD PROBLEMS IN SUMMER 2021. HE DENIED AND SAID \\\"THAT\\\'S INTERESTING.\\\" WILL HEDRICK IS A PATHOLOGICAL NARCSSTIC LIAR WHO LIES AND GROSSLY UNETHICAL!! HE LIED ABOUT EVERYTHING, AND HE IS TOTALLY INCOMPETENT AND STUPID. I HAVE FILED A COMPLAINT WITH THE STATE AND THEY HAVE AN INVESTIGATION. WILL AFTER HE CLOSED MY HOUSE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. ROYDA TURMAN, REALTOR AND I INFORMED CANDICE OF ALL THE MISDEEDS, LACK OF TRANSPARENCY, MADE UP SPEEK HOME INSPECTION WAIVER FORM, AND ALL HIS LIES, LIES AND UNETHICAL MISCONDUCT. WILL WAS IMMEDIATELY FIRED!!! MILANO INFORMED ME,\r\nHE STRONGLY TOLD ME NOT, NOT TO GET A HOME INSPECTION.ITS PERFECT THEY SAID!!\r\n AFTER I MOVED INTO THE HOUSE ITWAS HELL, WATER HEATER BROKEN, SEWER PUMP BROKEN. BROKEN HVAC HEATING FAN!!! LAST SUMMER WHEN WILL HAD THE PROPERTY, IT WAS BROKEN INTO. HE STATED THE LOCK BOX HAD BEEN SAWED INTO, 10K CHANDELIER, FRIDGE, AND COOKTOP TAKEN. HE MADE A POLICE REPORT. EVERYONE IN BENT TREE KNOWS IT WAS AN INSIDE JOB~~ HIS SQUARE FOOTAGE WAS INCORECT AND WHEN I GOT THE OFFICIAL APPRASIAL THE FOOTAGE  WAS WAY OFF!!!!! BE AWARE OF THE LYING HIGH LIABILTY HEDRICKS!!!!\r\nIF YOU NEED TO CALL ME FEEL FREE. TIA 8049821070','2022-04-14 14:45:30'),(161,1,'','Amanda Schenk','','','schenkfamily1983@yahoo.com','3362664174','','','','','','','','Other','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge, \r\nWe just bought the house at 795 Murray Dr, Salisbury, NC.\r\nThere were a couple of Contractors Invoices left from the day before closing.  Also your last Duke Energy bill arrived.  Where would you like us to send these.','2022-04-18 01:20:17'),(162,1,'','Karen Condon','','','kc2100@live.com','3362029935','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Hi I saw your listing in Rockwell,\r\n$257,250\r\n 24.5 acre lot\r\nBasinger Kluttz Rd, Rockwell, NC 28138\r\nWondered if you had detailed info...Why not selling?  Super steep?  Any other issues?\r\nThanks Karen','2022-04-19 19:21:30'),(163,1,'','Karen Condon','','','kc2100@live.com','3362029935','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Hi I saw your listing in Rockwell,\r\n$257,250\r\n 24.5 acre lot\r\nBasinger Kluttz Rd, Rockwell, NC 28138\r\nWondered if you had detailed info...Why not selling?  Super steep?  Any other issues?\r\nThanks Karen','2022-04-19 19:27:19'),(164,1,'','Jordan Kennerly','','','jordank@steinfibers.com','7042247478','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Hi Deana, \r\n\r\nI wanted to reach out to you and inquire about your services, our your companies services, for a home for Kim and I. \r\n\r\nI look forward to hearing from you soon. \r\n\r\nThank you.','2022-04-20 01:25:40'),(165,1,'','Jim Ryan','','','coachryan9393@gmail.com','8157219150','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine, I was hoping to schedule a time to see the property at 356 Autumn Ln. in Tryon.  We will be back in town and available all day Sunday...or anytime after 4 next week.  Please let me know if any of those times work.   Thank you for your time.','2022-04-21 22:01:48'),(166,1,'','Sandra Matter','','','paintryder@yahoo.com','970-214-6886','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help on 356 Autumn Ln, Tryon, NC 28782 I would like to get more info.','2022-04-21 22:23:26'),(167,1,'','Sally','','','sab1.homes@outlook.com','17044338462','','','','','','','','Other','','','https://lantern-realty.com/agent/sabine-amoakon/',781,'agent_info','','','','','Hi Sabine Amoakon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-04-27 14:24:12'),(168,1,'','Cliff Parker','','','cnmparker@yahoo.com','425-315-6505','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-drakulich/',383,'agent_info','','','','','Hi Kim,\r\nI noticed that you recently had a townhome on the market in Harrisburg Towncenter.\r\nWe have a condo there that we are interested in selling.\r\nOur address is 6410 Kee Lane, Harrisburg, NC 28075\r\n\r\nHere is a little about our situation.\r\nThe condo is our \\\"second home\\\", we actually live in Charleston, SC.\r\nWe were using the condo to visit our son and grandkids, but they recently moved.\r\n\r\nIf working with us to sell our condo is something you would be able to do, please give me a call and we can discuss things further.\r\n\r\nThanks!\r\n\r\nCliff Parker\r\n(425)315-6505','2022-04-29 22:53:36'),(169,1,'','Byron Sherman','','','johnch9vs39@gmail.com','704-213-2286','','','','','','','','Other','','','https://lantern-realty.com/agent/jody-clodfelter/',598,'agent_info','','','','','Hi Jody Clodfelter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nI’m interested in the property @ Austin Rd. & Joe Rd. near Red Cross.  Sq. Footage, acreage, price, etc.  Thank you!','2022-05-14 16:23:43'),(170,1,'','Robin Matthews','','','rmatthews30@gmail.com','7047016434','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brittney-steele/',2274,'agent_info','','','','','Hi Brittney, we just drove by a vacate lot adjacent to Partridge Bluff or in that area. We don’t see it listed on the website. Can you provide some information about this lot? The street was “Wind Ridge” or similar. Thank you!','2022-05-21 00:06:24'),(171,1,'','Jameshia','','','jbaldwin@eckerd.org','Baldwin','','','','','','','','Other','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. I’m looking for a home to rent','2022-05-22 03:33:39'),(172,1,'','Noni Waite-Kucera','','','noni@enf.org','336-761-1040','','','','','','','','Other','','','https://lantern-realty.com/agent/casey-paige-maness/',2079,'agent_info','','','','','Hello Casey,\r\nI am the Executive Director of Eagle\\\'s Nest Foundation and our campus is adjacent to the house you are listing at 332 Hart Rd., Pisgah Forest.  I sent a message through Zillow but wasn\\\'t sure if that would make it to you.   After conferring with our Board of Trustees we would like to request that you adjust the property description to not include the mention of Eagle\\\'s Nest Camp or our conservation easement. Our campus is home to a summer camp and school and there is no public access.  We don\\\'t want potential buyers to think there may be walking access on our campus that is busy with young people night and day.  I hope you will make this consideration and certainly I am happy to discuss with you over the phone.  I can be reached at 336-761-1040 ext. 102.  Many thanks, Noni','2022-05-25 20:31:29'),(173,1,'','Esteban','','','alfa.thinking@gmail.com','Alfaro','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Hello Paula, saw your listing for a lot on high rock lake address is 1026 Emerald Bay Dr. Salisbury NC. Would like o know if the HOA will allow short term rentals.','2022-05-28 17:25:44'),(174,1,'','Sandy Helms','','','sandyhelms68@yahoo.com','704-4410384','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nCan you tell me how this property is zoned.\r\nThank you','2022-05-31 13:35:16'),(175,1,'','Austin Freeman','','','Austinf526@gmail.com','7047836735','','','','','','','','Other','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Hello my name is Austin Freeman, I was recommended to you from my uncle Scott Barbee. I have two lots in Kannapolis, NC that I hoping to put on the market in July as was hoping to get a market appraisal and potentially list it. The properties are 2489 Forrestbrook Dr, Kannapolis, NC, 28083 (0.97 acres) and 2508 Forrestbrook Dr, Kannapolis, NC, 28083 (18 Acres). If you would give me a call at 704-783-6735 or email me back at Austinf526@gmail.com so we can discuss further. Thank you','2022-06-03 00:17:41'),(176,1,'','Jude DeVirgiliis','','','judecarter828@gmail.com','828.964.5174','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, I\\\'m Sandy Devirgiliis\\\' child and we were looking at some land that came up for sale and was hoping you could help us figure out if it\\\'s a good purchase for building our home on. It\\\'s 8 silver long road, Asheville NC.','2022-06-03 21:33:02'),(177,1,'','Walter','','','bundyfive@gmail.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amy-bundy/',2283,'agent_info','','','','','Hi Amy Bundy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-06 21:04:13'),(178,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:44:56'),(179,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katie-abell/',1904,'agent_info','','','','','Hi Katie Abell, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:45:30'),(180,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sabine-amoakon/',781,'agent_info','','','','','Hi Sabine Amoakon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:46:10'),(181,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/casey-barber/',416,'agent_info','','','','','Hi Casey Barber, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:46:36'),(182,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/cheryl-baxter/',785,'agent_info','','','','','Hi Cheryl Baxter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:47:00'),(183,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amy-bundy/',2283,'agent_info','','','','','Hi Amy Bundy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:47:33'),(184,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/toni-benton/',546,'agent_info','','','','','Hi Toni Benton, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:48:09'),(185,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/annie-boger/',111,'agent_info','','','','','Hi Annie Boger Kamp, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:48:34'),(186,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/elizabeth-brown/',126,'agent_info','','','','','Hi Elizabeth Brown, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:48:56'),(187,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/dale-bullock/',788,'agent_info','','','','','Hi Dale Bullock, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:49:44'),(188,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/crystal-cauble/',380,'agent_info','','','','','Hi Crystal Cauble, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:50:36'),(189,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jenna-cook/',1393,'agent_info','','','','','Hi Jenna Cook, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:50:58'),(190,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/tan-crawford/',2169,'agent_info','','','','','Hi Tan Crawford, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:51:27'),(191,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/evonne-caudill/',549,'agent_info','','','','','Hi Evonne Caudill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:51:45'),(192,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jessica-eudy/',2709,'agent_info','','','','','Hi Jessica Eudy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:52:13'),(193,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/michael-davis/',801,'agent_info','','','','','Hi Michael Davis, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:52:44'),(194,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kim-drakulich/',383,'agent_info','','','','','Hi Kim Drakulich, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:53:04'),(195,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivonne-erion/',808,'agent_info','','','','','Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:56:42'),(196,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amy-evans/',135,'agent_info','','','','','Hi Amy Evans, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:00:26'),(197,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/taylor-david-mcclure/',1510,'agent_info','','','','','Hi Taylor David McClure, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:00:46'),(198,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/cecilia-maria-ferrari/',2082,'agent_info','','','','','Hi Cecilia Maria Ferrari, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:01:05'),(199,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/erin-hyman/',2171,'agent_info','','','','','Hi Erin Hyman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:01:28'),(200,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/yira-garcia/',551,'agent_info','','','','','Hi Yira Garcia, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:01:47'),(201,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sarah-grace-horn/',2308,'agent_info','','','','','Hi Sarah Grace Horn, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:02:09'),(202,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/evelin-lisseth-hernandez/',2165,'agent_info','','','','','Hi Evelin lisseth Hernandez, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:02:33'),(203,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/lynnette-gearing/',393,'agent_info','','','','','Hi Lynnette Gearing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:02:57'),(204,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/cathy-hager/',553,'agent_info','','','','','Hi Cathy Hager, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:03:15'),(205,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/conard-haywood/',814,'agent_info','','','','','Hi Conard Haywood, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:03:40'),(206,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/lezli-rae-leath/',2167,'agent_info','','','','','Hi Lezli Rae Leath, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:04:02'),(207,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Hi Tammy Fox, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:05:04'),(208,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/liz-hallman/',1398,'agent_info','','','','','Hi Liz Hallman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:05:46'),(209,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/stephanie-e-morgan/',2163,'agent_info','','','','','Hi Stephanie E Morgan, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:06:05'),(210,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/hosanna-hill/',555,'agent_info','','','','','Hi Hosanna Hill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:06:28'),(211,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/melissa-jackling/',390,'agent_info','','','','','Hi Melissa Jackling, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:06:54'),(212,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/christine-jalynski/',476,'agent_info','','','','','Hi Christine Jalynski, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:07:32'),(213,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kelly-keller/',503,'agent_info','','','','','Hi Kelly Keller, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:08:00'),(214,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/rochelle-shanae-ogburn/',1907,'agent_info','','','','','Hi Rochelle Shanae Ogburn, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:08:26'),(215,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/misty-lynn-moss/',2086,'agent_info','','','','','Hi Misty Lynn Moss, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:08:46'),(216,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/melinda-r-mesimerr/',2711,'agent_info','','','','','Hi Melinda R Mesimerr, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:09:03'),(217,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/melissa-lacroix/',424,'agent_info','','','','','Hi Melissa LaCroix, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:09:28'),(218,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/dawn-lamb/',825,'agent_info','','','','','Hi Dawn Lamb, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:09:48'),(219,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-lambert/',1402,'agent_info','','','','','Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:13:24'),(220,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/helen-matthews/',481,'agent_info','','','','','Hi Helen Robb, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:13:46'),(221,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/lindsey-mccauley/',400,'agent_info','','','','','Hi Lindsey McCauley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:14:07'),(222,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/connie-merrell/',828,'agent_info','','','','','Hi Connie Merrell, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:14:27'),(223,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:14:44'),(224,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/megan-owens/',2713,'agent_info','','','','','Hi Megan Owens, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:15:03'),(225,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-nutter/',484,'agent_info','','','','','Hi Julie Nutter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:15:21'),(226,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jason-overcash/',322,'agent_info','','','','','Hi Jason Overcash, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:15:54'),(227,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/laura-overcash/',430,'agent_info','','','','','Hi Laura Overcash, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:16:25'),(228,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/alicia-love-hammel/',1557,'agent_info','','','','','Hi Alicia Love Hammel, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:16:46'),(229,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/charity-k-meachum/',2280,'agent_info','','','','','Hi Charity K Meachum, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:17:04'),(230,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kelly-robinson/',836,'agent_info','','','','','Hi Kelly Robinson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:17:24'),(231,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/viviana-martinez-campos/',1677,'agent_info','','','','','Hi Viviana Martinez Campos, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:17:44'),(232,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim Sadler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:18:04'),(233,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/chelsi-sherin/',845,'agent_info','','','','','Hi Chelsi Sherin, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:19:07'),(234,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/holden-sides/',848,'agent_info','','','','','Hi Holden Sides, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:19:33'),(235,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/tricia-strickland/',620,'agent_info','','','','','Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:19:55'),(236,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/john-suther/',439,'agent_info','','','','','Hi John Suther, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:20:48'),(237,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/dawn-wetherbee/',1892,'agent_info','','','','','Hi Dawn Wetherbee, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:21:06'),(238,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brittney-steele/',2274,'agent_info','','','','','Hi Brittney Steele, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:21:24'),(239,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kimberly-trask/',560,'agent_info','','','','','Hi Kimberly Trask, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:21:41'),(240,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brianne-watson/',563,'agent_info','','','','','Hi Brianne Watson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:22:10'),(241,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/rick-wilson/',853,'agent_info','','','','','Hi Rick Wilson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:22:33'),(242,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Hi Wendell Rummage, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:22:56'),(243,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/todd-wooley/',444,'agent_info','','','','','Hi Todd Wooley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:23:14'),(244,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sherri-wiles-argabright/',1408,'agent_info','','','','','Hi Sherri Wiles Argabright, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:23:44'),(245,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/taina-shaw/',1682,'agent_info','','','','','Hi Taina Shaw, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:24:07'),(246,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/andrew-jason-wetherbee/',2722,'agent_info','','','','','Hi Andrew Jason Wetherbee, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:24:50'),(247,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/michele-tichnor/',1545,'agent_info','','','','','Hi Michele Tichnor, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:25:11'),(248,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amber-tsumas/',2027,'agent_info','','','','','Hi Amber Tsumas, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:25:37'),(249,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/colleen-viteri/',2716,'agent_info','','','','','Hi Colleen Viteri, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:26:13'),(250,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/robbie-bendig/',468,'agent_info','','','','','Hi Robbie Bendig, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:30:26'),(251,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sandra-bean/',1901,'agent_info','','','','','Hi Sandra Bean, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:30:40'),(252,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jessica-cloward/',470,'agent_info','','','','','Hi Jessica Cloward, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:31:00'),(253,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/carmady-king-kruger/',2173,'agent_info','','','','','Hi Carmady King Kruger, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:31:53'),(254,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/deborah-griffin/',573,'agent_info','','','','','Hi Deborah Griffin, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:32:12'),(255,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/melissa-shannon-morefield-valley/',2292,'agent_info','','','','','Hi Melissa Shannon Morefield-Valley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:32:34'),(256,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/marguerite-keller/',576,'agent_info','','','','','Hi Marguerite Keller, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:33:06'),(257,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/cheyenne-kidd/',822,'agent_info','','','','','Hi Cheyenne Kidd, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:33:35'),(258,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/bret-leonard/',497,'agent_info','','','','','Hi Bret Leonard, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:34:14'),(259,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/mitzi-mcdaniel-smith/',2720,'agent_info','','','','','Hi Mitzi Mcdaniel Smith, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:34:42'),(260,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/rodney-queen/',834,'agent_info','','','','','Hi Rodney Queen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:35:04'),(261,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/alexis-devine-smith/',2718,'agent_info','','','','','Hi Alexis Devine Smith, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:35:28'),(262,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/benjamin-allen-surratt/',2302,'agent_info','','','','','Hi Benjamin Allen Surratt, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:36:16'),(263,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/paige-wiser/',1507,'agent_info','','','','','Hi Paige Wiser, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:39:10'),(264,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/maranda-allen/',1514,'agent_info','','','','','Hi Maranda Allen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:39:32'),(265,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/karie-sturdevant/',2023,'agent_info','','','','','Hi Karie Arem, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:39:46'),(266,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/emily-chandler/',791,'agent_info','','','','','Hi Emily Chandler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:40:22'),(267,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/janice-cannon/',1523,'agent_info','','','','','Hi Janice Cannon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:40:31'),(268,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','','','','https://lantern-realty.com/agent/tracie-clark/',798,'agent_info','','','','','Hi Tracie Clark, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:40:50'),(269,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/david-g-cannon/',2021,'agent_info','','','','','Hi David G Cannon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:41:04'),(270,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/dawn-fisher/',2035,'agent_info','','','','','Hi Dawn Fisher, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:41:19'),(271,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','Hi Donna Hiner, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:41:31'),(272,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/aaron-forsyth/',2277,'agent_info','','','','','Hi Aaron Forsyth, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:41:58'),(273,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/deanna-miltz/',558,'agent_info','','','','','Hi Deanna Miltz, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:42:14'),(274,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/rick-rhew/',434,'agent_info','','','','','Hi Rick Rhew, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:42:45'),(275,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/hayley-rogers/',839,'agent_info','','','','','Hi Hayley Rogers, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:44:07'),(276,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jamie-stewart/',2289,'agent_info','','','','','Hi Jamie Stewart, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:44:25'),(277,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/susan-starnes/',617,'agent_info','','','','','Hi Susan Starnes, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:44:38'),(278,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/min-zhang/',623,'agent_info','','','','','Hi Min Zhang, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:44:56'),(279,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sheila-allison/',411,'agent_info','','','','','Hi Sheila Allison, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:45:09'),(280,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brenda-sue-bingham/',1520,'agent_info','','','','','Hi Brenda Bingham, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:45:24'),(281,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jody-clodfelter/',598,'agent_info','','','','','Hi Jody Clodfelter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:45:35'),(282,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:45:47'),(283,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/mike-fullerton/',604,'agent_info','','','','','Hi Mike Fullerton, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:46:04'),(284,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/chelsea-trexler/',1898,'agent_info','','','','','Hi Chelsea Trexler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:46:19'),(285,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/april-bird/',565,'agent_info','','','','','Hi April Bird, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:46:49'),(286,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivan-henrickson/',1551,'agent_info','','','','','Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:46:58'),(287,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/rachel-monrad/',831,'agent_info','','','','','Hi Rachel Monrad, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:49:10'),(288,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sarah-romesburg/',842,'agent_info','','','','','Hi Sarah Romesburg, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:49:27'),(289,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/dominique-walter/',1548,'agent_info','','','','','Hi Dominique Walter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:49:42'),(290,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ashley-uttecht/',1637,'agent_info','','','','','Hi Ashley Uttecht, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:49:55'),(291,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kathy-gurney/',2031,'agent_info','','','','','Hi Kathy Gurney, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:52:55'),(292,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-arader/',1895,'agent_info','','','','','Hi Julie Arader, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:53:57'),(293,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/colleen-crane/',2305,'agent_info','','','','','Hi Colleen Crane, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:54:33'),(294,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/iiona-kenrick/',2077,'agent_info','','','','','Hi IIona Kenrick, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:54:54'),(295,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/michael-farlow/',1640,'agent_info','','','','','Hi Micheal Farlow, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:55:15'),(296,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/casey-paige-maness/',2079,'agent_info','','','','','Hi Casey Paige Maness, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:55:37'),(297,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:56:30'),(298,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/doreen-shaughnessy/',2029,'agent_info','','','','','Hi Doreen Shaughnessy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:56:47'),(299,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jenna-stoll/',2084,'agent_info','','','','','Hi Jenna Stoll, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:57:16'),(300,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/claire-sonnier/',2033,'agent_info','','','','','Hi Claire Sonnier, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:58:36'),(301,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/stephanie-knight/',2298,'agent_info','','','','','Hi Stephanie Knight, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:58:49'),(302,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ashley-ferlauto/',645,'agent_info','','','','','Hi Ashley Ferlauto, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:59:00'),(303,1,'','Kaitlyn Goldsmith','','','ksammons42@gmail.com','7047875877','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim. We recently purchased a property put up by Lantern, 145 winding way in Salisbury. However, your lock box is still on the door. We plan on changing the locks soon, and I was wondering when you would be able to come and get the box?\r\n\r\nThanks,\r\nKatie','2022-07-01 01:19:10');
/*!40000 ALTER TABLE `lrwp_houzez_crm_leads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_houzez_crm_notes`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_notes` (
  `note_id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `belong_to` bigint(25) unsigned NOT NULL DEFAULT 0,
  `note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`note_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_notes`
--

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

--
-- Table structure for table `lrwp_houzez_crm_viewed_listings`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_viewed_listings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_viewed_listings` (
  `id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) DEFAULT NULL,
  `listing_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_viewed_listings`
--

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

--
-- Table structure for table `lrwp_houzez_currencies`
--

DROP TABLE IF EXISTS `lrwp_houzez_currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_currencies` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `currency_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_code` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_symbol` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_position` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'before',
  `currency_decimal` int(10) NOT NULL,
  `currency_decimal_separator` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '.',
  `currency_thousand_separator` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ',',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_currencies`
--

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

--
-- Table structure for table `lrwp_houzez_fields_builder`
--

DROP TABLE IF EXISTS `lrwp_houzez_fields_builder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_fields_builder` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL,
  `options` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fvalues` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_search` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `search_compare` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `placeholder` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_fields_builder`
--

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

--
-- Table structure for table `lrwp_houzez_search`
--

DROP TABLE IF EXISTS `lrwp_houzez_search`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_search` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `auther_id` mediumint(9) NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` longtext COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `url` longtext COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_search`
--

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

--
-- Table structure for table `lrwp_houzez_thread_messages`
--

DROP TABLE IF EXISTS `lrwp_houzez_thread_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_thread_messages` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `created_by` mediumint(9) NOT NULL,
  `thread_id` mediumint(9) NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `attachments` longtext COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_thread_messages`
--

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

--
-- Table structure for table `lrwp_houzez_threads`
--

DROP TABLE IF EXISTS `lrwp_houzez_threads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_threads` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `sender_id` mediumint(9) NOT NULL,
  `receiver_id` mediumint(9) NOT NULL,
  `property_id` mediumint(9) NOT NULL,
  `seen` mediumint(9) NOT NULL,
  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_threads`
--

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

--
-- Table structure for table `lrwp_links`
--

DROP TABLE IF EXISTS `lrwp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_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_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_links`
--

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

--
-- Table structure for table `lrwp_mec_dates`
--

DROP TABLE IF EXISTS `lrwp_mec_dates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_mec_dates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` int(10) NOT NULL,
  `dstart` date NOT NULL,
  `dend` date NOT NULL,
  `tstart` int(11) unsigned NOT NULL DEFAULT 0,
  `tend` int(11) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `post_id` (`post_id`),
  KEY `tstart` (`tstart`),
  KEY `tend` (`tend`)
) ENGINE=MyISAM AUTO_INCREMENT=712 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_mec_dates`
--

LOCK TABLES `lrwp_mec_dates` WRITE;
/*!40000 ALTER TABLE `lrwp_mec_dates` DISABLE KEYS */;
INSERT INTO `lrwp_mec_dates` VALUES (1,1131,'2020-10-23','2020-10-25',1603440000,1603648800),(2,1132,'2020-10-18','2020-10-18',1603008000,1603044000),(3,1132,'2020-10-21','2020-10-21',1603267200,1603303200),(4,1132,'2020-10-24','2020-10-24',1603526400,1603562400),(5,1132,'2020-10-27','2020-10-27',1603785600,1603821600),(6,1132,'2020-10-30','2020-10-30',1604044800,1604080800),(7,1132,'2020-11-02','2020-11-02',1604304000,1604340000),(8,1132,'2020-11-05','2020-11-05',1604563200,1604599200),(9,1132,'2020-11-08','2020-11-08',1604822400,1604858400),(10,1132,'2020-11-11','2020-11-11',1605081600,1605117600),(11,1132,'2020-11-14','2020-11-14',1605340800,1605376800),(12,1132,'2020-11-17','2020-11-17',1605600000,1605636000),(13,1132,'2020-11-20','2020-11-20',1605859200,1605895200),(14,1132,'2020-11-23','2020-11-23',1606118400,1606154400),(15,1132,'2020-11-26','2020-11-26',1606377600,1606413600),(16,1132,'2020-11-29','2020-11-29',1606636800,1606672800),(17,1132,'2020-12-02','2020-12-02',1606896000,1606932000),(18,1132,'2020-12-05','2020-12-05',1607155200,1607191200),(19,1132,'2020-12-08','2020-12-08',1607414400,1607450400),(20,1132,'2020-12-11','2020-12-11',1607673600,1607709600),(21,1132,'2020-12-14','2020-12-14',1607932800,1607968800),(22,1132,'2020-12-17','2020-12-17',1608192000,1608228000),(23,1132,'2020-12-20','2020-12-20',1608451200,1608487200),(24,1132,'2020-12-23','2020-12-23',1608710400,1608746400),(25,1132,'2020-12-26','2020-12-26',1608969600,1609005600),(26,1132,'2020-12-29','2020-12-29',1609228800,1609264800),(27,1132,'2021-01-01','2021-01-01',1609488000,1609524000),(28,1132,'2021-01-04','2021-01-04',1609747200,1609783200),(29,1132,'2021-01-07','2021-01-07',1610006400,1610042400),(30,1132,'2021-01-10','2021-01-10',1610265600,1610301600),(31,1132,'2021-01-13','2021-01-13',1610524800,1610560800),(32,1132,'2021-01-16','2021-01-16',1610784000,1610820000),(33,1132,'2021-01-19','2021-01-19',1611043200,1611079200),(34,1132,'2021-01-22','2021-01-22',1611302400,1611338400),(35,1132,'2021-01-25','2021-01-25',1611561600,1611597600),(36,1132,'2021-01-28','2021-01-28',1611820800,1611856800),(37,1132,'2021-01-31','2021-01-31',1612080000,1612116000),(38,1132,'2021-02-03','2021-02-03',1612339200,1612375200),(39,1132,'2021-02-06','2021-02-06',1612598400,1612634400),(40,1132,'2021-02-09','2021-02-09',1612857600,1612893600),(41,1132,'2021-02-12','2021-02-12',1613116800,1613152800),(42,1132,'2021-02-15','2021-02-15',1613376000,1613412000),(43,1132,'2021-02-18','2021-02-18',1613635200,1613671200),(44,1132,'2021-02-21','2021-02-21',1613894400,1613930400),(45,1132,'2021-02-24','2021-02-24',1614153600,1614189600),(46,1132,'2021-02-27','2021-02-27',1614412800,1614448800),(47,1132,'2021-03-02','2021-03-02',1614672000,1614708000),(48,1132,'2021-03-05','2021-03-05',1614931200,1614967200),(49,1132,'2021-03-08','2021-03-08',1615190400,1615226400),(50,1132,'2021-03-11','2021-03-11',1615449600,1615485600),(51,1132,'2021-03-14','2021-03-14',1615708800,1615744800),(52,1132,'2021-03-17','2021-03-17',1615968000,1616004000),(53,1132,'2021-03-20','2021-03-20',1616227200,1616263200),(54,1132,'2021-03-23','2021-03-23',1616486400,1616522400),(55,1132,'2021-03-26','2021-03-26',1616745600,1616781600),(56,1132,'2021-03-29','2021-03-29',1617004800,1617040800),(57,1132,'2021-04-01','2021-04-01',1617264000,1617300000),(58,1132,'2021-04-04','2021-04-04',1617523200,1617559200),(59,1132,'2021-04-07','2021-04-07',1617782400,1617818400),(60,1132,'2021-04-10','2021-04-10',1618041600,1618077600),(61,1132,'2021-04-13','2021-04-13',1618300800,1618336800),(62,1132,'2021-04-16','2021-04-16',1618560000,1618596000),(63,1132,'2021-04-19','2021-04-19',1618819200,1618855200),(64,1132,'2021-04-22','2021-04-22',1619078400,1619114400),(65,1132,'2021-04-25','2021-04-25',1619337600,1619373600),(66,1132,'2021-04-28','2021-04-28',1619596800,1619632800),(67,1132,'2021-05-01','2021-05-01',1619856000,1619892000),(68,1132,'2021-05-04','2021-05-04',1620115200,1620151200),(69,1132,'2021-05-07','2021-05-07',1620374400,1620410400),(70,1132,'2021-05-10','2021-05-10',1620633600,1620669600),(71,1132,'2021-05-13','2021-05-13',1620892800,1620928800),(72,1132,'2021-05-16','2021-05-16',1621152000,1621188000),(73,1132,'2021-05-19','2021-05-19',1621411200,1621447200),(74,1132,'2021-05-22','2021-05-22',1621670400,1621706400),(75,1132,'2021-05-25','2021-05-25',1621929600,1621965600),(76,1132,'2021-05-28','2021-05-28',1622188800,1622224800),(77,1132,'2021-05-31','2021-05-31',1622448000,1622484000),(78,1132,'2021-06-03','2021-06-03',1622707200,1622743200),(79,1132,'2021-06-06','2021-06-06',1622966400,1623002400),(80,1132,'2021-06-09','2021-06-09',1623225600,1623261600),(81,1132,'2021-06-12','2021-06-12',1623484800,1623520800),(82,1132,'2021-06-15','2021-06-15',1623744000,1623780000),(83,1132,'2021-06-18','2021-06-18',1624003200,1624039200),(84,1132,'2021-06-21','2021-06-21',1624262400,1624298400),(85,1132,'2021-06-24','2021-06-24',1624521600,1624557600),(86,1132,'2021-06-27','2021-06-27',1624780800,1624816800),(87,1132,'2021-06-30','2021-06-30',1625040000,1625076000),(88,1132,'2021-07-03','2021-07-03',1625299200,1625335200),(89,1132,'2021-07-06','2021-07-06',1625558400,1625594400),(90,1132,'2021-07-09','2021-07-09',1625817600,1625853600),(91,1132,'2021-07-12','2021-07-12',1626076800,1626112800),(92,1132,'2021-07-15','2021-07-15',1626336000,1626372000),(93,1132,'2021-07-18','2021-07-18',1626595200,1626631200),(94,1132,'2021-07-21','2021-07-21',1626854400,1626890400),(95,1132,'2021-07-24','2021-07-24',1627113600,1627149600),(96,1132,'2021-07-27','2021-07-27',1627372800,1627408800),(97,1132,'2021-07-30','2021-07-30',1627632000,1627668000),(98,1132,'2021-08-02','2021-08-02',1627891200,1627927200),(99,1132,'2021-08-05','2021-08-05',1628150400,1628186400),(100,1132,'2021-08-08','2021-08-08',1628409600,1628445600),(101,1132,'2021-08-11','2021-08-11',1628668800,1628704800),(102,1132,'2021-08-14','2021-08-14',1628928000,1628964000),(103,1132,'2021-08-17','2021-08-17',1629187200,1629223200),(104,1132,'2021-08-20','2021-08-20',1629446400,1629482400),(105,1132,'2021-08-23','2021-08-23',1629705600,1629741600),(106,1132,'2021-08-26','2021-08-26',1629964800,1630000800),(107,1132,'2021-08-29','2021-08-29',1630224000,1630260000),(108,1132,'2021-09-01','2021-09-01',1630483200,1630519200),(109,1132,'2021-09-04','2021-09-04',1630742400,1630778400),(110,1132,'2021-09-07','2021-09-07',1631001600,1631037600),(111,1132,'2021-09-10','2021-09-10',1631260800,1631296800),(112,1132,'2021-09-13','2021-09-13',1631520000,1631556000),(113,1132,'2021-09-16','2021-09-16',1631779200,1631815200),(114,1132,'2021-09-19','2021-09-19',1632038400,1632074400),(115,1132,'2021-09-22','2021-09-22',1632297600,1632333600),(116,1132,'2021-09-25','2021-09-25',1632556800,1632592800),(117,1132,'2021-09-28','2021-09-28',1632816000,1632852000),(118,1132,'2021-10-01','2021-10-01',1633075200,1633111200),(119,1132,'2021-10-04','2021-10-04',1633334400,1633370400),(120,1132,'2021-10-07','2021-10-07',1633593600,1633629600),(121,1132,'2021-10-10','2021-10-10',1633852800,1633888800),(122,1132,'2021-10-13','2021-10-13',1634112000,1634148000),(123,1132,'2021-10-16','2021-10-16',1634371200,1634407200),(124,1132,'2021-10-19','2021-10-19',1634630400,1634666400),(125,1132,'2021-10-22','2021-10-22',1634889600,1634925600),(126,1132,'2021-10-25','2021-10-25',1635148800,1635184800),(127,1132,'2021-10-28','2021-10-28',1635408000,1635444000),(128,1132,'2021-10-31','2021-10-31',1635667200,1635703200),(129,1132,'2021-11-03','2021-11-03',1635926400,1635962400),(130,1132,'2021-11-06','2021-11-06',1636185600,1636221600),(131,1132,'2021-11-09','2021-11-09',1636444800,1636480800),(132,1132,'2021-11-12','2021-11-12',1636704000,1636740000),(133,1132,'2021-11-15','2021-11-15',1636963200,1636999200),(134,1132,'2021-11-18','2021-11-18',1637222400,1637258400),(135,1132,'2021-11-21','2021-11-21',1637481600,1637517600),(136,1132,'2021-11-24','2021-11-24',1637740800,1637776800),(137,1132,'2021-11-27','2021-11-27',1638000000,1638036000),(138,1132,'2021-11-30','2021-11-30',1638259200,1638295200),(139,1132,'2021-12-03','2021-12-03',1638518400,1638554400),(140,1132,'2021-12-06','2021-12-06',1638777600,1638813600),(141,1132,'2021-12-09','2021-12-09',1639036800,1639072800),(142,1132,'2021-12-12','2021-12-12',1639296000,1639332000),(143,1132,'2021-12-15','2021-12-15',1639555200,1639591200),(144,1132,'2021-12-18','2021-12-18',1639814400,1639850400),(145,1132,'2021-12-21','2021-12-21',1640073600,1640109600),(146,1132,'2021-12-24','2021-12-24',1640332800,1640368800),(147,1132,'2021-12-27','2021-12-27',1640592000,1640628000),(148,1132,'2021-12-30','2021-12-30',1640851200,1640887200),(149,1132,'2022-01-02','2022-01-02',1641110400,1641146400),(150,1132,'2022-01-05','2022-01-05',1641369600,1641405600),(151,1132,'2022-01-08','2022-01-08',1641628800,1641664800),(152,1132,'2022-01-11','2022-01-11',1641888000,1641924000),(153,1132,'2022-01-14','2022-01-14',1642147200,1642183200),(154,1132,'2022-01-17','2022-01-17',1642406400,1642442400),(155,1132,'2022-01-20','2022-01-20',1642665600,1642701600),(156,1132,'2022-01-23','2022-01-23',1642924800,1642960800),(157,1132,'2022-01-26','2022-01-26',1643184000,1643220000),(158,1132,'2022-01-29','2022-01-29',1643443200,1643479200),(159,1132,'2022-02-01','2022-02-01',1643702400,1643738400),(160,1132,'2022-02-04','2022-02-04',1643961600,1643997600),(161,1132,'2022-02-07','2022-02-07',1644220800,1644256800),(162,1132,'2022-02-10','2022-02-10',1644480000,1644516000),(163,1132,'2022-02-13','2022-02-13',1644739200,1644775200),(164,1132,'2022-02-16','2022-02-16',1644998400,1645034400),(165,1132,'2022-02-19','2022-02-19',1645257600,1645293600),(166,1132,'2022-02-22','2022-02-22',1645516800,1645552800),(167,1132,'2022-02-25','2022-02-25',1645776000,1645812000),(168,1132,'2022-02-28','2022-02-28',1646035200,1646071200),(169,1132,'2022-03-03','2022-03-03',1646294400,1646330400),(170,1132,'2022-03-06','2022-03-06',1646553600,1646589600),(171,1132,'2022-03-09','2022-03-09',1646812800,1646848800),(172,1132,'2022-03-12','2022-03-12',1647072000,1647108000),(173,1132,'2022-03-15','2022-03-15',1647331200,1647367200),(174,1132,'2022-03-18','2022-03-18',1647590400,1647626400),(175,1132,'2022-03-21','2022-03-21',1647849600,1647885600),(176,1132,'2022-03-24','2022-03-24',1648108800,1648144800),(177,1132,'2022-03-27','2022-03-27',1648368000,1648404000),(178,1132,'2022-03-30','2022-03-30',1648627200,1648663200),(179,1132,'2022-04-02','2022-04-02',1648886400,1648922400),(180,1132,'2022-04-05','2022-04-05',1649145600,1649181600),(181,1132,'2022-04-08','2022-04-08',1649404800,1649440800),(182,1132,'2022-04-11','2022-04-11',1649664000,1649700000),(183,1132,'2022-04-14','2022-04-14',1649923200,1649959200),(184,1132,'2022-04-17','2022-04-17',1650182400,1650218400),(185,1132,'2022-04-20','2022-04-20',1650441600,1650477600),(186,1132,'2022-04-23','2022-04-23',1650700800,1650736800),(187,1132,'2022-04-26','2022-04-26',1650960000,1650996000),(188,1132,'2022-04-29','2022-04-29',1651219200,1651255200),(189,1132,'2022-05-02','2022-05-02',1651478400,1651514400),(190,1132,'2022-05-05','2022-05-05',1651737600,1651773600),(191,1132,'2022-05-08','2022-05-08',1651996800,1652032800),(192,1132,'2022-05-11','2022-05-11',1652256000,1652292000),(193,1132,'2022-05-14','2022-05-14',1652515200,1652551200),(194,1132,'2022-05-17','2022-05-17',1652774400,1652810400),(195,1132,'2022-05-20','2022-05-20',1653033600,1653069600),(196,1132,'2022-05-23','2022-05-23',1653292800,1653328800),(197,1132,'2022-05-26','2022-05-26',1653552000,1653588000),(198,1132,'2022-05-29','2022-05-29',1653811200,1653847200),(199,1132,'2022-06-01','2022-06-01',1654070400,1654106400),(200,1132,'2022-06-04','2022-06-04',1654329600,1654365600),(201,1132,'2022-06-07','2022-06-07',1654588800,1654624800),(202,1132,'2022-06-10','2022-06-10',1654848000,1654884000),(203,1132,'2022-06-13','2022-06-13',1655107200,1655143200),(204,1132,'2022-06-16','2022-06-16',1655366400,1655402400),(205,1132,'2022-06-19','2022-06-19',1655625600,1655661600),(206,1132,'2022-06-22','2022-06-22',1655884800,1655920800),(207,1132,'2022-06-25','2022-06-25',1656144000,1656180000),(208,1132,'2022-06-28','2022-06-28',1656403200,1656439200),(209,1132,'2022-07-01','2022-07-01',1656662400,1656698400),(210,1132,'2022-07-04','2022-07-04',1656921600,1656957600),(211,1132,'2022-07-07','2022-07-07',1657180800,1657216800),(212,1132,'2022-07-10','2022-07-10',1657440000,1657476000),(213,1132,'2022-07-13','2022-07-13',1657699200,1657735200),(214,1132,'2022-07-16','2022-07-16',1657958400,1657994400),(215,1132,'2022-07-19','2022-07-19',1658217600,1658253600),(216,1132,'2022-07-22','2022-07-22',1658476800,1658512800),(217,1132,'2022-07-25','2022-07-25',1658736000,1658772000),(218,1132,'2022-07-28','2022-07-28',1658995200,1659031200),(219,1132,'2022-07-31','2022-07-31',1659254400,1659290400),(220,1132,'2022-08-03','2022-08-03',1659513600,1659549600),(221,1132,'2022-08-06','2022-08-06',1659772800,1659808800),(222,1132,'2022-08-09','2022-08-09',1660032000,1660068000),(223,1132,'2022-08-12','2022-08-12',1660291200,1660327200),(224,1132,'2022-08-15','2022-08-15',1660550400,1660586400),(225,1132,'2022-08-18','2022-08-18',1660809600,1660845600),(226,1132,'2022-08-21','2022-08-21',1661068800,1661104800),(227,1132,'2022-08-24','2022-08-24',1661328000,1661364000),(228,1132,'2022-08-27','2022-08-27',1661587200,1661623200),(229,1132,'2022-08-30','2022-08-30',1661846400,1661882400),(230,1132,'2022-09-02','2022-09-02',1662105600,1662141600),(231,1132,'2022-09-05','2022-09-05',1662364800,1662400800),(232,1132,'2022-09-08','2022-09-08',1662624000,1662660000),(233,1132,'2022-09-11','2022-09-11',1662883200,1662919200),(234,1132,'2022-09-14','2022-09-14',1663142400,1663178400),(235,1132,'2022-09-17','2022-09-17',1663401600,1663437600),(236,1132,'2022-09-20','2022-09-20',1663660800,1663696800),(237,1132,'2022-09-23','2022-09-23',1663920000,1663956000),(238,1132,'2022-09-26','2022-09-26',1664179200,1664215200),(239,1132,'2022-09-29','2022-09-29',1664438400,1664474400),(240,1132,'2022-10-02','2022-10-02',1664697600,1664733600),(241,1132,'2022-10-05','2022-10-05',1664956800,1664992800),(242,1132,'2022-10-08','2022-10-08',1665216000,1665252000),(243,1132,'2022-10-11','2022-10-11',1665475200,1665511200),(244,1132,'2022-10-14','2022-10-14',1665734400,1665770400),(245,1132,'2022-10-17','2022-10-17',1665993600,1666029600),(246,1132,'2022-10-20','2022-10-20',1666252800,1666288800),(247,1132,'2022-10-23','2022-10-23',1666512000,1666548000),(248,1132,'2022-10-26','2022-10-26',1666771200,1666807200),(249,1132,'2022-10-29','2022-10-29',1667030400,1667066400),(250,1132,'2022-11-01','2022-11-01',1667289600,1667325600),(251,1132,'2022-11-04','2022-11-04',1667548800,1667584800),(252,1132,'2022-11-07','2022-11-07',1667808000,1667844000),(253,1132,'2022-11-10','2022-11-10',1668067200,1668103200),(254,1132,'2022-11-13','2022-11-13',1668326400,1668362400),(255,1132,'2022-11-16','2022-11-16',1668585600,1668621600),(256,1132,'2022-11-19','2022-11-19',1668844800,1668880800),(257,1132,'2022-11-22','2022-11-22',1669104000,1669140000),(258,1132,'2022-11-25','2022-11-25',1669363200,1669399200),(259,1132,'2022-11-28','2022-11-28',1669622400,1669658400),(260,1132,'2022-12-01','2022-12-01',1669881600,1669917600),(261,1132,'2022-12-04','2022-12-04',1670140800,1670176800),(262,1132,'2022-12-07','2022-12-07',1670400000,1670436000),(263,1132,'2022-12-10','2022-12-10',1670659200,1670695200),(264,1132,'2022-12-13','2022-12-13',1670918400,1670954400),(265,1132,'2022-12-16','2022-12-16',1671177600,1671213600),(266,1132,'2022-12-19','2022-12-19',1671436800,1671472800),(267,1132,'2022-12-22','2022-12-22',1671696000,1671732000),(268,1132,'2022-12-25','2022-12-25',1671955200,1671991200),(269,1132,'2022-12-28','2022-12-28',1672214400,1672250400),(270,1132,'2022-12-31','2022-12-31',1672473600,1672509600),(271,1132,'2023-01-03','2023-01-03',1672732800,1672768800),(272,1132,'2023-01-06','2023-01-06',1672992000,1673028000),(273,1132,'2023-01-09','2023-01-09',1673251200,1673287200),(274,1132,'2023-01-12','2023-01-12',1673510400,1673546400),(275,1132,'2023-01-15','2023-01-15',1673769600,1673805600),(276,1132,'2023-01-18','2023-01-18',1674028800,1674064800),(277,1132,'2023-01-21','2023-01-21',1674288000,1674324000),(278,1132,'2023-01-24','2023-01-24',1674547200,1674583200),(279,1132,'2023-01-27','2023-01-27',1674806400,1674842400),(280,1132,'2023-01-30','2023-01-30',1675065600,1675101600),(281,1132,'2023-02-02','2023-02-02',1675324800,1675360800),(282,1132,'2023-02-05','2023-02-05',1675584000,1675620000),(283,1132,'2023-02-08','2023-02-08',1675843200,1675879200),(284,1132,'2023-02-11','2023-02-11',1676102400,1676138400),(285,1132,'2023-02-14','2023-02-14',1676361600,1676397600),(286,1132,'2023-02-17','2023-02-17',1676620800,1676656800),(287,1132,'2023-02-20','2023-02-20',1676880000,1676916000),(288,1132,'2023-02-23','2023-02-23',1677139200,1677175200),(289,1132,'2023-02-26','2023-02-26',1677398400,1677434400),(290,1132,'2023-03-01','2023-03-01',1677657600,1677693600),(291,1132,'2023-03-04','2023-03-04',1677916800,1677952800),(292,1132,'2023-03-07','2023-03-07',1678176000,1678212000),(293,1132,'2023-03-10','2023-03-10',1678435200,1678471200),(294,1132,'2023-03-13','2023-03-13',1678694400,1678730400),(295,1132,'2023-03-16','2023-03-16',1678953600,1678989600),(296,1132,'2023-03-19','2023-03-19',1679212800,1679248800),(297,1132,'2023-03-22','2023-03-22',1679472000,1679508000),(298,1132,'2023-03-25','2023-03-25',1679731200,1679767200),(299,1132,'2023-03-28','2023-03-28',1679990400,1680026400),(300,1132,'2023-03-31','2023-03-31',1680249600,1680285600),(301,1132,'2023-04-03','2023-04-03',1680508800,1680544800),(302,1132,'2023-04-06','2023-04-06',1680768000,1680804000),(303,1132,'2023-04-09','2023-04-09',1681027200,1681063200),(304,1132,'2023-04-12','2023-04-12',1681286400,1681322400),(305,1132,'2023-04-15','2023-04-15',1681545600,1681581600),(306,1132,'2023-04-18','2023-04-18',1681804800,1681840800),(307,1132,'2023-04-21','2023-04-21',1682064000,1682100000),(308,1132,'2023-04-24','2023-04-24',1682323200,1682359200),(309,1132,'2023-04-27','2023-04-27',1682582400,1682618400),(310,1132,'2023-04-30','2023-04-30',1682841600,1682877600),(311,1132,'2023-05-03','2023-05-03',1683100800,1683136800),(312,1132,'2023-05-06','2023-05-06',1683360000,1683396000),(313,1132,'2023-05-09','2023-05-09',1683619200,1683655200),(314,1132,'2023-05-12','2023-05-12',1683878400,1683914400),(315,1132,'2023-05-15','2023-05-15',1684137600,1684173600),(316,1132,'2023-05-18','2023-05-18',1684396800,1684432800),(317,1132,'2023-05-21','2023-05-21',1684656000,1684692000),(318,1132,'2023-05-24','2023-05-24',1684915200,1684951200),(319,1132,'2023-05-27','2023-05-27',1685174400,1685210400),(320,1132,'2023-05-30','2023-05-30',1685433600,1685469600),(321,1132,'2023-06-02','2023-06-02',1685692800,1685728800),(322,1132,'2023-06-05','2023-06-05',1685952000,1685988000),(323,1132,'2023-06-08','2023-06-08',1686211200,1686247200),(324,1132,'2023-06-11','2023-06-11',1686470400,1686506400),(325,1132,'2023-06-14','2023-06-14',1686729600,1686765600),(326,1132,'2023-06-17','2023-06-17',1686988800,1687024800),(327,1132,'2023-06-20','2023-06-20',1687248000,1687284000),(328,1132,'2023-06-23','2023-06-23',1687507200,1687543200),(329,1132,'2023-06-26','2023-06-26',1687766400,1687802400),(330,1132,'2023-06-29','2023-06-29',1688025600,1688061600),(331,1132,'2023-07-02','2023-07-02',1688284800,1688320800),(332,1132,'2023-07-05','2023-07-05',1688544000,1688580000),(333,1132,'2023-07-08','2023-07-08',1688803200,1688839200),(334,1132,'2023-07-11','2023-07-11',1689062400,1689098400),(335,1132,'2023-07-14','2023-07-14',1689321600,1689357600),(336,1132,'2023-07-17','2023-07-17',1689580800,1689616800),(337,1132,'2023-07-20','2023-07-20',1689840000,1689876000),(338,1132,'2023-07-23','2023-07-23',1690099200,1690135200),(339,1132,'2023-07-26','2023-07-26',1690358400,1690394400),(340,1132,'2023-07-29','2023-07-29',1690617600,1690653600),(341,1132,'2023-08-01','2023-08-01',1690876800,1690912800),(342,1132,'2023-08-04','2023-08-04',1691136000,1691172000),(343,1132,'2023-08-07','2023-08-07',1691395200,1691431200),(344,1132,'2023-08-10','2023-08-10',1691654400,1691690400),(345,1132,'2023-08-13','2023-08-13',1691913600,1691949600),(346,1132,'2023-08-16','2023-08-16',1692172800,1692208800),(347,1132,'2023-08-19','2023-08-19',1692432000,1692468000),(348,1132,'2023-08-22','2023-08-22',1692691200,1692727200),(349,1132,'2023-08-25','2023-08-25',1692950400,1692986400),(350,1132,'2023-08-28','2023-08-28',1693209600,1693245600),(351,1132,'2023-08-31','2023-08-31',1693468800,1693504800),(352,1132,'2023-09-03','2023-09-03',1693728000,1693764000),(353,1132,'2023-09-06','2023-09-06',1693987200,1694023200),(354,1132,'2023-09-09','2023-09-09',1694246400,1694282400),(355,1132,'2023-09-12','2023-09-12',1694505600,1694541600),(356,1132,'2023-09-15','2023-09-15',1694764800,1694800800),(357,1132,'2023-09-18','2023-09-18',1695024000,1695060000),(358,1132,'2023-09-21','2023-09-21',1695283200,1695319200),(359,1132,'2023-09-24','2023-09-24',1695542400,1695578400),(360,1132,'2023-09-27','2023-09-27',1695801600,1695837600),(361,1132,'2023-09-30','2023-09-30',1696060800,1696096800),(362,1132,'2023-10-03','2023-10-03',1696320000,1696356000),(363,1132,'2023-10-06','2023-10-06',1696579200,1696615200),(364,1132,'2023-10-09','2023-10-09',1696838400,1696874400),(365,1132,'2023-10-12','2023-10-12',1697097600,1697133600),(366,1132,'2023-10-15','2023-10-15',1697356800,1697392800),(367,1132,'2023-10-18','2023-10-18',1697616000,1697652000),(368,1132,'2023-10-21','2023-10-21',1697875200,1697911200),(369,1132,'2023-10-24','2023-10-24',1698134400,1698170400),(370,1132,'2023-10-27','2023-10-27',1698393600,1698429600),(371,1132,'2023-10-30','2023-10-30',1698652800,1698688800),(372,1133,'2020-10-19','2020-10-19',1603094400,1603130400),(373,1133,'2020-10-26','2020-10-26',1603699200,1603735200),(374,1133,'2020-11-02','2020-11-02',1604304000,1604340000),(375,1133,'2020-11-09','2020-11-09',1604908800,1604944800),(376,1133,'2020-11-16','2020-11-16',1605513600,1605549600),(377,1133,'2020-11-23','2020-11-23',1606118400,1606154400),(378,1133,'2020-11-30','2020-11-30',1606723200,1606759200),(379,1133,'2020-12-07','2020-12-07',1607328000,1607364000),(380,1133,'2020-12-14','2020-12-14',1607932800,1607968800),(381,1133,'2020-12-21','2020-12-21',1608537600,1608573600),(382,1133,'2020-12-28','2020-12-28',1609142400,1609178400),(383,1133,'2021-01-04','2021-01-04',1609747200,1609783200),(384,1133,'2021-01-11','2021-01-11',1610352000,1610388000),(385,1133,'2021-01-18','2021-01-18',1610956800,1610992800),(386,1133,'2021-01-25','2021-01-25',1611561600,1611597600),(387,1133,'2021-02-01','2021-02-01',1612166400,1612202400),(388,1133,'2021-02-08','2021-02-08',1612771200,1612807200),(389,1133,'2021-02-15','2021-02-15',1613376000,1613412000),(390,1133,'2021-02-22','2021-02-22',1613980800,1614016800),(391,1133,'2021-03-01','2021-03-01',1614585600,1614621600),(392,1133,'2021-03-08','2021-03-08',1615190400,1615226400),(393,1133,'2021-03-15','2021-03-15',1615795200,1615831200),(394,1133,'2021-03-22','2021-03-22',1616400000,1616436000),(395,1133,'2021-03-29','2021-03-29',1617004800,1617040800),(396,1133,'2021-04-05','2021-04-05',1617609600,1617645600),(397,1133,'2021-04-12','2021-04-12',1618214400,1618250400),(398,1133,'2021-04-19','2021-04-19',1618819200,1618855200),(399,1133,'2021-04-26','2021-04-26',1619424000,1619460000),(400,1133,'2021-05-03','2021-05-03',1620028800,1620064800),(401,1133,'2021-05-10','2021-05-10',1620633600,1620669600),(402,1133,'2021-05-17','2021-05-17',1621238400,1621274400),(403,1133,'2021-05-24','2021-05-24',1621843200,1621879200),(404,1133,'2021-05-31','2021-05-31',1622448000,1622484000),(405,1133,'2021-06-07','2021-06-07',1623052800,1623088800),(406,1133,'2021-06-14','2021-06-14',1623657600,1623693600),(407,1133,'2021-06-21','2021-06-21',1624262400,1624298400),(408,1133,'2021-06-28','2021-06-28',1624867200,1624903200),(409,1133,'2021-07-05','2021-07-05',1625472000,1625508000),(410,1133,'2021-07-12','2021-07-12',1626076800,1626112800),(411,1133,'2021-07-19','2021-07-19',1626681600,1626717600),(412,1133,'2021-07-26','2021-07-26',1627286400,1627322400),(413,1133,'2021-08-02','2021-08-02',1627891200,1627927200),(414,1133,'2021-08-09','2021-08-09',1628496000,1628532000),(415,1133,'2021-08-16','2021-08-16',1629100800,1629136800),(416,1133,'2021-08-23','2021-08-23',1629705600,1629741600),(417,1133,'2021-08-30','2021-08-30',1630310400,1630346400),(418,1133,'2021-09-06','2021-09-06',1630915200,1630951200),(419,1133,'2021-09-13','2021-09-13',1631520000,1631556000),(420,1133,'2021-09-20','2021-09-20',1632124800,1632160800),(421,1133,'2021-09-27','2021-09-27',1632729600,1632765600),(422,1133,'2021-10-04','2021-10-04',1633334400,1633370400),(423,1133,'2021-10-11','2021-10-11',1633939200,1633975200),(424,1133,'2021-10-18','2021-10-18',1634544000,1634580000),(425,1133,'2021-10-25','2021-10-25',1635148800,1635184800),(426,1133,'2021-11-01','2021-11-01',1635753600,1635789600),(427,1133,'2021-11-08','2021-11-08',1636358400,1636394400),(428,1133,'2021-11-15','2021-11-15',1636963200,1636999200),(429,1133,'2021-11-22','2021-11-22',1637568000,1637604000),(430,1133,'2021-11-29','2021-11-29',1638172800,1638208800),(431,1133,'2021-12-06','2021-12-06',1638777600,1638813600),(432,1133,'2021-12-13','2021-12-13',1639382400,1639418400),(433,1133,'2021-12-20','2021-12-20',1639987200,1640023200),(434,1133,'2021-12-27','2021-12-27',1640592000,1640628000),(435,1133,'2022-01-03','2022-01-03',1641196800,1641232800),(436,1133,'2022-01-10','2022-01-10',1641801600,1641837600),(437,1133,'2022-01-17','2022-01-17',1642406400,1642442400),(438,1133,'2022-01-24','2022-01-24',1643011200,1643047200),(439,1133,'2022-01-31','2022-01-31',1643616000,1643652000),(440,1133,'2022-02-07','2022-02-07',1644220800,1644256800),(441,1133,'2022-02-14','2022-02-14',1644825600,1644861600),(442,1133,'2022-02-21','2022-02-21',1645430400,1645466400),(443,1133,'2022-02-28','2022-02-28',1646035200,1646071200),(444,1133,'2022-03-07','2022-03-07',1646640000,1646676000),(445,1133,'2022-03-14','2022-03-14',1647244800,1647280800),(446,1133,'2022-03-21','2022-03-21',1647849600,1647885600),(447,1133,'2022-03-28','2022-03-28',1648454400,1648490400),(448,1133,'2022-04-04','2022-04-04',1649059200,1649095200),(449,1133,'2022-04-11','2022-04-11',1649664000,1649700000),(450,1133,'2022-04-18','2022-04-18',1650268800,1650304800),(451,1133,'2022-04-25','2022-04-25',1650873600,1650909600),(452,1133,'2022-05-02','2022-05-02',1651478400,1651514400),(453,1133,'2022-05-09','2022-05-09',1652083200,1652119200),(454,1133,'2022-05-16','2022-05-16',1652688000,1652724000),(455,1133,'2022-05-23','2022-05-23',1653292800,1653328800),(456,1133,'2022-05-30','2022-05-30',1653897600,1653933600),(457,1133,'2022-06-06','2022-06-06',1654502400,1654538400),(458,1133,'2022-06-13','2022-06-13',1655107200,1655143200),(459,1133,'2022-06-20','2022-06-20',1655712000,1655748000),(460,1133,'2022-06-27','2022-06-27',1656316800,1656352800),(461,1133,'2022-07-04','2022-07-04',1656921600,1656957600),(462,1133,'2022-07-11','2022-07-11',1657526400,1657562400),(463,1133,'2022-07-18','2022-07-18',1658131200,1658167200),(464,1133,'2022-07-25','2022-07-25',1658736000,1658772000),(465,1133,'2022-08-01','2022-08-01',1659340800,1659376800),(466,1133,'2022-08-08','2022-08-08',1659945600,1659981600),(467,1133,'2022-08-15','2022-08-15',1660550400,1660586400),(468,1133,'2022-08-22','2022-08-22',1661155200,1661191200),(469,1133,'2022-08-29','2022-08-29',1661760000,1661796000),(470,1133,'2022-09-05','2022-09-05',1662364800,1662400800),(471,1133,'2022-09-12','2022-09-12',1662969600,1663005600),(472,1134,'2020-10-27','2020-10-27',1603785600,1603821600),(473,1134,'2020-11-27','2020-11-27',1606464000,1606500000),(474,1134,'2020-12-27','2020-12-27',1609056000,1609092000),(475,1134,'2021-01-27','2021-01-27',1611734400,1611770400),(476,1134,'2021-02-27','2021-02-27',1614412800,1614448800),(477,1134,'2021-03-27','2021-03-27',1616832000,1616868000),(478,1134,'2021-04-27','2021-04-27',1619510400,1619546400),(479,1134,'2021-05-27','2021-05-27',1622102400,1622138400),(480,1134,'2021-06-27','2021-06-27',1624780800,1624816800),(481,1134,'2021-07-27','2021-07-27',1627372800,1627408800),(482,1134,'2021-08-27','2021-08-27',1630051200,1630087200),(483,1134,'2021-09-27','2021-09-27',1632729600,1632765600),(484,1134,'2021-10-27','2021-10-27',1635321600,1635357600),(485,1134,'2021-11-27','2021-11-27',1638000000,1638036000),(486,1134,'2021-12-27','2021-12-27',1640592000,1640628000),(487,1134,'2022-01-27','2022-01-27',1643270400,1643306400),(488,1134,'2022-02-27','2022-02-27',1645948800,1645984800),(489,1134,'2022-03-27','2022-03-27',1648368000,1648404000),(490,1134,'2022-04-27','2022-04-27',1651046400,1651082400),(491,1134,'2022-05-27','2022-05-27',1653638400,1653674400),(492,1134,'2022-06-27','2022-06-27',1656316800,1656352800),(493,1134,'2022-07-27','2022-07-27',1658908800,1658944800),(494,1134,'2022-08-27','2022-08-27',1661587200,1661623200),(495,1134,'2022-09-27','2022-09-27',1664265600,1664301600),(496,1134,'2022-10-27','2022-10-27',1666857600,1666893600),(497,1134,'2022-11-27','2022-11-27',1669536000,1669572000),(498,1134,'2022-12-27','2022-12-27',1672128000,1672164000),(499,1134,'2023-01-27','2023-01-27',1674806400,1674842400),(500,1134,'2023-02-27','2023-02-27',1677484800,1677520800),(501,1134,'2023-03-27','2023-03-27',1679904000,1679940000),(502,1134,'2023-04-27','2023-04-27',1682582400,1682618400),(503,1134,'2023-05-27','2023-05-27',1685174400,1685210400),(504,1134,'2023-06-27','2023-06-27',1687852800,1687888800),(505,1134,'2023-07-27','2023-07-27',1690444800,1690480800),(506,1134,'2023-08-27','2023-08-27',1693123200,1693159200),(507,1134,'2023-09-27','2023-09-27',1695801600,1695837600),(508,1134,'2023-10-27','2023-10-27',1698393600,1698429600),(509,1134,'2023-11-27','2023-11-27',1701072000,1701108000),(510,1134,'2023-12-27','2023-12-27',1703664000,1703700000),(511,1134,'2024-01-27','2024-01-27',1706342400,1706378400),(512,1134,'2024-02-27','2024-02-27',1709020800,1709056800),(513,1134,'2024-03-27','2024-03-27',1711526400,1711562400),(514,1134,'2024-04-27','2024-04-27',1714204800,1714240800),(515,1134,'2024-05-27','2024-05-27',1716796800,1716832800),(516,1134,'2024-06-27','2024-06-27',1719475200,1719511200),(517,1134,'2024-07-27','2024-07-27',1722067200,1722103200),(518,1134,'2024-08-27','2024-08-27',1724745600,1724781600),(519,1134,'2024-09-27','2024-09-27',1727424000,1727460000),(520,1134,'2024-10-27','2024-10-27',1730016000,1730052000),(521,1134,'2024-11-27','2024-11-27',1732694400,1732730400),(522,1135,'2020-08-20','2020-08-21',1597910400,1598032800),(523,1135,'2021-08-20','2021-08-21',1629446400,1629568800),(524,1135,'2022-08-20','2022-08-21',1660982400,1661104800),(525,1135,'2023-08-20','2023-08-21',1692518400,1692640800),(526,1135,'2024-08-20','2024-08-21',1724140800,1724263200),(527,1135,'2025-08-20','2025-08-21',1755676800,1755799200),(528,1135,'2026-08-20','2026-08-21',1787212800,1787335200),(529,1135,'2027-08-20','2027-08-21',1818748800,1818871200),(530,1135,'2028-08-20','2028-08-21',1850371200,1850493600),(531,1135,'2029-08-20','2029-08-21',1881907200,1882029600),(532,1135,'2030-08-20','2030-08-21',1913443200,1913565600),(533,1135,'2031-08-20','2031-08-21',1944979200,1945101600),(534,1135,'2032-08-20','2032-08-21',1976601600,1976724000),(535,1135,'2033-08-20','2033-08-21',2008137600,2008260000),(536,1135,'2034-08-20','2034-08-21',2039673600,2039796000),(537,1135,'2035-08-20','2035-08-21',2071209600,2071332000),(538,1135,'2036-08-20','2036-08-21',2102832000,2102954400),(539,1135,'2037-08-20','2037-08-21',2134368000,2134490400),(540,1135,'2038-08-20','2038-08-21',2165904000,2166026400),(541,1135,'2039-08-20','2039-08-21',2197440000,2197562400),(542,1135,'2040-08-20','2040-08-21',2229062400,2229184800),(543,1135,'2041-08-20','2041-08-21',2260598400,2260720800),(544,1135,'2042-08-20','2042-08-21',2292134400,2292256800),(545,1135,'2043-08-20','2043-08-21',2323670400,2323792800),(546,1135,'2044-08-20','2044-08-21',2355292800,2355415200),(547,1134,'2024-12-27','2024-12-27',1735286400,1735322400),(548,1134,'2025-01-27','2025-01-27',1737964800,1738000800),(549,1134,'2025-02-27','2025-02-27',1740643200,1740679200),(550,1134,'2025-03-27','2025-03-27',1743062400,1743098400),(551,1134,'2025-04-27','2025-04-27',1745740800,1745776800),(552,1134,'2025-05-27','2025-05-27',1748332800,1748368800),(553,1134,'2025-06-27','2025-06-27',1751011200,1751047200),(554,1134,'2025-07-27','2025-07-27',1753603200,1753639200),(555,1134,'2025-08-27','2025-08-27',1756281600,1756317600),(556,1134,'2025-09-27','2025-09-27',1758960000,1758996000),(557,1134,'2025-10-27','2025-10-27',1761552000,1761588000),(558,1134,'2025-11-27','2025-11-27',1764230400,1764266400),(559,1134,'2025-12-27','2025-12-27',1766822400,1766858400),(560,1134,'2026-01-27','2026-01-27',1769500800,1769536800),(561,1134,'2026-02-27','2026-02-27',1772179200,1772215200),(562,1134,'2026-03-27','2026-03-27',1774598400,1774634400),(563,1134,'2026-04-27','2026-04-27',1777276800,1777312800),(564,1134,'2026-05-27','2026-05-27',1779868800,1779904800),(565,1134,'2026-06-27','2026-06-27',1782547200,1782583200),(566,1134,'2026-07-27','2026-07-27',1785139200,1785175200),(567,1134,'2026-08-27','2026-08-27',1787817600,1787853600),(568,1134,'2026-09-27','2026-09-27',1790496000,1790532000),(569,1134,'2026-10-27','2026-10-27',1793088000,1793124000),(570,1134,'2026-11-27','2026-11-27',1795766400,1795802400),(571,1134,'2026-12-27','2026-12-27',1798358400,1798394400),(572,1134,'2027-01-27','2027-01-27',1801036800,1801072800),(573,1134,'2027-02-27','2027-02-27',1803715200,1803751200),(574,1134,'2027-03-27','2027-03-27',1806134400,1806170400),(575,1134,'2027-04-27','2027-04-27',1808812800,1808848800),(576,1134,'2027-05-27','2027-05-27',1811404800,1811440800),(577,1134,'2027-06-27','2027-06-27',1814083200,1814119200),(578,1134,'2027-07-27','2027-07-27',1816675200,1816711200),(579,1134,'2027-08-27','2027-08-27',1819353600,1819389600),(580,1134,'2027-09-27','2027-09-27',1822032000,1822068000),(581,1134,'2027-10-27','2027-10-27',1824624000,1824660000),(582,1134,'2027-11-27','2027-11-27',1827302400,1827338400),(583,1134,'2027-12-27','2027-12-27',1829894400,1829930400),(584,1134,'2028-01-27','2028-01-27',1832572800,1832608800),(585,1134,'2028-02-27','2028-02-27',1835251200,1835287200),(586,1134,'2028-03-27','2028-03-27',1837756800,1837792800),(587,1134,'2028-04-27','2028-04-27',1840435200,1840471200),(588,1134,'2028-05-27','2028-05-27',1843027200,1843063200),(589,1134,'2028-06-27','2028-06-27',1845705600,1845741600),(590,1134,'2028-07-27','2028-07-27',1848297600,1848333600),(591,1134,'2028-08-27','2028-08-27',1850976000,1851012000),(592,1134,'2028-09-27','2028-09-27',1853654400,1853690400),(593,1134,'2028-10-27','2028-10-27',1856246400,1856282400),(594,1134,'2028-11-27','2028-11-27',1858924800,1858960800),(595,1134,'2028-12-27','2028-12-27',1861516800,1861552800),(596,1133,'2022-09-19','2022-09-19',1663574400,1663610400),(597,1133,'2022-09-26','2022-09-26',1664179200,1664215200),(598,1133,'2022-10-03','2022-10-03',1664784000,1664820000),(599,1133,'2022-10-10','2022-10-10',1665388800,1665424800),(600,1133,'2022-10-17','2022-10-17',1665993600,1666029600),(601,1133,'2022-10-24','2022-10-24',1666598400,1666634400),(602,1133,'2022-10-31','2022-10-31',1667203200,1667239200),(603,1133,'2022-11-07','2022-11-07',1667808000,1667844000),(604,1133,'2022-11-14','2022-11-14',1668412800,1668448800),(605,1133,'2022-11-21','2022-11-21',1669017600,1669053600),(606,1133,'2022-11-28','2022-11-28',1669622400,1669658400),(607,1133,'2022-12-05','2022-12-05',1670227200,1670263200),(608,1133,'2022-12-12','2022-12-12',1670832000,1670868000),(609,1133,'2022-12-19','2022-12-19',1671436800,1671472800),(610,1133,'2022-12-26','2022-12-26',1672041600,1672077600),(611,1133,'2023-01-02','2023-01-02',1672646400,1672682400),(612,1133,'2023-01-09','2023-01-09',1673251200,1673287200),(613,1133,'2023-01-16','2023-01-16',1673856000,1673892000),(614,1133,'2023-01-23','2023-01-23',1674460800,1674496800),(615,1133,'2023-01-30','2023-01-30',1675065600,1675101600),(616,1133,'2023-02-06','2023-02-06',1675670400,1675706400),(617,1133,'2023-02-13','2023-02-13',1676275200,1676311200),(618,1133,'2023-02-20','2023-02-20',1676880000,1676916000),(619,1133,'2023-02-27','2023-02-27',1677484800,1677520800),(620,1133,'2023-03-06','2023-03-06',1678089600,1678125600),(621,1133,'2023-03-13','2023-03-13',1678694400,1678730400),(622,1133,'2023-03-20','2023-03-20',1679299200,1679335200),(623,1133,'2023-03-27','2023-03-27',1679904000,1679940000),(624,1133,'2023-04-03','2023-04-03',1680508800,1680544800),(625,1133,'2023-04-10','2023-04-10',1681113600,1681149600),(626,1133,'2023-04-17','2023-04-17',1681718400,1681754400),(627,1133,'2023-04-24','2023-04-24',1682323200,1682359200),(628,1133,'2023-05-01','2023-05-01',1682928000,1682964000),(629,1133,'2023-05-08','2023-05-08',1683532800,1683568800),(630,1133,'2023-05-15','2023-05-15',1684137600,1684173600),(631,1133,'2023-05-22','2023-05-22',1684742400,1684778400),(632,1133,'2023-05-29','2023-05-29',1685347200,1685383200),(633,1133,'2023-06-05','2023-06-05',1685952000,1685988000),(634,1133,'2023-06-12','2023-06-12',1686556800,1686592800),(635,1133,'2023-06-19','2023-06-19',1687161600,1687197600),(636,1133,'2023-06-26','2023-06-26',1687766400,1687802400),(637,1133,'2023-07-03','2023-07-03',1688371200,1688407200),(638,1133,'2023-07-10','2023-07-10',1688976000,1689012000),(639,1133,'2023-07-17','2023-07-17',1689580800,1689616800),(640,1133,'2023-07-24','2023-07-24',1690185600,1690221600),(641,1133,'2023-07-31','2023-07-31',1690790400,1690826400),(642,1133,'2023-08-07','2023-08-07',1691395200,1691431200),(643,1133,'2023-08-14','2023-08-14',1692000000,1692036000),(644,1133,'2023-08-21','2023-08-21',1692604800,1692640800),(645,1133,'2023-08-28','2023-08-28',1693209600,1693245600),(646,1132,'2023-11-02','2023-11-02',1698912000,1698948000),(647,1132,'2023-11-05','2023-11-05',1699171200,1699207200),(648,1132,'2023-11-08','2023-11-08',1699430400,1699466400),(649,1132,'2023-11-11','2023-11-11',1699689600,1699725600),(650,1132,'2023-11-14','2023-11-14',1699948800,1699984800),(651,1132,'2023-11-17','2023-11-17',1700208000,1700244000),(652,1132,'2023-11-20','2023-11-20',1700467200,1700503200),(653,1132,'2023-11-23','2023-11-23',1700726400,1700762400),(654,1132,'2023-11-26','2023-11-26',1700985600,1701021600),(655,1132,'2023-11-29','2023-11-29',1701244800,1701280800),(656,1132,'2023-12-02','2023-12-02',1701504000,1701540000),(657,1132,'2023-12-05','2023-12-05',1701763200,1701799200),(658,1132,'2023-12-08','2023-12-08',1702022400,1702058400),(659,1132,'2023-12-11','2023-12-11',1702281600,1702317600),(660,1132,'2023-12-14','2023-12-14',1702540800,1702576800),(661,1132,'2023-12-17','2023-12-17',1702800000,1702836000),(662,1132,'2023-12-20','2023-12-20',1703059200,1703095200),(663,1132,'2023-12-23','2023-12-23',1703318400,1703354400),(664,1132,'2023-12-26','2023-12-26',1703577600,1703613600),(665,1132,'2023-12-29','2023-12-29',1703836800,1703872800),(666,1132,'2024-01-01','2024-01-01',1704096000,1704132000),(667,1132,'2024-01-04','2024-01-04',1704355200,1704391200),(668,1132,'2024-01-07','2024-01-07',1704614400,1704650400),(669,1132,'2024-01-10','2024-01-10',1704873600,1704909600),(670,1132,'2024-01-13','2024-01-13',1705132800,1705168800),(671,1132,'2024-01-16','2024-01-16',1705392000,1705428000),(672,1132,'2024-01-19','2024-01-19',1705651200,1705687200),(673,1132,'2024-01-22','2024-01-22',1705910400,1705946400),(674,1132,'2024-01-25','2024-01-25',1706169600,1706205600),(675,1132,'2024-01-28','2024-01-28',1706428800,1706464800),(676,1132,'2024-01-31','2024-01-31',1706688000,1706724000),(677,1132,'2024-02-03','2024-02-03',1706947200,1706983200),(678,1132,'2024-02-06','2024-02-06',1707206400,1707242400),(679,1132,'2024-02-09','2024-02-09',1707465600,1707501600),(680,1132,'2024-02-12','2024-02-12',1707724800,1707760800),(681,1132,'2024-02-15','2024-02-15',1707984000,1708020000),(682,1132,'2024-02-18','2024-02-18',1708243200,1708279200),(683,1132,'2024-02-21','2024-02-21',1708502400,1708538400),(684,1132,'2024-02-24','2024-02-24',1708761600,1708797600),(685,1132,'2024-02-27','2024-02-27',1709020800,1709056800),(686,1132,'2024-03-01','2024-03-01',1709280000,1709316000),(687,1132,'2024-03-04','2024-03-04',1709539200,1709575200),(688,1132,'2024-03-07','2024-03-07',1709798400,1709834400),(689,1132,'2024-03-10','2024-03-10',1710057600,1710093600),(690,1132,'2024-03-13','2024-03-13',1710316800,1710352800),(691,1132,'2024-03-16','2024-03-16',1710576000,1710612000),(692,1132,'2024-03-19','2024-03-19',1710835200,1710871200),(693,1132,'2024-03-22','2024-03-22',1711094400,1711130400),(694,1132,'2024-03-25','2024-03-25',1711353600,1711389600),(695,1132,'2024-03-28','2024-03-28',1711612800,1711648800),(696,1151,'2020-10-05','2020-10-05',1601906400,1601911800),(697,1152,'2020-10-07','2020-10-07',1602082800,1602086400),(698,1153,'2020-09-22','2020-09-22',1600783200,1600788600),(699,1154,'2020-11-05','2020-11-05',1604588400,1604593800),(700,1155,'2020-11-10','2020-11-10',1605020400,1605025800),(701,1156,'2020-10-13','2020-10-13',1602597600,1602604800),(702,1157,'2020-11-17','2020-11-17',1605625200,1605632400),(703,1158,'2020-10-01','2020-10-01',1601560800,1601566200),(704,1159,'2020-11-19','2020-11-19',1605798000,1605803400),(705,1160,'2020-10-27','2020-10-27',1603807200,1603814400),(706,1161,'2020-11-05','2020-11-05',1604611800,1604617200),(707,1162,'2020-10-20','2020-10-20',1603202400,1603209600),(708,1163,'2020-11-12','2020-11-12',1605193200,1605198600),(709,1164,'2020-09-29','2020-09-29',1601388000,1601395200),(710,1165,'2020-10-29','2020-10-29',1603980000,1603985400),(711,1166,'2020-10-13','2020-10-13',1602621000,1602626400);
/*!40000 ALTER TABLE `lrwp_mec_dates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_mec_events`
--

DROP TABLE IF EXISTS `lrwp_mec_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_mec_events` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `post_id` int(10) NOT NULL,
  `start` date NOT NULL,
  `end` date NOT NULL,
  `repeat` tinyint(4) NOT NULL DEFAULT 0,
  `rinterval` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `year` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `month` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `day` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `week` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `weekday` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `weekdays` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `days` text COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `not_in_days` text COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `time_start` int(10) NOT NULL DEFAULT 0,
  `time_end` int(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ID` (`id`),
  UNIQUE KEY `post_id` (`post_id`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_mec_events`
--

LOCK TABLES `lrwp_mec_events` WRITE;
/*!40000 ALTER TABLE `lrwp_mec_events` DISABLE KEYS */;
INSERT INTO `lrwp_mec_events` VALUES (1,1131,'2020-10-23','2020-10-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',28800,64800),(2,1132,'2020-10-18','0000-00-00',1,'3',NULL,NULL,NULL,NULL,NULL,NULL,'','',28800,64800),(3,1133,'2020-10-19','0000-00-00',1,'7',NULL,NULL,NULL,NULL,NULL,NULL,'','',28800,64800),(4,1134,'2020-10-27','0000-00-00',1,NULL,'*','*',',27,','*','*',NULL,'','',28800,64800),(5,1135,'2020-08-20','0000-00-00',1,NULL,'*',',08,',',20,21,','*','*',NULL,'','',28800,64800),(6,1151,'2020-10-05','2020-10-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,55800),(7,1152,'2020-10-07','2020-10-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,57600),(8,1153,'2020-09-22','2020-09-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,55800),(9,1154,'2020-11-05','2020-11-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,59400),(10,1155,'2020-11-10','2020-11-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,59400),(11,1156,'2020-10-13','2020-10-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,57600),(12,1157,'2020-11-17','2020-11-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,61200),(13,1158,'2020-10-01','2020-10-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,55800),(14,1159,'2020-11-19','2020-11-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,59400),(15,1160,'2020-10-27','2020-10-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,57600),(16,1161,'2020-11-05','2020-11-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',77400,82800),(17,1162,'2020-10-20','2020-10-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,57600),(18,1163,'2020-11-12','2020-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,59400),(19,1164,'2020-09-29','2020-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,57600),(20,1165,'2020-10-29','2020-10-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,55800),(21,1166,'2020-10-13','2020-10-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',73800,79200);
/*!40000 ALTER TABLE `lrwp_mec_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_mec_occurrences`
--

DROP TABLE IF EXISTS `lrwp_mec_occurrences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_mec_occurrences` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` int(10) unsigned NOT NULL,
  `occurrence` int(10) unsigned NOT NULL,
  `params` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `post_id` (`post_id`),
  KEY `occurrence` (`occurrence`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_mec_occurrences`
--

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

--
-- Table structure for table `lrwp_mec_users`
--

DROP TABLE IF EXISTS `lrwp_mec_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_mec_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL,
  `reg` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=1000000 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_mec_users`
--

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

--
-- Table structure for table `lrwp_ninja_table_items`
--

DROP TABLE IF EXISTS `lrwp_ninja_table_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_ninja_table_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `position` int(11) DEFAULT NULL,
  `table_id` int(11) NOT NULL,
  `owner_id` int(11) DEFAULT NULL,
  `attribute` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_ninja_table_items`
--

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

--
-- Table structure for table `lrwp_options`
--

DROP TABLE IF EXISTS `lrwp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=1913087 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_options`
--

LOCK TABLES `lrwp_options` WRITE;
/*!40000 ALTER TABLE `lrwp_options` DISABLE KEYS */;
INSERT INTO `lrwp_options` VALUES (1,'siteurl','https://lantern-realty.com','yes'),(2,'home','https://lantern-realty.com','yes'),(3,'blogname','Lantern Realty and Development','yes'),(4,'blogdescription','Let Us Guide You Home','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','ckeziah127@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.lantern-realty.com','yes'),(15,'mailserver_login','announcements@lantern-realty.com','yes'),(16,'mailserver_pass','2020LanternRD!','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','16','yes'),(19,'default_comment_status','','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','1','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:412:{s:40:\"^homes-for-sale-search-advanced/([^/]+)$\";s:85:\"index.php?pagename=non_existent_page&ihf-type=idx-advanced-search&boardId=$matches[1]\";s:32:\"^homes-for-sale-search-advanced$\";s:65:\"index.php?pagename=non_existent_page&ihf-type=idx-advanced-search\";s:13:\"^office-list$\";s:61:\"index.php?pagename=non_existent_page&ihf-type=idx-office-list\";s:24:\"^mls-portal-office-list$\";s:72:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office-list\";s:41:\"^mls-portal-office-list-name-starts-with$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-board-list-name-starts-with\";s:31:\"^office-detail/([^/]+)/([^/]+)$\";s:107:\"index.php?pagename=non_existent_page&ihf-type=idx-office-detail&officeName=$matches[1]&officeId=$matches[2]\";s:42:\"^mls-portal-office-detail/([^/]+)/([^/]+)$\";s:121:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office&boardOfficeName=$matches[1]&boardOfficeId=$matches[2]\";s:12:\"^agent-list$\";s:60:\"index.php?pagename=non_existent_page&ihf-type=idx-agent-list\";s:23:\"^mls-portal-agent-list$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-list\";s:45:\"^mls-portal-agent-list-last-name-starts-with$\";s:93:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-list-last-name-starts-with\";s:26:\"^mls-portal-office-search$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office-search\";s:25:\"^mls-portal-agent-search$\";s:73:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-search\";s:30:\"^agent-detail/([^/]+)/([^/]+)$\";s:104:\"index.php?pagename=non_existent_page&ihf-type=idx-agent-detail&agentName=$matches[1]&agentId=$matches[2]\";s:34:\"^mls-portal-agent/([^/]+)/([^/]+)$\";s:120:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent&boardMemberName=$matches[1]&boardMemberId=$matches[2]\";s:14:\"^contact-form$\";s:62:\"index.php?pagename=non_existent_page&ihf-type=idx-contact-form\";s:16:\"^valuation-form$\";s:64:\"index.php?pagename=non_existent_page&ihf-type=idx-valuation-form\";s:21:\"^mortgage-calculator$\";s:69:\"index.php?pagename=non_existent_page&ihf-type=idx-mortgage-calculator\";s:18:\"^open-home-search$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-open-home-search-form\";s:23:\"^sold-featured-listing$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-sold-featured-listing\";s:26:\"^pending-featured-listing$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-pending-featured-listing\";s:22:\"^supplemental-listing$\";s:70:\"index.php?pagename=non_existent_page&ihf-type=idx-supplemental-listing\";s:23:\"^homes-for-sale-search$\";s:56:\"index.php?pagename=non_existent_page&ihf-type=idx-search\";s:27:\"^homes-for-sale-map-search$\";s:60:\"index.php?pagename=non_existent_page&ihf-type=idx-map-search\";s:47:\"^property-organizer-delete-saved-search-submit$\";s:95:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-delete-saved-search-submit\";s:56:\"^property-organizer-delete-saved-listing-submit/([^/]+)$\";s:116:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-delete-saved-listing&savedListingId=$matches[1]\";s:22:\"^email-alerts/([^/]+)$\";s:106:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search&boardId=$matches[1]\";s:14:\"^email-alerts$\";s:86:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search\";s:45:\"^property-organizer-edit-saved-search-submit$\";s:93:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search-submit\";s:28:\"^email-updates-confirmation$\";s:90:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-email-updates-success\";s:25:\"^property-organizer-help$\";s:73:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-help\";s:36:\"^property-organizer-edit-subscriber$\";s:84:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-subscriber\";s:26:\"^property-organizer-login$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-login\";s:27:\"^property-organizer-logout$\";s:75:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-logout\";s:46:\"^property-organizer-view-saved-search/([^/]+)$\";s:114:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-search&searchProfileId=$matches[1]\";s:43:\"^property-organizer-view-saved-search-list$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-searches\";s:35:\"^property-organizer-saved-listings$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-listings\";s:46:\"^property-organizer-resend-confirmation-email$\";s:94:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-resend-confirmation-email\";s:29:\"^property-organizer-activate$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-activate-subscriber\";s:31:\"^property-organizer-send-login$\";s:79:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-send-login\";s:32:\"^listing-report/([^/]+)/([^/]+)$\";s:113:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:34:\"^open-home-report/([^/]+)/([^/]+)$\";s:129:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheet-open-home-report&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:31:\"^market-report/([^/]+)/([^/]+)$\";s:126:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheet-market-report&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:25:\"^homes-for-sale-toppicks$\";s:64:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets-list\";s:53:\"^homes-for-sale-sold-details/([^/]+)/([^/]+)/([^/]+)$\";s:134:\"index.php?pagename=non_existent_page&ihf-type=idx-sold-detail&listingAddress=$matches[1]&listingNumber=$matches[2]&boardId=$matches[3]\";s:48:\"^homes-for-sale-details/([^/]+)/([^/]+)/([^/]+)$\";s:129:\"index.php?pagename=non_existent_page&ihf-type=idx-detail&listingAddress=$matches[1]&listingNumber=$matches[2]&boardId=$matches[3]\";s:24:\"^homes-for-sale-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:25:\"^homes-for-sale-featured$\";s:65:\"index.php?pagename=non_existent_page&ihf-type=idx-featured-search\";s:24:\"^listing-report/([^/]+)$\";s:85:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchId=$matches[1]\";s:41:\"^homes-for-sale-toppicks/([^/]+)/([^/]+)$\";s:113:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:25:\"^address-listing-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:20:\"^id-listing-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:33:\"^property-organizer-login-submit$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-login\";s:50:\"^index.php/homes-for-sale-search-advanced/([^/]+)$\";s:85:\"index.php?pagename=non_existent_page&ihf-type=idx-advanced-search&boardId=$matches[1]\";s:42:\"^index.php/homes-for-sale-search-advanced$\";s:65:\"index.php?pagename=non_existent_page&ihf-type=idx-advanced-search\";s:23:\"^index.php/office-list$\";s:61:\"index.php?pagename=non_existent_page&ihf-type=idx-office-list\";s:34:\"^index.php/mls-portal-office-list$\";s:72:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office-list\";s:51:\"^index.php/mls-portal-office-list-name-starts-with$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-board-list-name-starts-with\";s:41:\"^index.php/office-detail/([^/]+)/([^/]+)$\";s:107:\"index.php?pagename=non_existent_page&ihf-type=idx-office-detail&officeName=$matches[1]&officeId=$matches[2]\";s:52:\"^index.php/mls-portal-office-detail/([^/]+)/([^/]+)$\";s:121:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office&boardOfficeName=$matches[1]&boardOfficeId=$matches[2]\";s:22:\"^index.php/agent-list$\";s:60:\"index.php?pagename=non_existent_page&ihf-type=idx-agent-list\";s:33:\"^index.php/mls-portal-agent-list$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-list\";s:55:\"^index.php/mls-portal-agent-list-last-name-starts-with$\";s:93:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-list-last-name-starts-with\";s:36:\"^index.php/mls-portal-office-search$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office-search\";s:35:\"^index.php/mls-portal-agent-search$\";s:73:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-search\";s:40:\"^index.php/agent-detail/([^/]+)/([^/]+)$\";s:104:\"index.php?pagename=non_existent_page&ihf-type=idx-agent-detail&agentName=$matches[1]&agentId=$matches[2]\";s:44:\"^index.php/mls-portal-agent/([^/]+)/([^/]+)$\";s:120:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent&boardMemberName=$matches[1]&boardMemberId=$matches[2]\";s:24:\"^index.php/contact-form$\";s:62:\"index.php?pagename=non_existent_page&ihf-type=idx-contact-form\";s:26:\"^index.php/valuation-form$\";s:64:\"index.php?pagename=non_existent_page&ihf-type=idx-valuation-form\";s:31:\"^index.php/mortgage-calculator$\";s:69:\"index.php?pagename=non_existent_page&ihf-type=idx-mortgage-calculator\";s:28:\"^index.php/open-home-search$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-open-home-search-form\";s:33:\"^index.php/sold-featured-listing$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-sold-featured-listing\";s:36:\"^index.php/pending-featured-listing$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-pending-featured-listing\";s:32:\"^index.php/supplemental-listing$\";s:70:\"index.php?pagename=non_existent_page&ihf-type=idx-supplemental-listing\";s:33:\"^index.php/homes-for-sale-search$\";s:56:\"index.php?pagename=non_existent_page&ihf-type=idx-search\";s:37:\"^index.php/homes-for-sale-map-search$\";s:60:\"index.php?pagename=non_existent_page&ihf-type=idx-map-search\";s:57:\"^index.php/property-organizer-delete-saved-search-submit$\";s:95:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-delete-saved-search-submit\";s:66:\"^index.php/property-organizer-delete-saved-listing-submit/([^/]+)$\";s:116:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-delete-saved-listing&savedListingId=$matches[1]\";s:32:\"^index.php/email-alerts/([^/]+)$\";s:106:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search&boardId=$matches[1]\";s:24:\"^index.php/email-alerts$\";s:86:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search\";s:55:\"^index.php/property-organizer-edit-saved-search-submit$\";s:93:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search-submit\";s:38:\"^index.php/email-updates-confirmation$\";s:90:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-email-updates-success\";s:35:\"^index.php/property-organizer-help$\";s:73:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-help\";s:46:\"^index.php/property-organizer-edit-subscriber$\";s:84:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-subscriber\";s:36:\"^index.php/property-organizer-login$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-login\";s:37:\"^index.php/property-organizer-logout$\";s:75:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-logout\";s:56:\"^index.php/property-organizer-view-saved-search/([^/]+)$\";s:114:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-search&searchProfileId=$matches[1]\";s:53:\"^index.php/property-organizer-view-saved-search-list$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-searches\";s:45:\"^index.php/property-organizer-saved-listings$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-listings\";s:56:\"^index.php/property-organizer-resend-confirmation-email$\";s:94:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-resend-confirmation-email\";s:39:\"^index.php/property-organizer-activate$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-activate-subscriber\";s:41:\"^index.php/property-organizer-send-login$\";s:79:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-send-login\";s:42:\"^index.php/listing-report/([^/]+)/([^/]+)$\";s:113:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:44:\"^index.php/open-home-report/([^/]+)/([^/]+)$\";s:129:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheet-open-home-report&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:41:\"^index.php/market-report/([^/]+)/([^/]+)$\";s:126:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheet-market-report&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:35:\"^index.php/homes-for-sale-toppicks$\";s:64:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets-list\";s:63:\"^index.php/homes-for-sale-sold-details/([^/]+)/([^/]+)/([^/]+)$\";s:134:\"index.php?pagename=non_existent_page&ihf-type=idx-sold-detail&listingAddress=$matches[1]&listingNumber=$matches[2]&boardId=$matches[3]\";s:58:\"^index.php/homes-for-sale-details/([^/]+)/([^/]+)/([^/]+)$\";s:129:\"index.php?pagename=non_existent_page&ihf-type=idx-detail&listingAddress=$matches[1]&listingNumber=$matches[2]&boardId=$matches[3]\";s:34:\"^index.php/homes-for-sale-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:35:\"^index.php/homes-for-sale-featured$\";s:65:\"index.php?pagename=non_existent_page&ihf-type=idx-featured-search\";s:34:\"^index.php/listing-report/([^/]+)$\";s:85:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchId=$matches[1]\";s:51:\"^index.php/homes-for-sale-toppicks/([^/]+)/([^/]+)$\";s:113:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:35:\"^index.php/address-listing-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:30:\"^index.php/id-listing-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:43:\"^index.php/property-organizer-login-submit$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-login\";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:11:\"property/?$\";s:28:\"index.php?post_type=property\";s:41:\"property/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=property&feed=$matches[1]\";s:36:\"property/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=property&feed=$matches[1]\";s:28:\"property/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=property&paged=$matches[1]\";s:9:\"agency/?$\";s:33:\"index.php?post_type=houzez_agency\";s:39:\"agency/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=houzez_agency&feed=$matches[1]\";s:34:\"agency/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=houzez_agency&feed=$matches[1]\";s:26:\"agency/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=houzez_agency&paged=$matches[1]\";s:8:\"agent/?$\";s:32:\"index.php?post_type=houzez_agent\";s:38:\"agent/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=houzez_agent&feed=$matches[1]\";s:33:\"agent/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=houzez_agent&feed=$matches[1]\";s:25:\"agent/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=houzez_agent&paged=$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:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"property/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"property/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"property/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"property/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"property/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"property/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"property/(.+?)/embed/?$\";s:41:\"index.php?property=$matches[1]&embed=true\";s:27:\"property/(.+?)/trackback/?$\";s:35:\"index.php?property=$matches[1]&tb=1\";s:47:\"property/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?property=$matches[1]&feed=$matches[2]\";s:42:\"property/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?property=$matches[1]&feed=$matches[2]\";s:35:\"property/(.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?property=$matches[1]&paged=$matches[2]\";s:42:\"property/(.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?property=$matches[1]&cpage=$matches[2]\";s:31:\"property/(.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?property=$matches[1]&page=$matches[2]\";s:54:\"property-type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_type=$matches[1]&feed=$matches[2]\";s:49:\"property-type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_type=$matches[1]&feed=$matches[2]\";s:30:\"property-type/([^/]+)/embed/?$\";s:46:\"index.php?property_type=$matches[1]&embed=true\";s:42:\"property-type/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?property_type=$matches[1]&paged=$matches[2]\";s:24:\"property-type/([^/]+)/?$\";s:35:\"index.php?property_type=$matches[1]\";s:47:\"status/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?property_status=$matches[1]&feed=$matches[2]\";s:42:\"status/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?property_status=$matches[1]&feed=$matches[2]\";s:23:\"status/([^/]+)/embed/?$\";s:48:\"index.php?property_status=$matches[1]&embed=true\";s:35:\"status/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?property_status=$matches[1]&paged=$matches[2]\";s:17:\"status/([^/]+)/?$\";s:37:\"index.php?property_status=$matches[1]\";s:48:\"feature/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?property_feature=$matches[1]&feed=$matches[2]\";s:43:\"feature/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?property_feature=$matches[1]&feed=$matches[2]\";s:24:\"feature/([^/]+)/embed/?$\";s:49:\"index.php?property_feature=$matches[1]&embed=true\";s:36:\"feature/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?property_feature=$matches[1]&paged=$matches[2]\";s:18:\"feature/([^/]+)/?$\";s:38:\"index.php?property_feature=$matches[1]\";s:46:\"label/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?property_label=$matches[1]&feed=$matches[2]\";s:41:\"label/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?property_label=$matches[1]&feed=$matches[2]\";s:22:\"label/([^/]+)/embed/?$\";s:47:\"index.php?property_label=$matches[1]&embed=true\";s:34:\"label/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?property_label=$matches[1]&paged=$matches[2]\";s:16:\"label/([^/]+)/?$\";s:36:\"index.php?property_label=$matches[1]\";s:48:\"country/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?property_country=$matches[1]&feed=$matches[2]\";s:43:\"country/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?property_country=$matches[1]&feed=$matches[2]\";s:24:\"country/([^/]+)/embed/?$\";s:49:\"index.php?property_country=$matches[1]&embed=true\";s:36:\"country/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?property_country=$matches[1]&paged=$matches[2]\";s:18:\"country/([^/]+)/?$\";s:38:\"index.php?property_country=$matches[1]\";s:46:\"state/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?property_state=$matches[1]&feed=$matches[2]\";s:41:\"state/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?property_state=$matches[1]&feed=$matches[2]\";s:22:\"state/([^/]+)/embed/?$\";s:47:\"index.php?property_state=$matches[1]&embed=true\";s:34:\"state/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?property_state=$matches[1]&paged=$matches[2]\";s:16:\"state/([^/]+)/?$\";s:36:\"index.php?property_state=$matches[1]\";s:45:\"city/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_city=$matches[1]&feed=$matches[2]\";s:40:\"city/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_city=$matches[1]&feed=$matches[2]\";s:21:\"city/([^/]+)/embed/?$\";s:46:\"index.php?property_city=$matches[1]&embed=true\";s:33:\"city/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?property_city=$matches[1]&paged=$matches[2]\";s:15:\"city/([^/]+)/?$\";s:35:\"index.php?property_city=$matches[1]\";s:45:\"area/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_area=$matches[1]&feed=$matches[2]\";s:40:\"area/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_area=$matches[1]&feed=$matches[2]\";s:21:\"area/([^/]+)/embed/?$\";s:46:\"index.php?property_area=$matches[1]&embed=true\";s:33:\"area/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?property_area=$matches[1]&paged=$matches[2]\";s:15:\"area/([^/]+)/?$\";s:35:\"index.php?property_area=$matches[1]\";s:34:\"agency/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"agency/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"agency/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"agency/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"agency/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"agency/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"agency/([^/]+)/embed/?$\";s:46:\"index.php?houzez_agency=$matches[1]&embed=true\";s:27:\"agency/([^/]+)/trackback/?$\";s:40:\"index.php?houzez_agency=$matches[1]&tb=1\";s:47:\"agency/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?houzez_agency=$matches[1]&feed=$matches[2]\";s:42:\"agency/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?houzez_agency=$matches[1]&feed=$matches[2]\";s:35:\"agency/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?houzez_agency=$matches[1]&paged=$matches[2]\";s:42:\"agency/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?houzez_agency=$matches[1]&cpage=$matches[2]\";s:31:\"agency/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?houzez_agency=$matches[1]&page=$matches[2]\";s:23:\"agency/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"agency/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"agency/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"agency/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"agency/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"agency/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"agent/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"agent/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"agent/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"agent/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"agent/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"agent/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:20:\"agent/(.+?)/embed/?$\";s:45:\"index.php?houzez_agent=$matches[1]&embed=true\";s:24:\"agent/(.+?)/trackback/?$\";s:39:\"index.php?houzez_agent=$matches[1]&tb=1\";s:44:\"agent/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?houzez_agent=$matches[1]&feed=$matches[2]\";s:39:\"agent/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?houzez_agent=$matches[1]&feed=$matches[2]\";s:32:\"agent/(.+?)/page/?([0-9]{1,})/?$\";s:52:\"index.php?houzez_agent=$matches[1]&paged=$matches[2]\";s:39:\"agent/(.+?)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?houzez_agent=$matches[1]&cpage=$matches[2]\";s:28:\"agent/(.+?)(?:/([0-9]+))?/?$\";s:51:\"index.php?houzez_agent=$matches[1]&page=$matches[2]\";s:55:\"agent_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?agent_category=$matches[1]&feed=$matches[2]\";s:50:\"agent_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?agent_category=$matches[1]&feed=$matches[2]\";s:31:\"agent_category/([^/]+)/embed/?$\";s:47:\"index.php?agent_category=$matches[1]&embed=true\";s:43:\"agent_category/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?agent_category=$matches[1]&paged=$matches[2]\";s:25:\"agent_category/([^/]+)/?$\";s:36:\"index.php?agent_category=$matches[1]\";s:51:\"agent_city/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?agent_city=$matches[1]&feed=$matches[2]\";s:46:\"agent_city/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?agent_city=$matches[1]&feed=$matches[2]\";s:27:\"agent_city/([^/]+)/embed/?$\";s:43:\"index.php?agent_city=$matches[1]&embed=true\";s:39:\"agent_city/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?agent_city=$matches[1]&paged=$matches[2]\";s:21:\"agent_city/([^/]+)/?$\";s:32:\"index.php?agent_city=$matches[1]\";s:38:\"testimonials/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"testimonials/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"testimonials/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"testimonials/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"testimonials/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"testimonials/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"testimonials/(.+?)/embed/?$\";s:52:\"index.php?houzez_testimonials=$matches[1]&embed=true\";s:31:\"testimonials/(.+?)/trackback/?$\";s:46:\"index.php?houzez_testimonials=$matches[1]&tb=1\";s:39:\"testimonials/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?houzez_testimonials=$matches[1]&paged=$matches[2]\";s:46:\"testimonials/(.+?)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?houzez_testimonials=$matches[1]&cpage=$matches[2]\";s:35:\"testimonials/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?houzez_testimonials=$matches[1]&page=$matches[2]\";s:35:\"partner/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"partner/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"partner/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"partner/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"partner/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"partner/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"partner/([^/]+)/embed/?$\";s:47:\"index.php?houzez_partner=$matches[1]&embed=true\";s:28:\"partner/([^/]+)/trackback/?$\";s:41:\"index.php?houzez_partner=$matches[1]&tb=1\";s:36:\"partner/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?houzez_partner=$matches[1]&paged=$matches[2]\";s:43:\"partner/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?houzez_partner=$matches[1]&cpage=$matches[2]\";s:32:\"partner/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?houzez_partner=$matches[1]&page=$matches[2]\";s:24:\"partner/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"partner/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"partner/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"partner/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"partner/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"partner/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"reviews/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"reviews/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"reviews/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"reviews/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"reviews/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"reviews/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"reviews/(.+?)/embed/?$\";s:66:\"index.php?post_type=houzez_reviews&pagename=$matches[1]&embed=true\";s:26:\"reviews/(.+?)/trackback/?$\";s:60:\"index.php?post_type=houzez_reviews&pagename=$matches[1]&tb=1\";s:34:\"reviews/(.+?)/page/?([0-9]{1,})/?$\";s:73:\"index.php?post_type=houzez_reviews&pagename=$matches[1]&paged=$matches[2]\";s:41:\"reviews/(.+?)/comment-page-([0-9]{1,})/?$\";s:73:\"index.php?post_type=houzez_reviews&pagename=$matches[1]&cpage=$matches[2]\";s:30:\"reviews/(.+?)(?:/([0-9]+))?/?$\";s:72:\"index.php?post_type=houzez_reviews&pagename=$matches[1]&page=$matches[2]\";s:41:\"user_packages/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"user_packages/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"user_packages/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"user_packages/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"user_packages/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"user_packages/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"user_packages/([^/]+)/embed/?$\";s:46:\"index.php?user_packages=$matches[1]&embed=true\";s:34:\"user_packages/([^/]+)/trackback/?$\";s:40:\"index.php?user_packages=$matches[1]&tb=1\";s:42:\"user_packages/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?user_packages=$matches[1]&paged=$matches[2]\";s:49:\"user_packages/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?user_packages=$matches[1]&cpage=$matches[2]\";s:38:\"user_packages/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?user_packages=$matches[1]&page=$matches[2]\";s:30:\"user_packages/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"user_packages/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"user_packages/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"user_packages/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"user_packages/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"user_packages/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"mc4wp-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"mc4wp-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"mc4wp-form/([^/]+)/embed/?$\";s:43:\"index.php?mc4wp-form=$matches[1]&embed=true\";s:31:\"mc4wp-form/([^/]+)/trackback/?$\";s:37:\"index.php?mc4wp-form=$matches[1]&tb=1\";s:39:\"mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&paged=$matches[2]\";s:46:\"mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]\";s:35:\"mc4wp-form/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?mc4wp-form=$matches[1]&page=$matches[2]\";s:27:\"mc4wp-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"mc4wp-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"mc4wp-form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=2&cpage=$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:31:{i:0;s:35:\"redux-framework/redux-framework.php\";i:1;s:53:\"access-category-password/access-category-password.php\";i:2;s:25:\"add-to-any/add-to-any.php\";i:3;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:4;s:35:\"autodescription/autodescription.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:39:\"content-protector/content-protector.php\";i:7;s:23:\"elementor/elementor.php\";i:8;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";i:9;s:35:\"google-site-kit/google-site-kit.php\";i:10;s:25:\"houzez-crm/houzez-crm.php\";i:11;s:47:\"houzez-login-register/houzez-login-register.php\";i:12;s:57:\"houzez-theme-functionality/houzez-theme-functionality.php\";i:13;s:56:\"inline-google-spreadsheet-viewer/inline-gdocs-viewer.php\";i:14;s:27:\"js_composer/js_composer.php\";i:15;s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:16;s:30:\"optima-express/iHomefinder.php\";i:17;s:17:\"postie/postie.php\";i:19;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:21;s:65:\"responsive-mortgage-calculator/responsive-mortgage-calculator.php\";i:22;s:23:\"revslider/revslider.php\";i:23;s:33:\"simple-real-estate-pack-4/srp.php\";i:24;s:25:\"tablepress/tablepress.php\";i:25;s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";i:26;s:37:\"user-role-editor/user-role-editor.php\";i:27;s:19:\"weforms/weforms.php\";i:28;s:17:\"wp-docs/index.php\";i:29;s:35:\"wp-fastest-cache/wpFastestCache.php\";i:30;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:31;s:23:\"wp-smushit/wp-smush.php\";i:32;s:27:\"wps-cleaner/wps-cleaner.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','16','yes'),(39,'recently_edited','a:5:{i:0;s:66:\"/home/lanternrealty/public_html/wp-content/themes/houzez/style.css\";i:2;s:70:\"/home/lanternrealty/public_html/wp-content/plugins/akismet/akismet.php\";i:3;s:67:\"/home/lanternrealty/public_html/wp-content/themes/houzez/footer.php\";i:4;s:82:\"/home/lanternrealty/public_html/wp-content/themes/houzez/template-parts/footer.php\";i:5;s:83:\"/home/lanternrealty/public_html/wp-content/themes/houzez/template/template-page.php\";}','no'),(40,'template','houzez','yes'),(41,'stylesheet','houzez','yes'),(320501,'finished_updating_comment_type','1','yes'),(44,'comment_registration','1','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','houzez_agent','yes'),(48,'db_version','51917','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','0','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'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'),(79,'widget_text','a:3:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:13:\"About Lantern\";s:4:\"text\";s:354:\"Lantern Realty and Development is a full-service real estate agency, founded in 2018. Our team of of highly qualified and recommended agents are ready to help you buy or sell homes and properties throughout North Carolina. We specialize in properties throughout the Kannapolis, Concord, China Grove, Landis, Harrisburg, Salisbury and surrounding markets.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:11:{s:30:\"wp-chatbot/inc/class-ht-cc.php\";a:2:{i:0;s:13:\"HTCC_Register\";i:1;s:9:\"uninstall\";}s:47:\"participants-database/participants-database.php\";a:2:{i:0;s:8:\"PDb_Init\";i:1;s:12:\"on_uninstall\";}s:27:\"wps-cleaner/wps-cleaner.php\";a:2:{i:0;s:23:\"\\WPS\\WPS_Cleaner\\Plugin\";i:1;s:9:\"uninstall\";}s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:59:\"ultimate-social-media-icons/ultimate_social_media_icons.php\";s:20:\"sfsi_Unistall_plugin\";s:45:\"password-protect-page/wp-protect-password.php\";s:31:\"uninstall_password_protect_page\";s:27:\"autoptimize/autoptimize.php\";s:29:\"autoptimizeMain::on_uninstall\";s:59:\"modern-events-calendar-lite/modern-events-calendar-lite.php\";a:2:{i:0;s:11:\"MEC_factory\";i:1;s:9:\"uninstall\";}s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";a:2:{i:0;s:15:\"Account\\Account\";i:1;s:25:\"onUninstallPluginListener\";}s:37:\"user-role-editor/user-role-editor.php\";a:2:{i:0;s:16:\"User_Role_Editor\";i:1;s:9:\"uninstall\";}s:40:\"real-estate-listing-realtyna-wpl/WPL.php\";a:2:{i:0;s:14:\"wpl_extensions\";i:1;s:13:\"uninstall_wpl\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','2','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','28','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','','yes'),(93,'initial_db_version','38590','yes'),(94,'lrwp_user_roles','a:15:{s:13:\"administrator\";a:16:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:222:{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:17:\"create_properties\";b:1;s:18:\"publish_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:23:\"read_private_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:22:\"edit_others_properties\";b:1;s:24:\"delete_others_properties\";b:1;s:23:\"edit_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:18:\"delete_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:19:\"delete_testimonials\";b:1;s:27:\"delete_private_testimonials\";b:1;s:26:\"delete_others_testimonials\";b:1;s:24:\"edit_others_testimonials\";b:1;s:25:\"edit_private_testimonials\";b:1;s:10:\"read_agent\";b:1;s:12:\"delete_agent\";b:1;s:10:\"edit_agent\";b:1;s:13:\"create_agents\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:14:\"publish_agents\";b:1;s:19:\"read_private_agents\";b:1;s:13:\"delete_agents\";b:1;s:21:\"delete_private_agents\";b:1;s:23:\"delete_published_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"edit_private_agents\";b:1;s:21:\"edit_published_agents\";b:1;s:22:\"read_user_registration\";b:1;s:31:\"read_private_user_registrations\";b:1;s:15:\"post_via_postie\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;s:14:\"ure_edit_roles\";b:1;s:16:\"ure_create_roles\";b:1;s:16:\"ure_delete_roles\";b:1;s:23:\"ure_create_capabilities\";b:1;s:23:\"ure_delete_capabilities\";b:1;s:18:\"ure_manage_options\";b:1;s:15:\"ure_reset_roles\";b:1;s:25:\"read_private_testimonials\";b:1;s:12:\"do_not_allow\";b:1;s:22:\"edit_tablepress_tables\";b:1;s:29:\"edit_others_tablepress_tables\";b:1;s:25:\"publish_tablepress_tables\";b:1;s:30:\"read_private_tablepress_tables\";b:1;s:12:\"create_posts\";b:1;s:21:\"erp_ac_create_account\";b:1;s:27:\"erp_ac_create_bank_transfer\";b:1;s:22:\"erp_ac_create_customer\";b:1;s:29:\"erp_ac_create_expenses_credit\";b:1;s:30:\"erp_ac_create_expenses_voucher\";b:1;s:21:\"erp_ac_create_journal\";b:1;s:27:\"erp_ac_create_sales_invoice\";b:1;s:27:\"erp_ac_create_sales_payment\";b:1;s:20:\"erp_ac_create_vendor\";b:1;s:21:\"erp_ac_delete_account\";b:1;s:22:\"erp_ac_delete_customer\";b:1;s:29:\"erp_ac_delete_other_customers\";b:1;s:27:\"erp_ac_delete_other_vendors\";b:1;s:20:\"erp_ac_delete_vendor\";b:1;s:19:\"erp_ac_edit_account\";b:1;s:20:\"erp_ac_edit_customer\";b:1;s:27:\"erp_ac_edit_other_customers\";b:1;s:25:\"erp_ac_edit_other_vendors\";b:1;s:18:\"erp_ac_edit_vendor\";b:1;s:30:\"erp_ac_publish_expenses_credit\";b:1;s:31:\"erp_ac_publish_expenses_voucher\";b:1;s:28:\"erp_ac_publish_sales_invoice\";b:1;s:28:\"erp_ac_publish_sales_payment\";b:1;s:25:\"erp_ac_view_account_lists\";b:1;s:25:\"erp_ac_view_bank_accounts\";b:1;s:20:\"erp_ac_view_customer\";b:1;s:21:\"erp_ac_view_dashboard\";b:1;s:19:\"erp_ac_view_expense\";b:1;s:28:\"erp_ac_view_expenses_summary\";b:1;s:19:\"erp_ac_view_journal\";b:1;s:27:\"erp_ac_view_other_customers\";b:1;s:26:\"erp_ac_view_other_expenses\";b:1;s:26:\"erp_ac_view_other_journals\";b:1;s:23:\"erp_ac_view_other_sales\";b:1;s:25:\"erp_ac_view_other_vendors\";b:1;s:19:\"erp_ac_view_reports\";b:1;s:16:\"erp_ac_view_sale\";b:1;s:25:\"erp_ac_view_sales_summary\";b:1;s:26:\"erp_ac_view_single_account\";b:1;s:27:\"erp_ac_view_single_customer\";b:1;s:25:\"erp_ac_view_single_vendor\";b:1;s:18:\"erp_ac_view_vendor\";b:1;s:17:\"erp_can_terminate\";b:1;s:22:\"erp_crate_announcement\";b:1;s:21:\"erp_create_attendance\";b:1;s:20:\"erp_create_dependent\";b:1;s:19:\"erp_create_document\";b:1;s:20:\"erp_create_education\";b:1;s:19:\"erp_create_employee\";b:1;s:21:\"erp_create_experience\";b:1;s:17:\"erp_create_review\";b:1;s:21:\"erp_delete_attendance\";b:1;s:20:\"erp_delete_dependent\";b:1;s:19:\"erp_delete_document\";b:1;s:20:\"erp_delete_education\";b:1;s:19:\"erp_delete_employee\";b:1;s:21:\"erp_delete_experience\";b:1;s:17:\"erp_delete_review\";b:1;s:19:\"erp_edit_attendance\";b:1;s:18:\"erp_edit_dependent\";b:1;s:17:\"erp_edit_document\";b:1;s:18:\"erp_edit_education\";b:1;s:17:\"erp_edit_employee\";b:1;s:19:\"erp_edit_experience\";b:1;s:24:\"erp_leave_create_request\";b:1;s:16:\"erp_leave_manage\";b:1;s:17:\"erp_list_employee\";b:1;s:23:\"erp_manage_announcement\";b:1;s:21:\"erp_manage_department\";b:1;s:22:\"erp_manage_designation\";b:1;s:22:\"erp_manage_hr_settings\";b:1;s:18:\"erp_manage_jobinfo\";b:1;s:17:\"erp_manage_review\";b:1;s:21:\"erp_view_announcement\";b:1;s:19:\"erp_view_attendance\";b:1;s:18:\"erp_view_dependent\";b:1;s:17:\"erp_view_document\";b:1;s:18:\"erp_view_education\";b:1;s:17:\"erp_view_employee\";b:1;s:19:\"erp_view_experience\";b:1;s:16:\"erp_view_jobinfo\";b:1;s:13:\"erp_view_list\";b:1;s:17:\"install_languages\";b:1;s:14:\"resume_plugins\";b:1;s:13:\"resume_themes\";b:1;s:23:\"view_site_health_checks\";b:1;s:13:\"config_postie\";b:1;s:19:\"delete_user_package\";b:1;s:20:\"delete_user_packages\";b:1;s:18:\"edit_user_packages\";b:1;s:27:\"delete_others_user_packages\";b:1;s:24:\"wpcf7_edit_contact_forms\";b:1;s:24:\"delete_tablepress_tables\";b:1;s:24:\"gdoc_query_sql_databases\";b:1;}s:22:\"_um_can_access_wpadmin\";i:1;s:24:\"_um_can_not_see_adminbar\";i:0;s:21:\"_um_can_edit_everyone\";i:1;s:23:\"_um_can_delete_everyone\";i:1;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:20:\"_um_default_homepage\";i:1;s:15:\"_um_after_login\";s:14:\"redirect_admin\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:1;s:30:\"_um_can_access_private_profile\";i:1;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:6:\"editor\";a:16:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:83:{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:17:\"create_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:18:\"publish_properties\";b:1;s:15:\"edit_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:23:\"read_private_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:22:\"edit_others_properties\";b:1;s:24:\"delete_others_properties\";b:1;s:23:\"edit_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:18:\"delete_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:19:\"delete_testimonials\";b:1;s:27:\"delete_private_testimonials\";b:1;s:26:\"delete_others_testimonials\";b:1;s:24:\"edit_others_testimonials\";b:1;s:25:\"edit_private_testimonials\";b:1;s:10:\"read_agent\";b:1;s:12:\"delete_agent\";b:1;s:10:\"edit_agent\";b:1;s:13:\"create_agents\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:14:\"publish_agents\";b:1;s:19:\"read_private_agents\";b:1;s:13:\"delete_agents\";b:1;s:21:\"delete_private_agents\";b:1;s:23:\"delete_published_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"edit_private_agents\";b:1;s:21:\"edit_published_agents\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:6:\"author\";a:16:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:20:{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:15:\"post_via_postie\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:11:\"contributor\";a:16:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:12:{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:17:\"create_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:15:\"edit_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:10:\"subscriber\";a:16:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:14:\"erp_hr_manager\";a:2:{s:4:\"name\";s:10:\"HR Manager\";s:12:\"capabilities\";a:42:{s:4:\"read\";b:1;s:12:\"upload_files\";b:1;s:13:\"erp_view_list\";b:1;s:17:\"erp_list_employee\";b:1;s:19:\"erp_create_employee\";b:1;s:17:\"erp_view_employee\";b:1;s:17:\"erp_edit_employee\";b:1;s:19:\"erp_delete_employee\";b:1;s:17:\"erp_create_review\";b:1;s:17:\"erp_delete_review\";b:1;s:17:\"erp_manage_review\";b:1;s:22:\"erp_crate_announcement\";b:1;s:21:\"erp_view_announcement\";b:1;s:23:\"erp_manage_announcement\";b:1;s:18:\"erp_manage_jobinfo\";b:1;s:16:\"erp_view_jobinfo\";b:1;s:21:\"erp_manage_department\";b:1;s:22:\"erp_manage_designation\";b:1;s:24:\"erp_leave_create_request\";b:1;s:16:\"erp_leave_manage\";b:1;s:22:\"erp_manage_hr_settings\";b:1;s:21:\"erp_create_experience\";b:1;s:19:\"erp_edit_experience\";b:1;s:19:\"erp_view_experience\";b:1;s:21:\"erp_delete_experience\";b:1;s:20:\"erp_create_education\";b:1;s:18:\"erp_edit_education\";b:1;s:18:\"erp_view_education\";b:1;s:20:\"erp_delete_education\";b:1;s:17:\"erp_can_terminate\";b:1;s:20:\"erp_create_dependent\";b:1;s:18:\"erp_edit_dependent\";b:1;s:18:\"erp_view_dependent\";b:1;s:20:\"erp_delete_dependent\";b:1;s:19:\"erp_create_document\";b:1;s:17:\"erp_edit_document\";b:1;s:17:\"erp_view_document\";b:1;s:19:\"erp_delete_document\";b:1;s:21:\"erp_create_attendance\";b:1;s:19:\"erp_edit_attendance\";b:1;s:19:\"erp_view_attendance\";b:1;s:21:\"erp_delete_attendance\";b:1;}}s:8:\"employee\";a:2:{s:4:\"name\";s:8:\"Employee\";s:12:\"capabilities\";a:26:{s:4:\"read\";b:1;s:12:\"upload_files\";b:1;s:13:\"erp_view_list\";b:1;s:17:\"erp_list_employee\";b:1;s:17:\"erp_view_employee\";b:1;s:17:\"erp_edit_employee\";b:1;s:16:\"erp_view_jobinfo\";b:1;s:24:\"erp_leave_create_request\";b:1;s:21:\"erp_view_announcement\";b:1;s:21:\"erp_create_experience\";b:1;s:19:\"erp_edit_experience\";b:1;s:19:\"erp_view_experience\";b:1;s:21:\"erp_delete_experience\";b:1;s:20:\"erp_create_education\";b:1;s:18:\"erp_edit_education\";b:1;s:18:\"erp_view_education\";b:1;s:20:\"erp_delete_education\";b:1;s:20:\"erp_create_dependent\";b:1;s:18:\"erp_edit_dependent\";b:1;s:18:\"erp_view_dependent\";b:1;s:20:\"erp_delete_dependent\";b:1;s:19:\"erp_create_document\";b:1;s:17:\"erp_edit_document\";b:1;s:17:\"erp_view_document\";b:1;s:19:\"erp_delete_document\";b:1;s:19:\"erp_view_attendance\";b:1;}}s:14:\"erp_ac_manager\";a:2:{s:4:\"name\";s:18:\"Accounting Manager\";s:12:\"capabilities\";a:43:{s:4:\"read\";b:1;s:21:\"erp_ac_view_dashboard\";b:1;s:20:\"erp_ac_view_customer\";b:1;s:27:\"erp_ac_view_single_customer\";b:1;s:27:\"erp_ac_view_other_customers\";b:1;s:22:\"erp_ac_create_customer\";b:1;s:20:\"erp_ac_edit_customer\";b:1;s:27:\"erp_ac_edit_other_customers\";b:1;s:22:\"erp_ac_delete_customer\";b:1;s:29:\"erp_ac_delete_other_customers\";b:1;s:18:\"erp_ac_view_vendor\";b:1;s:25:\"erp_ac_view_other_vendors\";b:1;s:20:\"erp_ac_create_vendor\";b:1;s:18:\"erp_ac_edit_vendor\";b:1;s:25:\"erp_ac_edit_other_vendors\";b:1;s:20:\"erp_ac_delete_vendor\";b:1;s:27:\"erp_ac_delete_other_vendors\";b:1;s:16:\"erp_ac_view_sale\";b:1;s:25:\"erp_ac_view_single_vendor\";b:1;s:23:\"erp_ac_view_other_sales\";b:1;s:25:\"erp_ac_view_sales_summary\";b:1;s:27:\"erp_ac_create_sales_payment\";b:1;s:28:\"erp_ac_publish_sales_payment\";b:1;s:27:\"erp_ac_create_sales_invoice\";b:1;s:28:\"erp_ac_publish_sales_invoice\";b:1;s:19:\"erp_ac_view_expense\";b:1;s:26:\"erp_ac_view_other_expenses\";b:1;s:28:\"erp_ac_view_expenses_summary\";b:1;s:30:\"erp_ac_create_expenses_voucher\";b:1;s:31:\"erp_ac_publish_expenses_voucher\";b:1;s:29:\"erp_ac_create_expenses_credit\";b:1;s:30:\"erp_ac_publish_expenses_credit\";b:1;s:25:\"erp_ac_view_account_lists\";b:1;s:26:\"erp_ac_view_single_account\";b:1;s:21:\"erp_ac_create_account\";b:1;s:19:\"erp_ac_edit_account\";b:1;s:21:\"erp_ac_delete_account\";b:1;s:25:\"erp_ac_view_bank_accounts\";b:1;s:27:\"erp_ac_create_bank_transfer\";b:1;s:19:\"erp_ac_view_journal\";b:1;s:26:\"erp_ac_view_other_journals\";b:1;s:21:\"erp_ac_create_journal\";b:1;s:19:\"erp_ac_view_reports\";b:1;}}s:12:\"houzez_buyer\";a:2:{s:4:\"name\";s:5:\"Buyer\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;}}s:13:\"houzez_agency\";a:2:{s:4:\"name\";s:6:\"Agency\";s:12:\"capabilities\";a:21:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:7:\"level_2\";b:1;}}s:12:\"houzez_agent\";a:2:{s:4:\"name\";s:5:\"Agent\";s:12:\"capabilities\";a:21:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:7:\"level_2\";b:1;}}s:13:\"houzez_seller\";a:2:{s:4:\"name\";s:6:\"Seller\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:13:\"read_property\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_2\";b:1;}}s:12:\"houzez_owner\";a:2:{s:4:\"name\";s:5:\"Owner\";s:12:\"capabilities\";a:14:{s:4:\"read\";b:0;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:0;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_2\";b:1;}}s:14:\"houzez_manager\";a:2:{s:4:\"name\";s:7:\"Manager\";s:12:\"capabilities\";a:14:{s:4:\"read\";b:0;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:0;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_5\";b:1;}}s:5:\"owner\";a:2:{s:4:\"name\";s:5:\"Owner\";s:12:\"capabilities\";a:62:{s:13:\"create_agents\";b:1;s:12:\"create_posts\";b:1;s:19:\"create_testimonials\";b:1;s:12:\"delete_agent\";b:1;s:13:\"delete_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"delete_others_posts\";b:1;s:26:\"delete_others_testimonials\";b:1;s:12:\"delete_posts\";b:1;s:21:\"delete_private_agents\";b:1;s:20:\"delete_private_posts\";b:1;s:27:\"delete_private_testimonials\";b:1;s:23:\"delete_published_agents\";b:1;s:22:\"delete_published_posts\";b:1;s:29:\"delete_published_testimonials\";b:1;s:18:\"delete_testimonial\";b:1;s:19:\"delete_testimonials\";b:1;s:10:\"edit_agent\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:17:\"edit_others_posts\";b:1;s:29:\"edit_others_tablepress_tables\";b:1;s:24:\"edit_others_testimonials\";b:1;s:10:\"edit_posts\";b:1;s:19:\"edit_private_agents\";b:1;s:18:\"edit_private_posts\";b:1;s:25:\"edit_private_testimonials\";b:1;s:21:\"edit_published_agents\";b:1;s:20:\"edit_published_posts\";b:1;s:27:\"edit_published_testimonials\";b:1;s:22:\"edit_tablepress_tables\";b:1;s:16:\"edit_testimonial\";b:1;s:17:\"edit_testimonials\";b:1;s:7:\"level_0\";b:1;s:7:\"level_1\";b:1;s:7:\"level_2\";b:1;s:14:\"publish_agents\";b:1;s:13:\"publish_posts\";b:1;s:25:\"publish_tablepress_tables\";b:1;s:20:\"publish_testimonials\";b:1;s:4:\"read\";b:1;s:10:\"read_agent\";b:1;s:19:\"read_private_agents\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:23:\"read_private_properties\";b:1;s:30:\"read_private_tablepress_tables\";b:1;s:25:\"read_private_testimonials\";b:1;s:31:\"read_private_user_registrations\";b:1;s:13:\"read_property\";b:1;s:16:\"read_testimonial\";b:1;s:22:\"read_user_registration\";b:1;s:30:\"tablepress_access_about_screen\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:12:\"upload_files\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:3:{s:5:\"title\";s:6:\"Recent\";s:6:\"number\";i:3;s:9:\"show_date\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:16:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:10:\"calendar-2\";i:1;s:25:\"ihomefindersocialwidget-3\";i:2;s:31:\"ihomefinderhotsheetlistwidget-3\";i:3;s:27:\"ihomefinderagentbiowidget-3\";}s:15:\"default-sidebar\";a:2:{i:0;s:14:\"recent-posts-2\";i:1;s:12:\"categories-2\";}s:16:\"property-listing\";a:0:{}s:14:\"search-sidebar\";a:4:{i:0;s:23:\"a2a_share_save_widget-2\";i:1;s:24:\"ihomefinderloginwidget-3\";i:2;s:30:\"ihomefinderpropertiesgallery-3\";i:3;s:6:\"text-2\";}s:15:\"single-property\";a:0:{}s:12:\"page-sidebar\";a:8:{i:0;s:23:\"a2a_share_save_widget-3\";i:1;s:24:\"ihomefinderloginwidget-4\";i:2;s:30:\"ihomefinderpropertiesgallery-4\";i:3;s:14:\"media_image-12\";i:4;s:14:\"media_image-15\";i:5;s:14:\"media_image-18\";i:6;s:14:\"media_image-13\";i:7;s:14:\"media_image-14\";}s:14:\"agency-sidebar\";a:0:{}s:13:\"agent-sidebar\";a:6:{i:0;s:28:\"ihomefindervaluationwidget-3\";i:1;s:13:\"media_image-8\";i:2;s:14:\"media_image-16\";i:3;s:14:\"media_image-17\";i:4;s:13:\"media_image-9\";i:5;s:14:\"media_image-10\";}s:23:\"hz-custom-widget-area-1\";a:0:{}s:23:\"hz-custom-widget-area-2\";a:0:{}s:23:\"hz-custom-widget-area-3\";a:0:{}s:16:\"footer-sidebar-1\";a:1:{i:0;s:16:\"houzez_contact-2\";}s:16:\"footer-sidebar-2\";a:1:{i:0;s:13:\"media_image-4\";}s:16:\"footer-sidebar-3\";a:1:{i:0;s:13:\"media_image-3\";}s:16:\"footer-sidebar-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_calendar','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_image','a:13:{i:3;a:15:{s:13:\"attachment_id\";i:317;s:3:\"url\";s:73:\"https://lantern-realty.com/wp-content/uploads/2018/08/HomeValue-02-01.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:665;s:6:\"height\";i:149;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:16:\"/valuation-form/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:4;a:15:{s:13:\"attachment_id\";i:356;s:3:\"url\";s:75:\"https://lantern-realty.com/wp-content/uploads/2018/09/ehomlslogo-300x99.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:717;s:6:\"height\";i:237;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:8;a:15:{s:13:\"attachment_id\";i:451;s:3:\"url\";s:81:\"https://lantern-realty.com/wp-content/uploads/2019/02/Terry-Whitesell-300x140.png\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:952;s:6:\"height\";i:444;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:30:\"http://www.terrywhitesell.com/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:9;a:15:{s:13:\"attachment_id\";i:453;s:3:\"url\";s:87:\"https://lantern-realty.com/wp-content/uploads/2019/02/HomeWarrantyofAmerica-300x131.jpg\";s:5:\"title\";s:29:\"Lantern Home Warranty Partner\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:331;s:6:\"height\";i:144;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:32:\"https://www.hwahomewarranty.com/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:10;a:15:{s:13:\"attachment_id\";i:456;s:3:\"url\";s:74:\"https://lantern-realty.com/wp-content/uploads/2019/02/KnippLaw-300x163.jpg\";s:5:\"title\";s:38:\"Lantern Preferred Real Estate Law Firm\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:500;s:6:\"height\";i:272;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:64:\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:12;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:952;s:6:\"height\";i:444;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:30:\"http://www.terrywhitesell.com/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:451;s:3:\"url\";s:81:\"https://lantern-realty.com/wp-content/uploads/2019/02/Terry-Whitesell-300x140.png\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";}i:13;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:331;s:6:\"height\";i:144;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:32:\"https://www.hwahomewarranty.com/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:453;s:3:\"url\";s:87:\"https://lantern-realty.com/wp-content/uploads/2019/02/HomeWarrantyofAmerica-300x131.jpg\";s:5:\"title\";s:29:\"Lantern Home Warranty Partner\";}i:14;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:500;s:6:\"height\";i:272;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:64:\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:456;s:3:\"url\";s:74:\"https://lantern-realty.com/wp-content/uploads/2019/02/KnippLaw-300x163.jpg\";s:5:\"title\";s:38:\"Lantern Preferred Real Estate Law Firm\";}i:15;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:38:\"https://ryanivory.excellencebyarc.com/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:1930;s:3:\"url\";s:85:\"https://lantern-realty.com/wp-content/uploads/2021/06/Ryan-Ivory_ARC_Home-300x169.jpg\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";}i:16;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:38:\"https://ryanivory.excellencebyarc.com/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:1930;s:3:\"url\";s:85:\"https://lantern-realty.com/wp-content/uploads/2021/06/Ryan-Ivory_ARC_Home-300x169.jpg\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";}i:17;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:591;s:6:\"height\";i:281;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:34:\"https://alcova.com/apply?lo=skteam\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:2188;s:3:\"url\";s:79:\"https://lantern-realty.com/wp-content/uploads/2021/12/Stephen_Knorr-300x143.png\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";}i:18;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:591;s:6:\"height\";i:281;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:34:\"https://alcova.com/apply?lo=skteam\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:2188;s:3:\"url\";s:79:\"https://lantern-realty.com/wp-content/uploads/2021/12/Stephen_Knorr-300x143.png\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'cron','a:24:{i:1657490898;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1657490988;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657491354;a:1:{s:17:\"check_postie_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"tenminutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1657491983;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:1657493259;a:1:{s:29:\"wps_cleaner_indexation_medias\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1657494427;a:1:{s:26:\"um_hourly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1657496666;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:1657499183;a:2:{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:1657499211;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:1657499937;a:1:{s:36:\"houzez_check_new_listing_action_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657502126;a:1:{s:41:\"googlesitekit_cron_update_remote_features\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1657504869;a:1:{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;}}}i:1657508827;a:1:{s:30:\"um_twicedaily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1657509975;a:1:{s:31:\"eael_remove_unused_options_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657512120;a:1:{s:29:\"mc4wp_refresh_mailchimp_lists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657530677;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1657548362;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657550672;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:1657552027;a:1:{s:25:\"um_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657553429;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657562161;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657654760;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1657897627;a:1:{s:26:\"um_weekly_scheduled_events\";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'),(112,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1534725238;s:4:\"data\";a:4:{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:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(172,'widget_ihomefinderlinkwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'smm_version','1.3.1','yes'),(123,'disable_smm','0','yes'),(124,'wpforms_shareasale_id','1587694','yes'),(128,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(130,'do_activate','0','yes'),(357324,'_transient_5c7179c35_custom_js','','yes'),(357325,'_transient_5c7179c35_updated_at','1605059632','yes'),(357337,'_transient_1bdda03bc_elements','a:0:{}','yes'),(357338,'_transient_1bdda03bc_custom_js','','yes'),(357339,'_transient_1bdda03bc_updated_at','1605059632','yes'),(357341,'_transient_665cf839e_elements','a:0:{}','yes'),(357342,'_transient_665cf839e_custom_js','','yes'),(357343,'_transient_665cf839e_updated_at','1605059632','yes'),(357346,'_transient_c68aa4a6d_elements','a:0:{}','yes'),(357347,'_transient_c68aa4a6d_custom_js','','yes'),(357348,'_transient_c68aa4a6d_updated_at','1605059632','yes'),(357371,'_transient_0aefd1f97_elements','a:0:{}','yes'),(357372,'_transient_0aefd1f97_custom_js','','yes'),(357373,'_transient_0aefd1f97_updated_at','1605059632','yes'),(357397,'_transient_da8c22f62_elements','a:0:{}','yes'),(357398,'_transient_da8c22f62_custom_js','','yes'),(357399,'_transient_da8c22f62_updated_at','1605059632','yes'),(357418,'_transient_3f8fdefbd_elements','a:0:{}','yes'),(357419,'_transient_3f8fdefbd_custom_js','','yes'),(357420,'_transient_3f8fdefbd_updated_at','1605059632','yes'),(357454,'_transient_d12087048_elements','a:0:{}','yes'),(357455,'_transient_d12087048_custom_js','','yes'),(357456,'_transient_d12087048_updated_at','1605059632','yes'),(140,'_amn_wpforms-lite_last_checked','1587945600','yes'),(141,'wpforms_review','a:2:{s:4:\"time\";i:1536838396;s:9:\"dismissed\";b:1;}','yes'),(146,'recently_activated','a:0:{}','yes'),(305,'widget_houzez_advanced_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1869,'autodescription-site-settings','a:142:{s:22:\"display_seo_bar_tables\";i:1;s:21:\"display_pixel_counter\";i:1;s:25:\"display_character_counter\";i:1;s:18:\"alter_search_query\";i:1;s:23:\"alter_search_query_type\";s:8:\"in_query\";s:19:\"alter_archive_query\";i:1;s:24:\"alter_archive_query_type\";s:8:\"in_query\";s:13:\"cache_sitemap\";i:1;s:16:\"canonical_scheme\";s:5:\"https\";s:18:\"prev_next_archives\";i:1;s:19:\"prev_next_frontpage\";i:1;s:17:\"timestamps_format\";s:1:\"1\";s:15:\"title_seperator\";s:4:\"pipe\";s:14:\"title_location\";s:5:\"right\";s:21:\"description_separator\";s:4:\"pipe\";s:21:\"description_additions\";i:1;s:20:\"description_blogname\";i:1;s:22:\"homepage_title_tagline\";s:0:\"\";s:14:\"homepage_title\";s:0:\"\";s:20:\"homepage_description\";s:350:\"Lantern Realty and Development is a full service real estate agency based in Kannapolis, North Carolina. We proudly serve Kannapolis, Concord, Harrisburg, Landis, China Grove, and the surrounding areas. Real Estate Specialties: Buyers Agent, Listing Agent, Foreclosures, Short Sales, First Time Home Buyers, New Construction, Relocation, VA purchases\";s:19:\"home_title_location\";s:4:\"left\";s:16:\"homepage_tagline\";i:1;s:25:\"homepage_social_image_url\";s:0:\"\";s:24:\"homepage_social_image_id\";i:0;s:7:\"og_tags\";i:1;s:13:\"facebook_tags\";i:1;s:12:\"twitter_tags\";i:1;s:19:\"social_image_fb_url\";s:0:\"\";s:18:\"social_image_fb_id\";i:0;s:14:\"facebook_appid\";s:0:\"\";s:18:\"facebook_publisher\";s:38:\"https://www.facebook.com/lanternrealty\";s:15:\"facebook_author\";s:0:\"\";s:12:\"twitter_card\";s:19:\"summary_large_image\";s:12:\"twitter_site\";s:0:\"\";s:15:\"twitter_creator\";s:0:\"\";s:17:\"post_publish_time\";i:1;s:16:\"post_modify_time\";i:1;s:19:\"ld_json_breadcrumbs\";i:1;s:17:\"ld_json_searchbox\";i:1;s:16:\"knowledge_output\";i:1;s:14:\"knowledge_type\";s:12:\"organization\";s:14:\"knowledge_name\";s:0:\"\";s:14:\"knowledge_logo\";i:1;s:18:\"knowledge_logo_url\";s:0:\"\";s:17:\"knowledge_logo_id\";i:0;s:18:\"knowledge_facebook\";s:0:\"\";s:17:\"knowledge_twitter\";s:0:\"\";s:15:\"knowledge_gplus\";s:0:\"\";s:19:\"knowledge_instagram\";s:0:\"\";s:17:\"knowledge_youtube\";s:0:\"\";s:18:\"knowledge_linkedin\";s:0:\"\";s:19:\"knowledge_pinterest\";s:0:\"\";s:20:\"knowledge_soundcloud\";s:0:\"\";s:16:\"knowledge_tumblr\";s:0:\"\";s:6:\"noydir\";i:1;s:13:\"paged_noindex\";i:1;s:12:\"date_noindex\";i:1;s:14:\"search_noindex\";i:1;s:18:\"attachment_noindex\";i:1;s:19:\"google_verification\";s:0:\"\";s:17:\"bing_verification\";s:0:\"\";s:19:\"yandex_verification\";s:0:\"\";s:17:\"pint_verification\";s:0:\"\";s:15:\"sitemaps_output\";i:1;s:15:\"sitemaps_robots\";i:1;s:17:\"sitemaps_modified\";i:1;s:11:\"ping_google\";i:1;s:9:\"ping_bing\";i:1;s:11:\"ping_yandex\";i:1;s:14:\"sitemap_styles\";i:1;s:18:\"sitemap_color_main\";s:4:\"#333\";s:20:\"sitemap_color_accent\";s:7:\"#00cd98\";s:16:\"excerpt_the_feed\";i:1;s:15:\"source_the_feed\";i:1;s:12:\"updated_3060\";i:1;s:22:\"cache_meta_description\";i:0;s:17:\"cache_meta_schema\";i:0;s:12:\"cache_object\";i:0;s:23:\"display_seo_bar_metabox\";i:0;s:19:\"title_rem_additions\";i:0;s:18:\"title_rem_prefixes\";i:0;s:16:\"category_noindex\";i:0;s:11:\"tag_noindex\";i:0;s:14:\"author_noindex\";i:0;s:12:\"site_noindex\";i:0;s:17:\"category_nofollow\";i:0;s:12:\"tag_nofollow\";i:0;s:15:\"author_nofollow\";i:0;s:13:\"date_nofollow\";i:0;s:15:\"search_nofollow\";i:0;s:19:\"attachment_nofollow\";i:0;s:13:\"site_nofollow\";i:0;s:18:\"category_noarchive\";i:0;s:13:\"tag_noarchive\";i:0;s:16:\"author_noarchive\";i:0;s:14:\"date_noarchive\";i:0;s:16:\"search_noarchive\";i:0;s:20:\"attachment_noarchive\";i:0;s:14:\"site_noarchive\";i:0;s:18:\"home_paged_noindex\";i:0;s:16:\"homepage_noindex\";i:0;s:17:\"homepage_nofollow\";i:0;s:18:\"homepage_noarchive\";i:0;s:13:\"shortlink_tag\";i:0;s:15:\"prev_next_posts\";i:0;s:12:\"sitemap_logo\";i:0;s:15:\"title_separator\";s:4:\"pipe\";s:23:\"homepage_og_description\";s:0:\"\";s:28:\"homepage_twitter_description\";s:0:\"\";s:17:\"homepage_og_title\";s:0:\"\";s:22:\"homepage_twitter_title\";s:0:\"\";s:16:\"title_strip_tags\";i:0;s:16:\"auto_description\";i:1;s:17:\"sitemaps_priority\";i:1;s:19:\"disabled_post_types\";a:0:{}s:18:\"noindex_post_types\";a:1:{s:10:\"attachment\";i:1;}s:19:\"nofollow_post_types\";a:1:{s:10:\"attachment\";i:0;}s:20:\"noarchive_post_types\";a:1:{s:10:\"attachment\";i:0;}s:19:\"sitemap_query_limit\";i:1200;s:13:\"ping_use_cron\";i:1;s:15:\"seo_bar_symbols\";i:0;s:25:\"advanced_query_protection\";i:0;s:24:\"set_copyright_directives\";i:0;s:20:\"oembed_remove_author\";i:0;s:14:\"oembed_scripts\";i:1;s:14:\"multi_og_image\";i:0;s:14:\"index_the_feed\";i:0;s:18:\"baidu_verification\";s:0:\"\";s:11:\"theme_color\";s:0:\"\";s:17:\"max_image_preview\";s:8:\"standard\";s:18:\"max_snippet_length\";i:0;s:17:\"max_video_preview\";i:0;s:19:\"disabled_taxonomies\";a:0:{}s:19:\"oembed_use_og_title\";i:0;s:23:\"oembed_use_social_image\";i:0;s:26:\"social_title_rem_additions\";i:0;s:15:\"sitemap_logo_id\";i:0;s:18:\"noindex_taxonomies\";a:1:{s:11:\"post_format\";i:1;}s:19:\"nofollow_taxonomies\";a:0:{}s:20:\"noarchive_taxonomies\";a:0:{}s:16:\"sitemap_logo_url\";s:0:\"\";s:23:\"ping_use_cron_prerender\";i:0;}','yes'),(151,'ihf-option-layout-type','responsive','yes'),(152,'widget_ihomefinderpropertiesgallery','a:3:{i:3;a:28:{s:11:\"galleryType\";s:15:\"featuredListing\";s:9:\"listingID\";s:0:\"\";s:4:\"name\";s:18:\"Lantern Properties\";s:15:\"propertiesShown\";s:1:\"5\";s:6:\"cityId\";s:0:\"\";s:12:\"propertyType\";s:0:\"\";s:3:\"bed\";s:0:\"\";s:4:\"bath\";s:0:\"\";s:8:\"minPrice\";s:0:\"\";s:8:\"maxPrice\";s:0:\"\";s:10:\"hotSheetId\";s:6:\"815189\";s:8:\"linkText\";s:8:\"View all\";s:19:\"idx-advanced-search\";b:1;s:16:\"idx-contact-form\";b:1;s:40:\"idx-property-organizer-edit-saved-search\";b:1;s:19:\"idx-featured-search\";b:1;s:10:\"idx-detail\";b:1;s:14:\"idx-map-search\";b:1;s:13:\"idx-hotsheets\";b:1;s:25:\"idx-open-home-search-form\";b:1;s:28:\"idx-property-organizer-login\";b:1;s:28:\"idx-pending-featured-listing\";b:1;s:10:\"idx-search\";b:1;s:11:\"idx-results\";b:1;s:25:\"idx-sold-featured-listing\";b:1;s:15:\"idx-sold-detail\";b:1;s:24:\"idx-supplemental-listing\";b:1;s:18:\"idx-valuation-form\";b:1;}i:4;a:28:{s:11:\"galleryType\";s:15:\"featuredListing\";s:9:\"listingID\";s:0:\"\";s:4:\"name\";s:23:\"More Lantern Properties\";s:15:\"propertiesShown\";s:1:\"4\";s:6:\"cityId\";s:0:\"\";s:12:\"propertyType\";s:0:\"\";s:3:\"bed\";s:0:\"\";s:4:\"bath\";s:0:\"\";s:8:\"minPrice\";s:0:\"\";s:8:\"maxPrice\";s:0:\"\";s:10:\"hotSheetId\";s:6:\"815189\";s:8:\"linkText\";s:8:\"View all\";s:19:\"idx-advanced-search\";b:1;s:16:\"idx-contact-form\";b:1;s:40:\"idx-property-organizer-edit-saved-search\";b:1;s:19:\"idx-featured-search\";b:1;s:10:\"idx-detail\";b:1;s:14:\"idx-map-search\";b:1;s:13:\"idx-hotsheets\";b:1;s:25:\"idx-open-home-search-form\";b:1;s:28:\"idx-property-organizer-login\";b:1;s:28:\"idx-pending-featured-listing\";b:1;s:10:\"idx-search\";b:1;s:11:\"idx-results\";b:1;s:25:\"idx-sold-featured-listing\";b:1;s:15:\"idx-sold-detail\";b:1;s:24:\"idx-supplemental-listing\";b:1;s:18:\"idx-valuation-form\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(153,'widget_ihomefinderquicksearchwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(154,'widget_ihomefindersearchbyaddresswidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(155,'widget_ihomefindersearchbylistingidwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(156,'widget_ihomefinderagentbiowidget','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:1:{s:11:\"displayType\";s:6:\"narrow\";}}','yes'),(157,'widget_ihomefindersocialwidget','a:2:{i:3;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(158,'ihf_version_option','7.1.0','yes'),(159,'ihf-css-override','<style type=\"text/css\">\r\n\r\n#ihf-main-container .carousel-control {\r\n   height: auto;\r\n   background: none;\r\n   border: none;\r\n}\r\n#ihf-main-container .carousel-caption {\r\n    background: none;\r\n}\r\n#ihf-main-container .modal {\r\n    width: auto;\r\n    margin-left: 0;\r\n    background-color: transparent;\r\n    border: 0;\r\n}\r\n.ihf-results-links > a:nth-child(1) {\r\n    display: none;\r\n}\r\n#ihf-main-container .modal-dialog {\r\n    left: 0% !important;\r\n}\r\n\r\n</style>','yes'),(552453,'ihf-no-id','','yes'),(160,'ihf_css_override_migrated','1','yes'),(161,'ihf_database_cache_test','62b5117743e98','yes'),(181,'ihf-virtual-page-template-default','template/template-homepage.php','yes'),(182,'ihf-virtual-page-title-detail','{listingAddress}','yes'),(183,'ihf-virtual-page-template-detail','template/template-page.php','yes'),(184,'ihf-virtual-page-permalink-text-detail','homes-for-sale-details','yes'),(185,'ihf-virtual-page-meta-tags-detail','<meta property=\"og:image\" content=\"{listingPhotoUrl}\" />\r\n<meta property=\"og:image:width\" content=\"{listingPhotoWidth}\" />\r\n<meta property=\"og:image:height\" content=\"{listingPhotoHeight}\" />\r\n<meta property=\"og:description\" content=\"Lantern Realty and Development | {listingAddress}\" />\r\n<meta name=\"description\" content=\"Photos and Property Details for {listingAddress}. Get complete property information, maps, street view, schools, walk score and more. Request additional information, schedule a showing, save to your property organizer.\" />\r\n<meta name=\"keywords\" content=\"{listingAddress}, {listingCity} Real Estate, {listingCity} Property for Sale\" />\r\n<script>\r\n  fbq(\'track\', \'ViewContent\', {\r\n    content_type: \'{listingAddress}\',\r\n  });\r\n</script>','yes'),(186,'ihf-virtual-page-title-search','Property Search','yes'),(187,'ihf-virtual-page-template-search','','yes'),(188,'ihf-virtual-page-permalink-text-search','homes-for-sale-search','yes'),(189,'ihf-virtual-page-meta-tags-search','<meta name=\"description\" content=\"\" />\r\n<script>\r\n  fbq(\'track\', \'Search\');\r\n</script>','yes'),(190,'ihf-virtual-page-title-map-search','','yes'),(191,'ihf-virtual-page-template-map-search','','yes'),(192,'ihf-virtual-page-permalink-text-map-search','','yes'),(193,'ihf-virtual-page-meta-tags-map-search','','yes'),(194,'ihf-virtual-page-title-adv-search','','yes'),(195,'ihf-virtual-page-template-adv-search','','yes'),(196,'ihf-virtual-page-permalink-text-adv-search','','yes'),(197,'ihf-virtual-page-meta-tags-adv-search','','yes'),(198,'ihf-virtual-page-title-org-login','Organizer Login','yes'),(199,'ihf-virtual-page-template-org-login','template/template-page.php','yes'),(200,'ihf-virtual-page-permalink-text-org-login','property-organizer-login','yes'),(201,'ihf-virtual-page-meta-tags-org-login','<meta name=\"description\" content=\"\" />','yes'),(202,'ihf-virtual-page-title-email-updates','','yes'),(203,'ihf-virtual-page-template-email-updates','','yes'),(204,'ihf-virtual-page-permalink-text-email-updates','','yes'),(205,'ihf-virtual-page-meta-tags-email-updates','','yes'),(206,'ihf-virtual-page-title-featured','Featured Properties','yes'),(207,'ihf-virtual-page-template-featured','template/template-page.php','yes'),(208,'ihf-virtual-page-permalink-text-featured','homes-for-sale-featured','yes'),(209,'ihf-virtual-page-meta-tags-featured','<meta name=\"description\" content=\"\" />','yes'),(210,'ihf-virtual-page-title-hotsheet','{savedSearchName}: Listing Report','yes'),(211,'ihf-virtual-page-template-hotsheet','template/template-page.php','yes'),(212,'ihf-virtual-page-permalink-text-hotsheet','listing-report','yes'),(213,'ihf-virtual-page-meta-tags-hotsheet','<meta name=\"description\" content=\"{savedSearchDescription}\" />','yes'),(214,'ihf-virtual-page-title-hotsheet-open-home-report','{savedSearchName}: Open Home Report','yes'),(215,'ihf-virtual-page-template-hotsheet-open-home-report','template/template-page.php','yes'),(216,'ihf-virtual-page-permalink-text-hotsheet-open-home-report','open-home-report','yes'),(217,'ihf-virtual-page-meta-tags-hotsheet-open-home-report','<meta name=\"description\" content=\"{savedSearchDescription}\" />','yes'),(218,'ihf-virtual-page-title-hotsheet-market-report','{savedSearchName}: Market Report','yes'),(219,'ihf-virtual-page-template-hotsheet-market-report','template/template-page.php','yes'),(220,'ihf-virtual-page-permalink-text-hotsheet-market-report','market-report','yes'),(221,'ihf-virtual-page-meta-tags-hotsheet-market-report','<meta name=\"description\" content=\"{savedSearchDescription}\" />','yes'),(222,'ihf-virtual-page-title-hotsheet-list','Listing Reports','yes'),(223,'ihf-virtual-page-meta-tags-hotsheet-list','<meta name=\"description\" content=\"\" />','yes'),(224,'ihf-virtual-page-title-contact-form','Contact','yes'),(225,'ihf-virtual-page-template-contact-form','template/template-page.php','yes'),(226,'ihf-virtual-page-permalink-text-contact-form','contact-form','yes'),(227,'ihf-virtual-page-meta-tags-contact-form','<meta name=\"description\" content=\"\" />','yes'),(228,'ihf-virtual-page-title-valuation-form','Valuation Request Form','yes'),(229,'ihf-virtual-page-template-valuation-form','template/template-page.php','yes'),(230,'ihf-virtual-page-permalink-text-valuation-form','valuation-form','yes'),(231,'ihf-virtual-page-meta-tags-valuation-form','<meta name=\"description\" content=\"\" />','yes'),(232,'ihf-virtual-page-title-open-home-search-form','Open Home Search','yes'),(233,'ihf-virtual-page-template-open-home-search-form','template/template-page.php','yes'),(234,'ihf-virtual-page-open-home-search-form','open-home-search','yes'),(235,'ihf-virtual-page-meta-tags-open-home-search-form','<meta name=\"description\" content=\"\" />','yes'),(236,'ihf-virtual-page-title-supplemental-listing','Supplemental Listings','yes'),(237,'ihf-virtual-page-template-supplemental-listing','template/template-page.php','yes'),(238,'ihf-virtual-page-permalink-text-supplemental-listing','supplemental-listing','yes'),(239,'ihf-virtual-page-meta-tags-supplemental-listing','<meta name=\"description\" content=\"\" />','yes'),(240,'ihf-virtual-page-title-sold-featured','Sold Properties','yes'),(241,'ihf-virtual-page-template-sold-featured','template/template-page.php','yes'),(242,'ihf-virtual-page-permalink-text-sold-featured','sold-featured-listing','yes'),(243,'ihf-virtual-page-meta-tags-sold-featured','<meta name=\"description\" content=\"\" />','yes'),(244,'ihf-virtual-page-title-pending-featured','Pending Properties','yes'),(245,'ihf-virtual-page-template-pending-featured','template/template-page.php','yes'),(246,'ihf-virtual-page-permalink-text-pending-featured','pending-featured-listing','yes'),(247,'ihf-virtual-page-meta-tags-pending-featured','<meta name=\"description\" content=\"\" />','yes'),(248,'ihf-virtual-page-title-sold-detail','{listingAddress}','yes'),(249,'ihf-virtual-page-template-sold-detail','template/template-page.php','yes'),(250,'ihf-virtual-page-permalink-text-sold-detail','homes-for-sale-sold-details','yes'),(251,'ihf-virtual-page-meta-tags-sold-detail','<meta property=\"og:image\" content=\"{listingPhotoUrl}\" />\r\n<meta property=\"og:image:width\" content=\"{listingPhotoWidth}\" />\r\n<meta property=\"og:image:height\" content=\"{listingPhotoHeight}\" />\r\n<meta name=\"description\" content=\"Photos and Property Details for {listingAddress}. Get complete property information, maps, street view, schools, walk score and more. Request additional information, schedule a showing, save to your property organizer.\" />\r\n<meta name=\"keywords\" content=\"{listingAddress}, {listingCity} Real Estate, {listingCity} Property for Sale\" />','yes'),(252,'ihf-virtual-page-title-office-list','','yes'),(253,'ihf-virtual-page-template-office-list','','yes'),(254,'ihf-virtual-page-permalink-text-office-list','','yes'),(255,'ihf-virtual-page-meta-tags-office-list','','yes'),(256,'ihf-virtual-page-title-office-detail','','yes'),(257,'ihf-virtual-page-template-office-detail','','yes'),(258,'ihf-virtual-page-permalink-text-office-detail','','yes'),(259,'ihf-virtual-page-meta-tags-office-detail','','yes'),(260,'ihf-virtual-page-title-agent-list','','yes'),(261,'ihf-virtual-page-template-agent-list','','yes'),(262,'ihf-virtual-page-permalink-text-agent-list','','yes'),(263,'ihf-virtual-page-meta-tags-agent-list','','yes'),(264,'ihf-virtual-page-title-agent-detail','','yes'),(265,'ihf-virtual-page-template-agent-detail','','yes'),(266,'ihf-virtual-page-permalink-text-agent-detail','','yes'),(267,'ihf-virtual-page-meta-tags-agent-detail','','yes'),(268,'ihf-virtual-page-title-mls-portal-board-office-search','','yes'),(269,'ihf-virtual-page-template-mls-portal-board-office-search','','yes'),(270,'ihf-virtual-page-permalink-text-mls-portal-board-office-search','','yes'),(271,'ihf-virtual-page-meta-tags-mls-portal-board-office-search','','yes'),(272,'ihf-virtual-page-title-mls-portal-board-office-list','','yes'),(273,'ihf-virtual-page-template-mls-portal-board-office-list','','yes'),(274,'ihf-virtual-page-permalink-text-mls-portal-board-office-list','','yes'),(275,'ihf-virtual-page-meta-tags-mls-portal-board-office-list','','yes'),(276,'ihf-virtual-page-title-mls-portal-board-office-list-name-starts-with','','yes'),(277,'ihf-virtual-page-template-mls-portal-board-office-list-name-starts-with','','yes'),(278,'ihf-virtual-page-permalink-text-mls-portal-board-office-list-name-starts-with','','yes'),(279,'ihf-virtual-page-meta-tags-mls-portal-board-office-list-name-starts-with','','yes'),(280,'ihf-virtual-page-title-mls-portal-board-office-detail','','yes'),(281,'ihf-virtual-page-template-mls-portal-board-office-detail','','yes'),(282,'ihf-virtual-page-permalink-text-mls-portal-board-office-detail','','yes'),(283,'ihf-virtual-page-meta-tags-mls-portal-board-office-detail','','yes'),(284,'ihf-virtual-page-title-mls-portal-board-member-search','','yes'),(285,'ihf-virtual-page-template-mls-portal-board-member-search','','yes'),(286,'ihf-virtual-page-permalink-text-mls-portal-board-member-search','','yes'),(287,'ihf-virtual-page-meta-tags-mls-portal-board-member-search','','yes'),(288,'ihf-virtual-page-title-mls-portal-board-member-list','','yes'),(289,'ihf-virtual-page-template-mls-portal-board-member-list','','yes'),(290,'ihf-virtual-page-permalink-text-mls-portal-board-member-list','','yes'),(291,'ihf-virtual-page-meta-tags-mls-portal-board-member-list','','yes'),(292,'ihf-virtual-page-title-mls-portal-board-member-list-last-name-starts-with','','yes'),(293,'ihf-virtual-page-template-mls-portal-board-member-list-last-name-starts-with','','yes'),(294,'ihf-virtual-page-permalink-text-mls-portal-board-member-list-last-name-starts-with','','yes'),(295,'ihf-virtual-page-meta-tags-mls-portal-board-member-list-last-name-starts-with','','yes'),(296,'ihf-virtual-page-title-mls-portal-board-member-detail','','yes'),(297,'ihf-virtual-page-template-mls-portal-board-member-detail','','yes'),(298,'ihf-virtual-page-permalink-text-mls-portal-board-member-detail','','yes'),(299,'ihf-virtual-page-meta-tags-mls-portal-board-member-detail','','yes'),(164,'ihf_activation_token','5c4b308b-44c5-42b8-8569-fc4eac1f9bf7','yes'),(165,'ihf_authentication_token','57ba1f9b-a303-4b2e-90eb-792602d7dc93','yes'),(173,'widget_ihomefindercontactformwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(174,'widget_ihomefinderloginwidget','a:3:{i:3;a:18:{s:5:\"title\";s:18:\"Property Organizer\";s:5:\"style\";s:8:\"vertical\";s:19:\"idx-advanced-search\";b:1;s:16:\"idx-contact-form\";b:1;s:40:\"idx-property-organizer-edit-saved-search\";b:1;s:19:\"idx-featured-search\";b:1;s:10:\"idx-detail\";b:1;s:14:\"idx-map-search\";b:1;s:13:\"idx-hotsheets\";b:1;s:25:\"idx-open-home-search-form\";b:1;s:28:\"idx-property-organizer-login\";b:1;s:28:\"idx-pending-featured-listing\";b:1;s:10:\"idx-search\";b:1;s:11:\"idx-results\";b:1;s:25:\"idx-sold-featured-listing\";b:1;s:15:\"idx-sold-detail\";b:1;s:24:\"idx-supplemental-listing\";b:1;s:18:\"idx-valuation-form\";b:1;}i:4;a:18:{s:5:\"title\";s:18:\"Property Organizer\";s:5:\"style\";s:8:\"vertical\";s:19:\"idx-advanced-search\";b:1;s:16:\"idx-contact-form\";b:1;s:40:\"idx-property-organizer-edit-saved-search\";b:1;s:19:\"idx-featured-search\";b:1;s:10:\"idx-detail\";b:1;s:14:\"idx-map-search\";b:1;s:13:\"idx-hotsheets\";b:1;s:25:\"idx-open-home-search-form\";b:1;s:28:\"idx-property-organizer-login\";b:1;s:28:\"idx-pending-featured-listing\";b:1;s:10:\"idx-search\";b:1;s:11:\"idx-results\";b:1;s:25:\"idx-sold-featured-listing\";b:1;s:15:\"idx-sold-detail\";b:1;s:24:\"idx-supplemental-listing\";b:1;s:18:\"idx-valuation-form\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(175,'widget_ihomefindermoreinfowidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(176,'widget_ihomefindervaluationwidget','a:2:{i:3;a:18:{s:5:\"title\";s:20:\"Sell My Home Request\";s:5:\"style\";s:8:\"vertical\";s:19:\"idx-advanced-search\";b:1;s:16:\"idx-contact-form\";b:1;s:40:\"idx-property-organizer-edit-saved-search\";b:1;s:19:\"idx-featured-search\";b:1;s:10:\"idx-detail\";b:1;s:14:\"idx-map-search\";b:1;s:13:\"idx-hotsheets\";b:1;s:25:\"idx-open-home-search-form\";b:1;s:28:\"idx-property-organizer-login\";b:1;s:28:\"idx-pending-featured-listing\";b:1;s:10:\"idx-search\";b:1;s:11:\"idx-results\";b:1;s:25:\"idx-sold-featured-listing\";b:1;s:15:\"idx-sold-detail\";b:1;s:24:\"idx-supplemental-listing\";b:1;s:18:\"idx-valuation-form\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(177,'widget_ihomefinderhotsheetlistwidget','a:2:{i:3;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(178,'widget_ihomefinderemailsignupformwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(170,'ihf_permissions','O:8:\"stdClass\":32:{s:18:\"featuredProperties\";s:4:\"true\";s:9:\"organizer\";s:4:\"true\";s:12:\"emailUpdates\";s:4:\"true\";s:11:\"saveListing\";s:4:\"true\";s:10:\"saveSearch\";s:4:\"true\";s:8:\"hotSheet\";s:4:\"true\";s:6:\"office\";s:5:\"false\";s:8:\"agentBio\";s:5:\"false\";s:11:\"soldPending\";s:4:\"true\";s:9:\"valuation\";s:4:\"true\";s:11:\"contactForm\";s:4:\"true\";s:20:\"supplementalListings\";s:4:\"true\";s:14:\"communityPages\";s:4:\"true\";s:12:\"seoCityLinks\";s:4:\"true\";s:9:\"mapSearch\";s:4:\"true\";s:11:\"basicSearch\";s:4:\"true\";s:14:\"advancedSearch\";s:4:\"true\";s:14:\"openHomeSearch\";s:4:\"true\";s:14:\"listingResults\";s:4:\"true\";s:14:\"listingDetails\";s:4:\"true\";s:14:\"pendingAccount\";s:5:\"false\";s:18:\"activeTrialAccount\";s:5:\"false\";s:22:\"automatedFeaturedSolds\";s:4:\"true\";s:21:\"hotSheetListingReport\";s:4:\"true\";s:22:\"hotSheetOpenHomeReport\";s:4:\"true\";s:20:\"hotSheetMarketReport\";s:4:\"true\";s:21:\"soldListingsInWidgets\";s:4:\"true\";s:10:\"mlsDisplay\";s:5:\"false\";s:17:\"mlsAgentDirectory\";s:5:\"false\";s:12:\"eurekaSearch\";s:4:\"true\";s:13:\"kestrelDetail\";s:5:\"false\";s:10:\"kestrelAll\";s:5:\"false\";}','yes'),(171,'ihf_links_created','true','yes'),(306,'widget_houzez_mortgage_calculator','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(307,'widget_houzez_featured_properties','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(308,'widget_houzez_properties','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(309,'widget_houzez_property_taxonomies','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(310,'widget_houzez_about_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(311,'widget_houzez_contact','a:2:{i:2;a:7:{s:5:\"title\";s:23:\"Contact A Lantern Agent\";s:10:\"about_text\";s:0:\"\";s:5:\"phone\";s:12:\"704-298-0087\";s:3:\"fax\";s:0:\"\";s:5:\"email\";s:26:\"contact@lantern-realty.com\";s:7:\"address\";s:32:\"Kannapolis, North Carolina 28083\";s:8:\"more_url\";s:40:\"https://lantern-realty.com/contact-form/\";}s:12:\"_multiwidget\";i:1;}','yes'),(312,'widget_houzez_latest_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(313,'widget_houzez_code_banner','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(314,'widget_houzez_facebook','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(315,'widget_houzez_flickr_feeds','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(316,'widget_houzez_image_banner_300_250','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(317,'widget_houzez_instagram','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(318,'widget_houzez_twitter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(319,'widget_houzez_properties_viewed','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(320,'widget_houzez_agent_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(321,'widget_houzez_agency_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(322,'theme_mods_houzez','a:4:{s:18:\"custom_css_post_id\";i:-1;s:14:\"houzez_options\";a:29:{s:12:\"header_style\";s:1:\"2\";s:14:\"header_1_width\";s:9:\"container\";s:16:\"main-menu-sticky\";s:1:\"1\";s:14:\"header_4_width\";s:9:\"container\";s:18:\"main-search-enable\";s:1:\"0\";s:22:\"create_lisiting_enable\";s:1:\"0\";s:7:\"top_bar\";s:1:\"1\";s:12:\"top_bar_left\";s:12:\"social_icons\";s:13:\"top_bar_right\";s:8:\"menu_bar\";s:13:\"top_bar_phone\";s:12:\"123-456-7890\";s:13:\"top_bar_email\";s:19:\"contact@lantern.com\";s:13:\"user_as_agent\";s:2:\"no\";s:9:\"minify_js\";s:1:\"1\";s:8:\"jpeg_100\";s:1:\"1\";s:20:\"styling_headers_type\";s:8:\"header-1\";s:11:\"header_3_bg\";s:7:\"#ffffff\";s:11:\"header_1_bg\";s:7:\"#004272\";s:16:\"header_3_bg_menu\";s:0:\"\";s:11:\"header_2_bg\";s:7:\"#004272\";s:16:\"hd2_contact_info\";s:1:\"1\";s:13:\"social-header\";s:1:\"0\";s:9:\"hd3_phone\";s:14:\"(980) 858-2074\";s:17:\"hd2_contact_phone\";s:14:\"(980) 858-2074\";s:15:\"hd2_timing_info\";s:1:\"0\";s:16:\"hd2_timing_hours\";s:16:\"Agents Available\";s:15:\"hd2_timing_days\";s:14:\"Contact Us Now\";s:16:\"hd2_address_info\";s:1:\"1\";s:17:\"hd2_address_line2\";s:21:\"And Surrounding Areas\";s:17:\"hd2_address_line1\";s:26:\"Serving Kannapolis/Concord\";}s:18:\"nav_menu_locations\";a:6:{s:9:\"main-menu\";i:8;s:11:\"footer-menu\";i:5;s:8:\"top-menu\";i:0;s:14:\"main-menu-left\";i:0;s:15:\"main-menu-right\";i:0;s:16:\"mobile-menu-hed6\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1600618998;s:4:\"data\";a:17:{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:11:\"idx-sidebar\";a:7:{i:0;s:24:\"ihomefinderloginwidget-2\";i:1;s:28:\"ihomefindervaluationwidget-2\";i:2;s:27:\"ihomefindermoreinfowidget-2\";i:3;s:30:\"ihomefinderpropertiesgallery-2\";i:4;s:13:\"media_image-6\";i:5;s:13:\"media_image-7\";i:6;s:14:\"media_image-11\";}s:19:\"wp_inactive_widgets\";a:3:{i:0;s:25:\"ihomefindersocialwidget-3\";i:1;s:31:\"ihomefinderhotsheetlistwidget-3\";i:2;s:27:\"ihomefinderagentbiowidget-3\";}s:15:\"default-sidebar\";a:0:{}s:16:\"property-listing\";a:0:{}s:14:\"search-sidebar\";a:0:{}s:15:\"single-property\";a:0:{}s:12:\"page-sidebar\";a:3:{i:0;s:23:\"a2a_share_save_widget-2\";i:1;s:24:\"ihomefinderloginwidget-3\";i:2;s:30:\"ihomefinderpropertiesgallery-3\";}s:14:\"agency-sidebar\";a:0:{}s:13:\"agent-sidebar\";a:4:{i:0;s:28:\"ihomefindervaluationwidget-3\";i:1;s:13:\"media_image-8\";i:2;s:13:\"media_image-9\";i:3;s:14:\"media_image-10\";}s:23:\"hz-custom-widget-area-1\";a:0:{}s:23:\"hz-custom-widget-area-2\";a:0:{}s:23:\"hz-custom-widget-area-3\";a:0:{}s:16:\"footer-sidebar-1\";a:1:{i:0;s:6:\"text-2\";}s:16:\"footer-sidebar-2\";a:1:{i:0;s:16:\"houzez_contact-2\";}s:16:\"footer-sidebar-3\";a:1:{i:0;s:13:\"media_image-3\";}s:16:\"footer-sidebar-4\";a:1:{i:0;s:13:\"media_image-4\";}}}}','yes'),(326,'current_theme','Houzez','yes'),(327,'theme_switched','','yes'),(328,'theme_switched_via_customizer','','yes'),(329,'customize_stashed_theme_mods','a:0:{}','no'),(331,'houzez_1_6_db','1','yes'),(1258,'lidd_mc_options','a:34:{s:18:\"compounding_period\";i:12;s:8:\"currency\";s:1:\"$\";s:13:\"currency_code\";N;s:15:\"currency_format\";s:25:\"{currency}{amount} {code}\";s:13:\"number_format\";i:6;s:20:\"minimum_total_amount\";i:0;s:20:\"down_payment_visible\";i:1;s:18:\"total_amount_value\";d:300000;s:18:\"down_payment_value\";d:60000;s:19:\"interest_rate_value\";d:5;s:25:\"amortization_period_value\";i:30;s:21:\"zero_percent_interest\";i:0;s:25:\"amortization_period_units\";i:0;s:14:\"payment_period\";i:12;s:5:\"theme\";s:5:\"light\";s:12:\"select_style\";i:1;s:14:\"select_pointer\";N;s:10:\"css_layout\";i:1;s:6:\"popup \";i:0;s:7:\"summary\";i:1;s:16:\"summary_interest\";i:1;s:19:\"summary_downpayment\";i:1;s:18:\"total_amount_label\";s:16:\"Total Amount ($)\";s:18:\"down_payment_label\";s:16:\"Down Payment ($)\";s:19:\"interest_rate_label\";s:17:\"Interest Rate (%)\";s:25:\"amortization_period_label\";s:27:\"Amortization Period (years)\";s:20:\"payment_period_label\";s:14:\"Payment Period\";s:12:\"submit_label\";s:9:\"Calculate\";s:18:\"total_amount_class\";N;s:18:\"down_payment_class\";N;s:19:\"interest_rate_class\";N;s:25:\"amortization_period_class\";N;s:20:\"payment_period_class\";N;s:12:\"submit_class\";N;}','yes'),(1870,'the_seo_framework_upgraded_db_version','4200','yes'),(1872,'_transient_tsf_tdir_1_1','1','yes'),(1875,'revslider-valid-notice','false','yes'),(1264,'srp_general_options','a:1:{s:7:\"content\";a:3:{s:11:\"srp_gre_css\";s:2:\"on\";s:16:\"srp_profile_tabs\";s:2:\"on\";s:16:\"srp_profile_ajax\";s:2:\"on\";}}','yes'),(1265,'srp_ext_gre_options','a:2:{s:7:\"content\";a:15:{s:3:\"map\";s:2:\"on\";s:7:\"schools\";s:2:\"on\";s:11:\"altos_stats\";s:2:\"on\";s:9:\"financial\";s:2:\"on\";s:4:\"yelp\";s:2:\"on\";s:9:\"walkscore\";s:2:\"on\";s:13:\"mortgage_calc\";s:2:\"on\";s:17:\"closing_estimator\";s:2:\"on\";s:18:\"affordability_calc\";s:2:\"on\";s:11:\"description\";s:2:\"on\";s:6:\"photos\";s:2:\"on\";s:5:\"video\";s:2:\"on\";s:8:\"panorama\";s:2:\"on\";s:9:\"downloads\";s:2:\"on\";s:9:\"community\";s:2:\"on\";}s:4:\"tabs\";a:7:{s:3:\"map\";a:2:{s:7:\"tabname\";s:3:\"Map\";s:7:\"heading\";s:12:\"Location Map\";}s:7:\"schools\";a:2:{s:7:\"tabname\";s:7:\"Schools\";s:7:\"heading\";s:13:\"Local Schools\";}s:12:\"trulia_stats\";a:2:{s:7:\"tabname\";s:12:\"Market Stats\";s:7:\"heading\";s:17:\"Market Statistics\";}s:11:\"altos_stats\";a:2:{s:7:\"tabname\";s:12:\"Market Stats\";s:7:\"heading\";s:17:\"Market Statistics\";}s:9:\"financial\";a:2:{s:7:\"tabname\";s:9:\"Financing\";s:7:\"heading\";s:15:\"Financial Tools\";}s:4:\"yelp\";a:2:{s:7:\"tabname\";s:17:\"Nearby Businesses\";s:7:\"heading\";s:30:\"Businesses in the Neighborhood\";}s:9:\"walkscore\";a:2:{s:7:\"tabname\";s:11:\"Walkability\";s:7:\"heading\";s:31:\"Walkability of the Neighborhood\";}}}','yes'),(1266,'srp_mortgage_calc_options','a:16:{s:20:\"annual_interest_rate\";i:6;s:13:\"mortgage_term\";i:30;s:17:\"property_tax_rate\";i:1;s:19:\"home_insurance_rate\";d:0.5;s:3:\"pmi\";d:0.5;s:15:\"origination_fee\";i:1;s:11:\"lender_fees\";i:600;s:17:\"credit_report_fee\";i:50;s:9:\"appraisal\";i:300;s:15:\"title_insurance\";i:800;s:16:\"reconveyance_fee\";i:75;s:13:\"recording_fee\";i:45;s:16:\"wire_courier_fee\";i:55;s:15:\"endorsement_fee\";i:75;s:17:\"title_closing_fee\";i:125;s:18:\"title_doc_prep_fee\";i:30;}','yes'),(1267,'srp_walkscore_api_key','YOUR-WSID-HERE','yes'),(1270,'widget_srp_closingcosts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(640,'wpforms_activated','a:1:{s:4:\"lite\";i:1534894037;}','yes'),(693,'revslider-connection','1','yes'),(694,'revslider-latest-version','6.5.25','yes'),(695,'revslider-stable-version','4.2.0','yes'),(696,'revslider-notices','a:2:{i:0;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:545:\"<div style=\"display: block; background: #fff;text-align: center; \nheight: 300px;\"><a \nhref=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium2\"\n target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: \ncover; background-size: cover; opacity: 1; width: 920px; height: 300px; \ndisplay: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" \npreload=\"auto\"><source \nsrc=\"//updates.themepunch-ext-a.tools//banners/videobanner_premium2.mp4\" \ntype=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:12:\"TPRSV6511-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"1.0.0\";s:4:\"text\";s:407:\"<div style=\"display: block; background:#fff;text-align: center; \nheight: 250px;\"><a \nhref=\"https://www.sliderrevolution.com/wordpress-hosting/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getwphosting\"\n target=\"_blank\" rel=\"noopener\"><img style=\"width: 960px; \nheight: 250px; display: inline-block;\" \n src=\"//updates.themepunch-ext-a.tools//banners/rs60/wphostingadmin.jpg\"></a></div>\";s:4:\"code\";s:12:\"TPRSV6518-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}}','yes'),(697,'revslider-dashboard','a:0:{}','yes'),(698,'revslider-addons','O:8:\"stdClass\":31:{s:25:\"revslider-particles-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"372\";s:9:\"releaseid\";s:1:\"7\";s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"2.3.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:2:\"10\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"351\";s:9:\"releaseid\";s:2:\"20\";s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:6:\"6.2.50\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"2.2.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"20\";s:11:\"last_update\";s:10:\"2021-01-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"370\";s:9:\"releaseid\";s:2:\"15\";s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"2.1.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"40\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"363\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.4.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"2.1.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:2:\"50\";s:11:\"last_update\";s:10:\"2021-03-17\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"371\";s:9:\"releaseid\";s:2:\"24\";s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:6:\"2.0.10\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"60\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"358\";s:9:\"releaseid\";s:2:\"21\";s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"70\";s:11:\"last_update\";s:10:\"2021-03-30\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"359\";s:9:\"releaseid\";s:2:\"25\";s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"2.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"80\";s:11:\"last_update\";s:10:\"2021-03-30\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"77\";s:9:\"releaseid\";s:2:\"23\";s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"2.1.9\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"90\";s:11:\"last_update\";s:10:\"2020-06-14\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:22:\"revslider-charts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"355\";s:9:\"releaseid\";s:2:\"27\";s:4:\"slug\";s:22:\"revslider-charts-addon\";s:12:\"version_from\";s:6:\"6.4.10\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Charts\";s:6:\"line_1\";s:93:\"The Charts addon allows you to create visually impressive line or bar graphs from .csv data, \";s:6:\"line_2\";s:56:\"with tons of options to take full control of the design.\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.png\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:3:\"100\";s:11:\"last_update\";s:10:\"2021-04-29\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"CH\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"364\";s:9:\"releaseid\";s:2:\"13\";s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"2.1.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"110\";s:11:\"last_update\";s:10:\"2021-03-24\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"64\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"125\";s:11:\"last_update\";s:10:\"2021-01-05\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"377\";s:9:\"releaseid\";s:1:\"4\";s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"2.1.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"127\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"361\";s:9:\"releaseid\";s:2:\"19\";s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"2.2.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"130\";s:11:\"last_update\";s:10:\"2021-02-24\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"374\";s:9:\"releaseid\";s:2:\"17\";s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:6:\"6.4.10\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"2.1.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"135\";s:11:\"last_update\";s:10:\"2021-04-29\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"310\";s:9:\"releaseid\";s:2:\"26\";s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"140\";s:11:\"last_update\";s:10:\"2021-02-24\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"353\";s:9:\"releaseid\";s:2:\"22\";s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"2.1.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"150\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"57\";s:9:\"releaseid\";s:1:\"5\";s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"165\";s:11:\"last_update\";s:10:\"2020-02-20\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"308\";s:9:\"releaseid\";s:1:\"1\";s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"2.2.3\";s:10:\"background\";s:81:\"//updates.themepunch-ext-a.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"170\";s:11:\"last_update\";s:10:\"2021-01-15\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"376\";s:9:\"releaseid\";s:2:\"14\";s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"180\";s:11:\"last_update\";s:10:\"2021-05-04\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"78\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"300\";s:11:\"last_update\";s:10:\"2020-02-19\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"73\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"330\";s:11:\"last_update\";s:10:\"2020-01-01\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"55\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"340\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"59\";s:9:\"releaseid\";s:1:\"6\";s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"380\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"378\";s:9:\"releaseid\";s:1:\"2\";s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"430\";s:11:\"last_update\";s:10:\"2022-01-31\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"53\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"500\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"62\";s:9:\"releaseid\";s:1:\"8\";s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"620\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"63\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"630\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"375\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:6:\"6.4.10\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"650\";s:11:\"last_update\";s:10:\"2021-04-30\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"379\";s:9:\"releaseid\";s:2:\"12\";s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"660\";s:11:\"last_update\";s:10:\"2021-05-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"373\";s:9:\"releaseid\";s:2:\"16\";s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"690\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"71\";s:9:\"releaseid\";s:2:\"18\";s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"710\";s:11:\"last_update\";s:10:\"2020-01-01\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}}','yes'),(1051,'ihf-email-display-header-option','','yes'),(1052,'ihf-email-display-footer-option','','yes'),(1053,'ihf-email-photo-option','','yes'),(1054,'ihf-email-logo-option','http://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726093274.jpg','yes'),(1055,'ihf-email-name-option','Lantern Realty and Development','yes'),(1056,'ihf-email-company-option','','yes'),(1057,'ihf-email-address-line1-option','','yes'),(1058,'ihf-email-address-line2-option','','yes'),(1059,'ihf-email-phone-option','980-858-2074','yes'),(1060,'ihf-email-display-type-option','ihf-email-display-type-custom-images','yes'),(1546538,'agent_category_children','a:0:{}','yes'),(1097,'ihf-social-facebook-url-option','lanternrealty','yes'),(1098,'ihf-social-linkedin-url-option','','yes'),(1099,'ihf-social-twitter-url-option','','yes'),(1100,'ihf-social-pinterest-url','','yes'),(1101,'ihf-social-instagram-url','','yes'),(1102,'ihf-social-google-plus-url','','yes'),(1103,'ihf-social-youtube-url','','yes'),(1104,'ihf-social-yelp-url','','yes'),(1063,'ihf-seo-city-links-settings','a:12:{i:0;a:5:{s:23:\"ihf-seo-city-links-text\";s:9:\"Charlotte\";s:27:\"ihf-seo-city-links-city-zip\";s:9:\"Charlotte\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:8:\"10000000\";}i:1;a:5:{s:23:\"ihf-seo-city-links-text\";s:11:\"China Grove\";s:27:\"ihf-seo-city-links-city-zip\";s:11:\"China Grove\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"10000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"1000000\";}i:2;a:5:{s:23:\"ihf-seo-city-links-text\";s:7:\"Concord\";s:27:\"ihf-seo-city-links-city-zip\";s:7:\"Concord\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"1000000\";}i:3;a:5:{s:23:\"ihf-seo-city-links-text\";s:9:\"Cornelius\";s:27:\"ihf-seo-city-links-city-zip\";s:9:\"Cornelius\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:8:\"10000000\";}i:4;a:5:{s:27:\"ihf-seo-city-links-city-zip\";s:9:\"Gold Hill\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"10000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"5000000\";s:23:\"ihf-seo-city-links-text\";s:9:\"Gold Hill\";}i:5;a:5:{s:23:\"ihf-seo-city-links-text\";s:12:\"Huntersville\";s:27:\"ihf-seo-city-links-city-zip\";s:12:\"Huntersville\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:8:\"10000000\";}i:6;a:5:{s:23:\"ihf-seo-city-links-text\";s:10:\"Kannapolis\";s:27:\"ihf-seo-city-links-city-zip\";s:10:\"Kannapolis\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"1000000\";}i:7;a:5:{s:23:\"ihf-seo-city-links-text\";s:6:\"Landis\";s:27:\"ihf-seo-city-links-city-zip\";s:6:\"Landis\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"10000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"1000000\";}i:8;a:5:{s:23:\"ihf-seo-city-links-text\";s:11:\"Mooresville\";s:27:\"ihf-seo-city-links-city-zip\";s:11:\"MOORESVILLE\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:8:\"10000000\";}i:9;a:5:{s:23:\"ihf-seo-city-links-text\";s:14:\"Mount Pleasant\";s:27:\"ihf-seo-city-links-city-zip\";s:14:\"Mount Pleasant\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"10000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"5000000\";}i:10;a:5:{s:23:\"ihf-seo-city-links-text\";s:8:\"Rockwell\";s:27:\"ihf-seo-city-links-city-zip\";s:8:\"Rockwell\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"10000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"1000000\";}i:11;a:5:{s:23:\"ihf-seo-city-links-text\";s:9:\"Salisbury\";s:27:\"ihf-seo-city-links-city-zip\";s:9:\"Salisbury\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:8:\"10000000\";}}','yes'),(1064,'ihf-seo-city-link-width','80','yes'),(978,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(421015,'fb50644f7_elements','a:0:{}','yes'),(421016,'fb50644f7_custom_js','','yes'),(421017,'fb50644f7_updated_at','1606787969','yes'),(1347,'htcc_plugin_details','a:1:{s:7:\"version\";s:3:\"3.1\";}','yes'),(1348,'htcc_options','a:14:{s:10:\"fb_page_id\";s:15:\"182173195955653\";s:9:\"fb_app_id\";s:15:\"268564130427471\";s:10:\"log_events\";s:3:\"yes\";s:8:\"fb_color\";s:7:\"#1e73be\";s:17:\"fb_greeting_login\";s:29:\"Chat with a Lantern Agent Now\";s:18:\"fb_greeting_logout\";s:50:\"Login to Facebook to Chat with a Lantern Agent Now\";s:23:\"greeting_dialog_display\";s:4:\"fade\";s:21:\"greeting_dialog_delay\";s:1:\"5\";s:11:\"fb_sdk_lang\";s:5:\"en_US\";s:3:\"ref\";s:0:\"\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:9:\"shortcode\";s:7:\"chatbot\";s:9:\"minimized\";s:0:\"\";}','yes'),(1359,'WPLANG','','yes'),(1360,'new_admin_email','ckeziah127@gmail.com','yes'),(1726,'monitor_receive_notifications','1','yes'),(373,'mc4wp_version','4.8.7','yes'),(374,'houzez_options','a:1082:{s:8:\"last_tab\";s:2:\"12\";s:15:\"site_breadcrumb\";s:1:\"1\";s:17:\"phone_number_full\";s:1:\"1\";s:15:\"gallery_caption\";s:1:\"0\";s:16:\"lightbox_caption\";s:1:\"0\";s:20:\"houzez_date_language\";s:0:\"\";s:18:\"users_admin_access\";s:1:\"0\";s:23:\"measurement_unit_global\";s:1:\"0\";s:16:\"measurement_unit\";s:4:\"sqft\";s:26:\"measurement_unit_sqft_text\";s:4:\"sqft\";s:34:\"measurement_unit_square_meter_text\";s:3:\"m²\";s:14:\"sticky_sidebar\";a:7:{s:15:\"default_sidebar\";s:0:\"\";s:17:\"property_listings\";s:0:\"\";s:15:\"single_property\";s:0:\"\";s:13:\"agent_sidebar\";s:0:\"\";s:14:\"agency_sidebar\";s:0:\"\";s:14:\"search_sidebar\";s:0:\"\";s:12:\"page_sidebar\";s:0:\"\";}s:17:\"cl_featured_label\";s:8:\"Featured\";s:11:\"cl_property\";s:8:\"Property\";s:13:\"cl_properties\";s:10:\"Properties\";s:11:\"cl_favorite\";s:9:\"Favourite\";s:10:\"cl_preview\";s:7:\"Preview\";s:14:\"cl_add_compare\";s:14:\"Add to Compare\";s:17:\"cl_remove_compare\";s:19:\"Remove from Compare\";s:7:\"cl_none\";s:4:\"None\";s:9:\"cl_select\";s:6:\"Select\";s:14:\"cl_only_digits\";s:11:\"Only digits\";s:10:\"cl_example\";s:11:\"For example\";s:7:\"cl_hide\";s:4:\"Hide\";s:7:\"cl_show\";s:4:\"Show\";s:6:\"cl_yes\";s:3:\"Yes\";s:5:\"cl_no\";s:2:\"No\";s:5:\"cl_or\";s:2:\"OR\";s:13:\"cl_select_all\";s:10:\"Select All\";s:15:\"cl_deselect_all\";s:12:\"Deselect All\";s:21:\"cl_no_results_matched\";s:18:\"No results matched\";s:17:\"srh_item_selected\";s:14:\"items selected\";s:7:\"srh_any\";s:3:\"Any\";s:11:\"srh_keyword\";s:16:\"Enter Keyword...\";s:11:\"srh_address\";s:50:\"Enter an address, town, street, zip or property ID\";s:7:\"srh_csa\";s:26:\"Search City, State or Area\";s:12:\"srh_location\";s:8:\"Location\";s:10:\"srh_radius\";s:6:\"Radius\";s:8:\"srh_type\";s:4:\"Type\";s:9:\"srh_types\";s:14:\"types selected\";s:10:\"srh_status\";s:6:\"Status\";s:12:\"srh_statuses\";s:15:\"status selected\";s:9:\"srh_label\";s:5:\"Label\";s:10:\"srh_labels\";s:6:\"Labels\";s:14:\"srh_all_status\";s:10:\"All Status\";s:12:\"srh_bedrooms\";s:8:\"Bedrooms\";s:10:\"srh_studio\";s:6:\"Studio\";s:9:\"srh_rooms\";s:5:\"Rooms\";s:13:\"srh_bathrooms\";s:9:\"Bathrooms\";s:8:\"srh_beds\";s:4:\"Beds\";s:9:\"srh_baths\";s:5:\"Baths\";s:12:\"srh_min_area\";s:9:\"Min. Area\";s:12:\"srh_max_area\";s:9:\"Max. Area\";s:17:\"srh_min_land_area\";s:14:\"Min. Land Area\";s:17:\"srh_max_land_area\";s:14:\"Max. Land Area\";s:13:\"srh_min_price\";s:10:\"Min. Price\";s:13:\"srh_max_price\";s:10:\"Max. Price\";s:9:\"srh_price\";s:5:\"Price\";s:15:\"srh_price_range\";s:11:\"Price Range\";s:8:\"srh_from\";s:4:\"From\";s:6:\"srh_to\";s:2:\"To\";s:11:\"srh_prop_id\";s:11:\"Property ID\";s:13:\"srh_countries\";s:13:\"All Countries\";s:10:\"srh_states\";s:10:\"All States\";s:10:\"srh_cities\";s:10:\"All Cities\";s:9:\"srh_areas\";s:9:\"All Areas\";s:10:\"srh_areass\";s:14:\"areas selected\";s:10:\"srh_garage\";s:6:\"Garage\";s:14:\"srh_year_built\";s:10:\"Year Built\";s:12:\"srh_currency\";s:8:\"Currency\";s:18:\"srh_other_features\";s:14:\"Other Features\";s:11:\"srh_btn_adv\";s:8:\"Advanced\";s:14:\"srh_btn_search\";s:6:\"Search\";s:10:\"srh_btn_go\";s:2:\"Go\";s:19:\"srh_btn_save_search\";s:11:\"Save Search\";s:14:\"srh_dock_title\";s:15:\"Advanced Search\";s:16:\"srh_mobile_title\";s:6:\"Search\";s:12:\"srh_btn_more\";s:12:\"More Options\";s:9:\"srh_clear\";s:5:\"Clear\";s:9:\"srh_apply\";s:5:\"Apply\";s:11:\"glc_bedroom\";s:7:\"Bedroom\";s:12:\"glc_bedrooms\";s:8:\"Bedrooms\";s:12:\"glc_bathroom\";s:8:\"Bathroom\";s:13:\"glc_bathrooms\";s:9:\"Bathrooms\";s:7:\"glc_bed\";s:3:\"Bed\";s:8:\"glc_beds\";s:4:\"Beds\";s:8:\"glc_room\";s:4:\"Room\";s:9:\"glc_rooms\";s:5:\"Rooms\";s:8:\"glc_bath\";s:4:\"Bath\";s:9:\"glc_baths\";s:5:\"Baths\";s:10:\"glc_garage\";s:6:\"Garage\";s:11:\"glc_garages\";s:7:\"Garages\";s:14:\"glc_year_built\";s:10:\"Year Built\";s:6:\"glc_id\";s:2:\"ID\";s:14:\"glc_listing_id\";s:10:\"Listing ID\";s:14:\"glc_detail_btn\";s:7:\"Details\";s:12:\"sps_overview\";s:8:\"Overview\";s:15:\"sps_description\";s:11:\"Description\";s:13:\"sps_documents\";s:18:\"Property Documents\";s:11:\"sps_details\";s:7:\"Details\";s:22:\"sps_additional_details\";s:18:\"Additional details\";s:11:\"sps_address\";s:7:\"Address\";s:12:\"sps_features\";s:8:\"Features\";s:9:\"sps_video\";s:5:\"Video\";s:16:\"sps_virtual_tour\";s:18:\"360° Virtual Tour\";s:16:\"sps_sub_listings\";s:12:\"Sub listings\";s:16:\"sps_energy_class\";s:12:\"Energy Class\";s:15:\"sps_floor_plans\";s:11:\"Floor Plans\";s:14:\"sps_calculator\";s:19:\"Mortgage Calculator\";s:13:\"sps_walkscore\";s:9:\"Walkscore\";s:10:\"sps_nearby\";s:14:\"What\'s Nearby?\";s:17:\"sps_schedule_tour\";s:15:\"Schedule a Tour\";s:11:\"sps_contact\";s:7:\"Contact\";s:16:\"sps_contact_info\";s:19:\"Contact Information\";s:13:\"sps_your_info\";s:16:\"Your information\";s:19:\"sps_propperty_enqry\";s:27:\"Enquire About This Property\";s:11:\"sps_reviews\";s:7:\"Reviews\";s:20:\"sps_similar_listings\";s:16:\"Similar Listings\";s:11:\"spl_prop_id\";s:11:\"Property ID\";s:9:\"spl_price\";s:5:\"Price\";s:13:\"spl_prop_type\";s:13:\"Property Type\";s:15:\"spl_prop_status\";s:15:\"Property Status\";s:13:\"spl_prop_size\";s:13:\"Property Size\";s:8:\"spl_land\";s:9:\"Land Area\";s:8:\"spl_room\";s:4:\"Room\";s:9:\"spl_rooms\";s:5:\"Rooms\";s:11:\"spl_bedroom\";s:7:\"Bedroom\";s:12:\"spl_bedrooms\";s:8:\"Bedrooms\";s:12:\"spl_bathroom\";s:8:\"Bathroom\";s:13:\"spl_bathrooms\";s:9:\"Bathrooms\";s:10:\"spl_garage\";s:6:\"Garage\";s:11:\"spl_garages\";s:7:\"Garages\";s:15:\"spl_garage_size\";s:11:\"Garage Size\";s:14:\"spl_year_built\";s:10:\"Year Built\";s:7:\"spl_lot\";s:3:\"Lot\";s:7:\"spl_ogm\";s:19:\"Open on Google Maps\";s:11:\"spl_address\";s:7:\"Address\";s:7:\"spl_zip\";s:15:\"Zip/Postal Code\";s:11:\"spl_country\";s:7:\"Country\";s:9:\"spl_state\";s:12:\"State/county\";s:8:\"spl_city\";s:4:\"City\";s:8:\"spl_area\";s:4:\"Area\";s:12:\"spl_con_name\";s:4:\"Name\";s:17:\"spl_con_name_plac\";s:15:\"Enter your name\";s:13:\"spl_con_phone\";s:5:\"Phone\";s:18:\"spl_con_phone_plac\";s:16:\"Enter your Phone\";s:13:\"spl_con_email\";s:5:\"Email\";s:18:\"spl_con_email_plac\";s:16:\"Enter your email\";s:15:\"spl_con_message\";s:7:\"Message\";s:20:\"spl_con_message_plac\";s:18:\"Enter your Message\";s:18:\"spl_con_interested\";s:25:\"Hello, I am interested in\";s:16:\"spl_con_usertype\";s:5:\"I\'m a\";s:14:\"spl_con_select\";s:6:\"Select\";s:13:\"spl_con_buyer\";s:11:\"I\'m a buyer\";s:15:\"spl_con_tennant\";s:13:\"I\'m a tennant\";s:13:\"spl_con_agent\";s:12:\"I\'m an agent\";s:13:\"spl_con_other\";s:5:\"Other\";s:21:\"spl_con_view_listings\";s:13:\"View Listings\";s:17:\"spl_con_tour_type\";s:9:\"Tour Type\";s:17:\"spl_con_in_person\";s:9:\"In Person\";s:18:\"spl_con_video_chat\";s:10:\"Video Chat\";s:12:\"spl_con_date\";s:4:\"Date\";s:17:\"spl_con_date_plac\";s:16:\"Select tour date\";s:12:\"spl_con_time\";s:4:\"Time\";s:12:\"spl_btn_send\";s:12:\"Send Message\";s:12:\"spl_btn_call\";s:4:\"Call\";s:15:\"spl_btn_message\";s:12:\"Send Message\";s:20:\"spl_btn_request_info\";s:19:\"Request Information\";s:16:\"spl_btn_tour_sch\";s:21:\"Submit a Tour Request\";s:13:\"spl_sub_agree\";s:34:\"By submitting this form I agree to\";s:8:\"spl_term\";s:12:\"Terms of Use\";s:28:\"agent_forms_terms_validation\";s:26:\"Please accept terms of use\";s:17:\"spl_energetic_cls\";s:15:\"Energetic class\";s:16:\"spl_energy_index\";s:31:\"Global Energy Performance Index\";s:22:\"spl_energy_renew_index\";s:34:\"Renewable energy performance index\";s:28:\"spl_energy_build_performance\";s:34:\"Energy performance of the building\";s:21:\"spl_energy_ecp_rating\";s:18:\"EPC Current Rating\";s:16:\"spl_energy_ecp_p\";s:20:\"EPC Potential Rating\";s:14:\"spl_energy_cls\";s:12:\"Energy class\";s:18:\"spc_principal_ints\";s:20:\"Principal & Interest\";s:12:\"spc_prop_tax\";s:12:\"Property Tax\";s:6:\"spc_hi\";s:14:\"Home Insurance\";s:7:\"spc_pmi\";s:3:\"PMI\";s:13:\"spc_total_amt\";s:12:\"Total Amount\";s:16:\"spc_down_payment\";s:12:\"Down Payment\";s:6:\"spc_ir\";s:13:\"Interest Rate\";s:13:\"spc_load_term\";s:18:\"Loan Terms (Years)\";s:11:\"spc_monthly\";s:7:\"Monthly\";s:11:\"spc_btn_cal\";s:9:\"Calculate\";s:19:\"fal_submit_property\";s:15:\"Submit Property\";s:14:\"fal_save_draft\";s:13:\"Save as Draft\";s:16:\"fal_save_changes\";s:12:\"Save Changes\";s:17:\"fal_view_property\";s:13:\"View Property\";s:10:\"fal_cancel\";s:6:\"Cancel\";s:8:\"fal_back\";s:4:\"Back\";s:8:\"fal_next\";s:4:\"Next\";s:15:\"cls_description\";s:11:\"Description\";s:21:\"cls_description_price\";s:19:\"Description & Price\";s:9:\"cls_price\";s:5:\"Price\";s:9:\"cls_media\";s:5:\"Media\";s:13:\"cls_documents\";s:18:\"Property Documents\";s:11:\"cls_details\";s:7:\"Details\";s:17:\"cls_private_notes\";s:12:\"Private Note\";s:22:\"cls_additional_details\";s:18:\"Additional details\";s:11:\"cls_address\";s:7:\"Address\";s:12:\"cls_location\";s:8:\"Location\";s:7:\"cls_map\";s:3:\"Map\";s:12:\"cls_features\";s:8:\"Features\";s:9:\"cls_video\";s:5:\"Video\";s:16:\"cls_virtual_tour\";s:18:\"360° Virtual Tour\";s:16:\"cls_sub_listings\";s:12:\"Sub listings\";s:16:\"cls_energy_class\";s:12:\"Energy Class\";s:15:\"cls_floor_plans\";s:11:\"Floor Plans\";s:13:\"cls_walkscore\";s:9:\"Walkscore\";s:16:\"cls_contact_info\";s:19:\"Contact Information\";s:15:\"cls_information\";s:11:\"Information\";s:12:\"cls_settings\";s:17:\"Property Settings\";s:10:\"cls_slider\";s:6:\"Slider\";s:10:\"cls_layout\";s:6:\"Layout\";s:10:\"cls_rental\";s:14:\"Rental Details\";s:8:\"cls_gdpr\";s:16:\"GDPR Agreement *\";s:13:\"cl_prop_title\";s:14:\"Property Title\";s:18:\"cl_prop_title_plac\";s:25:\"Enter your property title\";s:10:\"cl_content\";s:7:\"Content\";s:12:\"cl_prop_type\";s:4:\"Type\";s:13:\"cl_prop_types\";s:5:\"Types\";s:14:\"cl_prop_status\";s:6:\"Status\";s:16:\"cl_prop_statuses\";s:8:\"Statuses\";s:13:\"cl_prop_label\";s:5:\"Label\";s:14:\"cl_prop_labels\";s:6:\"Labels\";s:13:\"cl_sale_price\";s:18:\"Sale or Rent Price\";s:18:\"cl_sale_price_plac\";s:15:\"Enter the price\";s:15:\"cl_second_price\";s:23:\"Second Price (Optional)\";s:20:\"cl_second_price_plac\";s:22:\"Enter the second price\";s:16:\"cl_price_postfix\";s:15:\"After The Price\";s:21:\"cl_price_postfix_plac\";s:21:\"Enter the after price\";s:24:\"cl_price_postfix_tooltip\";s:20:\"For example: Monthly\";s:15:\"cl_price_prefix\";s:12:\"Price Prefix\";s:20:\"cl_price_prefix_plac\";s:22:\"Enter the price prefix\";s:23:\"cl_price_prefix_tooltip\";s:23:\"For example: Start from\";s:11:\"cl_bedrooms\";s:8:\"Bedrooms\";s:16:\"cl_bedrooms_plac\";s:24:\"Enter number of bedrooms\";s:8:\"cl_rooms\";s:5:\"Rooms\";s:13:\"cl_rooms_plac\";s:21:\"Enter number of rooms\";s:12:\"cl_bathrooms\";s:9:\"Bathrooms\";s:17:\"cl_bathrooms_plac\";s:25:\"Enter number of bathrooms\";s:12:\"cl_area_size\";s:9:\"Area Size\";s:17:\"cl_area_size_plac\";s:24:\"Enter property area size\";s:20:\"cl_area_size_postfix\";s:12:\"Size Postfix\";s:25:\"cl_area_size_postfix_plac\";s:32:\"Enter property area size postfix\";s:28:\"cl_area_size_postfix_tooltip\";s:18:\"For example: Sq Ft\";s:12:\"cl_land_size\";s:9:\"Land Area\";s:17:\"cl_land_size_plac\";s:24:\"Enter property Land Area\";s:20:\"cl_land_size_postfix\";s:22:\"Land Area Size Postfix\";s:25:\"cl_land_size_postfix_plac\";s:32:\"Enter property Land Area postfix\";s:28:\"cl_land_size_postfix_tooltip\";s:18:\"For example: Sq Ft\";s:9:\"cl_garage\";s:7:\"Garages\";s:14:\"cl_garage_plac\";s:23:\"Enter number of garages\";s:14:\"cl_garage_size\";s:11:\"Garage Size\";s:19:\"cl_garage_size_plac\";s:21:\"Enter the garage size\";s:22:\"cl_garage_size_tooltip\";s:22:\"For example: 200 Sq Ft\";s:13:\"cl_year_built\";s:10:\"Year Built\";s:18:\"cl_year_built_plac\";s:16:\"Enter year built\";s:10:\"cl_prop_id\";s:11:\"Property ID\";s:15:\"cl_prop_id_plac\";s:17:\"Enter property ID\";s:18:\"cl_prop_id_tooltip\";s:18:\"For example: HZ-01\";s:19:\"cl_additional_title\";s:5:\"Title\";s:24:\"cl_additional_title_plac\";s:13:\"Eg: Equipment\";s:19:\"cl_additional_value\";s:5:\"Value\";s:24:\"cl_additional_value_plac\";s:11:\"Grill - Gas\";s:23:\"cl_drag_drop_text_image\";s:62:\"Drag and drop the images to customize the image gallery order.\";s:18:\"cl_drag_drop_title\";s:37:\"Drag and drop the gallery images here\";s:13:\"cl_image_size\";s:23:\"(Minimum size 1440x900)\";s:12:\"cl_image_btn\";s:17:\"Select and Upload\";s:17:\"cl_image_featured\";s:49:\"Click on the star icon to select the cover image.\";s:12:\"cl_video_url\";s:9:\"Video URL\";s:17:\"cl_video_url_plac\";s:51:\"YouTube, Vimeo, SWF File and MOV File are supported\";s:13:\"cl_energy_cls\";s:12:\"Energy Class\";s:18:\"cl_energy_cls_plac\";s:19:\"Select Energy Class\";s:15:\"cl_energy_index\";s:31:\"Global Energy Performance Index\";s:20:\"cl_energy_index_plac\";s:29:\"For example: 92.42 kWh / m²a\";s:21:\"cl_energy_renew_index\";s:34:\"Renewable energy performance index\";s:26:\"cl_energy_renew_index_plac\";s:29:\"For example: 00.00 kWh / m²a\";s:27:\"cl_energy_build_performance\";s:34:\"Energy performance of the building\";s:32:\"cl_energy_build_performance_plac\";s:0:\"\";s:20:\"cl_energy_ecp_rating\";s:18:\"EPC Current Rating\";s:25:\"cl_energy_ecp_rating_plac\";s:0:\"\";s:15:\"cl_energy_ecp_p\";s:20:\"EPC Potential Rating\";s:20:\"cl_energy_ecp_p_plac\";s:0:\"\";s:15:\"cl_virtual_plac\";s:38:\"Enter virtual tour iframe/embeded code\";s:15:\"cl_private_note\";s:69:\"Write private note for this property, it will not display for public.\";s:20:\"cl_private_note_plac\";s:19:\"Enter the note here\";s:10:\"cl_address\";s:7:\"Address\";s:15:\"cl_address_plac\";s:27:\"Enter your property address\";s:6:\"cl_zip\";s:15:\"Zip/Postal Code\";s:11:\"cl_zip_plac\";s:21:\"Enter zip/postal code\";s:10:\"cl_country\";s:7:\"Country\";s:15:\"cl_country_plac\";s:17:\"Enter the country\";s:8:\"cl_state\";s:12:\"State/county\";s:13:\"cl_state_plac\";s:22:\"Enter the State/county\";s:7:\"cl_city\";s:4:\"City\";s:12:\"cl_city_plac\";s:14:\"Enter the city\";s:7:\"cl_area\";s:4:\"Area\";s:12:\"cl_area_plac\";s:14:\"Enter the area\";s:17:\"cl_drag_drop_text\";s:51:\"Drag and drop the pin on map to find exact location\";s:11:\"cl_latitude\";s:8:\"Latitude\";s:16:\"cl_latitude_plac\";s:22:\"Enter address latitude\";s:12:\"cl_longitude\";s:9:\"Longitude\";s:17:\"cl_longitude_plac\";s:23:\"Enter address Longitude\";s:14:\"cl_street_view\";s:11:\"Street View\";s:8:\"cl_ppbtn\";s:30:\"Place the pin in address above\";s:17:\"cl_streat_address\";s:14:\"Streat Address\";s:22:\"cl_streat_address_plac\";s:50:\"Enter only the street name and the building number\";s:16:\"cl_make_featured\";s:46:\"Do you want to mark this property as featured?\";s:13:\"cl_login_view\";s:49:\"The user must be logged in to view this property?\";s:18:\"cl_login_view_plac\";s:60:\"If \"Yes\" then only logged in user can view property details.\";s:13:\"cl_disclaimer\";s:10:\"Disclaimer\";s:11:\"cl_mortgage\";s:18:\"Mortgage Calulator\";s:16:\"cl_mortgage_plac\";s:47:\"Show/Hide mortgage calculator for this listing?\";s:17:\"cl_decuments_text\";s:56:\"You can attach PDF files, Map images OR other documents.\";s:17:\"cl_attachment_btn\";s:18:\"Select Attachment.\";s:23:\"cl_uploaded_attachments\";s:20:\"Uploaded Attachments\";s:20:\"cl_contact_info_text\";s:64:\"What information do you want to display in agent data container?\";s:14:\"cl_author_info\";s:11:\"Author Info\";s:13:\"cl_agent_info\";s:45:\"Agent Info (Choose agent from the list below)\";s:18:\"cl_agent_info_plac\";s:15:\"Select an Agent\";s:14:\"cl_agency_info\";s:47:\"Agency Info (Choose agency from the list below)\";s:15:\"cl_agency_info2\";s:11:\"Agency Info\";s:19:\"cl_agency_info_plac\";s:16:\"Select an Agency\";s:14:\"cl_not_display\";s:14:\"Do not display\";s:13:\"cl_add_slider\";s:67:\"Do you want to display this property on the custom property slider?\";s:18:\"cl_add_slider_plac\";s:42:\"Upload an image below if you selected yes.\";s:13:\"cl_slider_img\";s:12:\"Slider Image\";s:18:\"cl_slider_img_size\";s:29:\"Suggested size 2000px x 700px\";s:13:\"cl_plan_title\";s:10:\"Plan Title\";s:18:\"cl_plan_title_plac\";s:20:\"Enter the plan title\";s:16:\"cl_plan_bedrooms\";s:8:\"Bedrooms\";s:21:\"cl_plan_bedrooms_plac\";s:28:\"Enter the number of bedrooms\";s:17:\"cl_plan_bathrooms\";s:9:\"Bathrooms\";s:22:\"cl_plan_bathrooms_plac\";s:29:\"Enter the number of bathrooms\";s:13:\"cl_plan_price\";s:5:\"Price\";s:18:\"cl_plan_price_plac\";s:15:\"Enter the price\";s:21:\"cl_plan_price_postfix\";s:5:\"Price\";s:26:\"cl_plan_price_postfix_plac\";s:23:\"Enter the price postfix\";s:12:\"cl_plan_size\";s:9:\"Plan Size\";s:17:\"cl_plan_size_plac\";s:19:\"Enter the plan size\";s:11:\"cl_plan_img\";s:10:\"Plan Image\";s:16:\"cl_plan_img_plac\";s:21:\"Upload the plan image\";s:15:\"cl_plan_img_btn\";s:12:\"Select Image\";s:16:\"cl_plan_img_size\";s:25:\"Minimum size 800 x 600 px\";s:11:\"cl_plan_des\";s:11:\"Description\";s:16:\"cl_plan_des_plac\";s:26:\"Enter the plan description\";s:13:\"cl_subl_title\";s:5:\"Title\";s:18:\"cl_subl_title_plac\";s:16:\"Enter the  title\";s:16:\"cl_subl_bedrooms\";s:8:\"Bedrooms\";s:21:\"cl_subl_bedrooms_plac\";s:28:\"Enter the number of bedrooms\";s:17:\"cl_subl_bathrooms\";s:9:\"Bathrooms\";s:22:\"cl_subl_bathrooms_plac\";s:29:\"Enter the number of bathrooms\";s:13:\"cl_subl_price\";s:5:\"Price\";s:18:\"cl_subl_price_plac\";s:15:\"Enter the price\";s:21:\"cl_subl_price_postfix\";s:5:\"Price\";s:26:\"cl_subl_price_postfix_plac\";s:23:\"Enter the price postfix\";s:12:\"cl_subl_size\";s:13:\"Property Size\";s:17:\"cl_subl_size_plac\";s:23:\"Enter the property size\";s:20:\"cl_subl_size_postfix\";s:12:\"Size Postfix\";s:25:\"cl_subl_size_postfix_plac\";s:31:\"Enter the property size postfix\";s:12:\"cl_subl_type\";s:13:\"Property Type\";s:17:\"cl_subl_type_plac\";s:23:\"Enter the property type\";s:12:\"cl_subl_date\";s:17:\"Availability Date\";s:17:\"cl_subl_date_plac\";s:27:\"Enter the availability date\";s:11:\"cl_subl_ids\";s:11:\"Listing IDs\";s:16:\"cl_subl_ids_plac\";s:37:\"Enter the listing IDs comma separated\";s:19:\"cl_subl_ids_tooltip\";s:105:\"If the sub-properties are separated listings, use the box above to enter the listing IDs (Example: 4,5,6)\";s:9:\"dsh_board\";s:5:\"Board\";s:14:\"dsh_activities\";s:10:\"Activities\";s:9:\"dsh_deals\";s:5:\"Deals\";s:9:\"dsh_leads\";s:5:\"Leads\";s:13:\"dsh_inquiries\";s:9:\"Inquiries\";s:11:\"dsh_insight\";s:7:\"Insight\";s:9:\"dsh_props\";s:10:\"Properties\";s:7:\"dsh_all\";s:3:\"All\";s:13:\"dsh_published\";s:9:\"Published\";s:11:\"dsh_pending\";s:7:\"Pending\";s:11:\"dsh_expired\";s:7:\"Expired\";s:9:\"dsh_draft\";s:5:\"Draft\";s:8:\"dsh_hold\";s:7:\"On Hold\";s:18:\"dsh_create_listing\";s:16:\"Create a Listing\";s:12:\"dsh_favorite\";s:9:\"Favorites\";s:12:\"dsh_messages\";s:8:\"Messages\";s:18:\"dsh_saved_searches\";s:14:\"Saved Searches\";s:14:\"dsh_membership\";s:10:\"Membership\";s:12:\"dsh_invoices\";s:8:\"Invoices\";s:11:\"dsh_profile\";s:10:\"My Profile\";s:8:\"dsh_gdpr\";s:12:\"GDPR Request\";s:10:\"dsh_agents\";s:6:\"Agents\";s:10:\"dsh_addnew\";s:7:\"Add New\";s:10:\"dsh_logout\";s:7:\"Log Out\";s:11:\"custom_logo\";a:5:{s:3:\"url\";s:93:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg\";s:2:\"id\";s:3:\"172\";s:6:\"height\";s:3:\"265\";s:5:\"width\";s:3:\"700\";s:9:\"thumbnail\";s:101:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144736200-150x150.jpg\";}s:11:\"retina_logo\";a:5:{s:3:\"url\";s:93:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg\";s:2:\"id\";s:3:\"172\";s:6:\"height\";s:3:\"265\";s:5:\"width\";s:3:\"700\";s:9:\"thumbnail\";s:101:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144736200-150x150.jpg\";}s:11:\"mobile_logo\";a:5:{s:3:\"url\";s:93:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg\";s:2:\"id\";s:3:\"172\";s:6:\"height\";s:3:\"265\";s:5:\"width\";s:3:\"700\";s:9:\"thumbnail\";s:101:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144736200-150x150.jpg\";}s:18:\"mobile_retina_logo\";a:5:{s:3:\"url\";s:93:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg\";s:2:\"id\";s:3:\"172\";s:6:\"height\";s:3:\"265\";s:5:\"width\";s:3:\"700\";s:9:\"thumbnail\";s:101:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144736200-150x150.jpg\";}s:18:\"custom_logo_splash\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"retina_logo_splash\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:25:\"custom_logo_mobile_splash\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:25:\"retina_logo_mobile_splash\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"retina_logo_height\";s:5:\"100px\";s:17:\"retina_logo_width\";s:0:\"\";s:24:\"retina_mobilelogo_height\";s:4:\"50px\";s:23:\"retina_mobilelogo_width\";s:0:\"\";s:7:\"favicon\";a:5:{s:3:\"url\";s:71:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\";s:2:\"id\";s:2:\"22\";s:6:\"height\";s:3:\"180\";s:5:\"width\";s:3:\"178\";s:9:\"thumbnail\";s:79:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\";}s:11:\"iphone_icon\";a:5:{s:3:\"url\";s:71:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\";s:2:\"id\";s:2:\"22\";s:6:\"height\";s:3:\"180\";s:5:\"width\";s:3:\"178\";s:9:\"thumbnail\";s:79:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\";}s:18:\"iphone_icon_retina\";a:5:{s:3:\"url\";s:71:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\";s:2:\"id\";s:2:\"22\";s:6:\"height\";s:3:\"180\";s:5:\"width\";s:3:\"178\";s:9:\"thumbnail\";s:79:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\";}s:9:\"ipad_icon\";a:5:{s:3:\"url\";s:71:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\";s:2:\"id\";s:2:\"22\";s:6:\"height\";s:3:\"180\";s:5:\"width\";s:3:\"178\";s:9:\"thumbnail\";s:79:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\";}s:16:\"ipad_icon_retina\";a:5:{s:3:\"url\";s:71:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\";s:2:\"id\";s:2:\"22\";s:6:\"height\";s:3:\"180\";s:5:\"width\";s:3:\"178\";s:9:\"thumbnail\";s:79:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\";}s:13:\"lightbox_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"dashboard_logo\";a:5:{s:3:\"url\";s:77:\"https://lantern-realty.com/wp-content/themes/houzez/img/logo-houzez-white.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"header_style\";s:1:\"2\";s:14:\"header_1_width\";s:9:\"container\";s:19:\"header_1_menu_align\";s:8:\"nav-left\";s:15:\"header_1_height\";s:2:\"60\";s:15:\"header_2_height\";s:2:\"54\";s:19:\"header_3_top_height\";s:2:\"80\";s:22:\"header_3_bottom_height\";s:2:\"54\";s:15:\"header_4_height\";s:2:\"90\";s:19:\"header_5_top_height\";s:3:\"110\";s:22:\"header_5_bottom_height\";s:2:\"54\";s:15:\"header_6_height\";s:2:\"60\";s:16:\"main-menu-sticky\";s:1:\"1\";s:14:\"header_4_width\";s:9:\"container\";s:19:\"header_4_menu_align\";s:8:\"nav-left\";s:18:\"hd1_4_phone_enable\";s:1:\"0\";s:11:\"hd1_4_phone\";s:17:\"+1 (800) 987 6543\";s:10:\"hd3_callus\";s:1:\"1\";s:17:\"hd3_call_us_image\";a:5:{s:3:\"url\";s:72:\"http://lantern-realty.com/wp-content/themes/houzez/images/call-image.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"hd3_call_us_text\";s:8:\"Call Us:\";s:9:\"hd3_phone\";s:14:\"(980) 858-2074\";s:16:\"hd2_contact_info\";s:1:\"1\";s:17:\"hd2_contact_phone\";s:14:\"(704) 298-0087\";s:17:\"hd2_contact_email\";s:26:\"contact@lantern-realty.com\";s:16:\"hd2_address_info\";s:1:\"1\";s:17:\"hd2_address_line1\";s:67:\"Serving the Piedmont, Foothills and Mountain Areas of the Carolinas\";s:17:\"hd2_address_line2\";s:0:\"\";s:15:\"hd2_timing_info\";s:1:\"0\";s:16:\"hd2_timing_hours\";s:16:\"Agents Available\";s:15:\"hd2_timing_days\";s:14:\"Contact Us Now\";s:13:\"social-header\";s:1:\"0\";s:11:\"hs-facebook\";s:39:\"https://www.facebook.com/lanternrealty/\";s:10:\"hs-twitter\";s:0:\"\";s:13:\"hs-googleplus\";s:0:\"\";s:11:\"hs-linkedin\";s:0:\"\";s:12:\"hs-instagram\";s:0:\"\";s:12:\"hs-pinterest\";s:0:\"\";s:10:\"hs-youtube\";s:0:\"\";s:7:\"hs-yelp\";s:0:\"\";s:10:\"hs-behance\";s:0:\"\";s:22:\"create_lisiting_enable\";s:1:\"0\";s:21:\"create_listing_button\";s:2:\"no\";s:7:\"top_bar\";s:1:\"0\";s:13:\"top_bar_width\";s:9:\"container\";s:14:\"top_bar_mobile\";s:1:\"0\";s:12:\"top_bar_left\";s:12:\"social_icons\";s:13:\"top_bar_right\";s:4:\"none\";s:13:\"top_bar_phone\";s:12:\"704-298-0087\";s:13:\"top_bar_email\";s:26:\"contact@lantern-realty.com\";s:14:\"top_bar_slogan\";s:0:\"\";s:24:\"currency_switcher_enable\";s:1:\"0\";s:27:\"houzez_supported_currencies\";s:43:\"AUD,CAD,CHF,EUR,GBP,HKD,JPY,NOK,SEK,USD,NGN\";s:22:\"houzez_currency_expiry\";s:4:\"3600\";s:20:\"area_switcher_enable\";s:1:\"0\";s:16:\"houzez_base_area\";s:4:\"sqft\";s:13:\"splash_layout\";s:15:\"container-fluid\";s:14:\"backgroud_type\";s:5:\"image\";s:15:\"splash_page_nav\";s:1:\"1\";s:17:\"splash_menu_align\";s:8:\"nav-left\";s:13:\"splash_search\";s:1:\"1\";s:12:\"splash_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"splash_slider\";s:0:\"\";s:13:\"splash_bg_mp4\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"splash_bg_webm\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"splash_bg_ogv\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"splash_video_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:19:\"splash_welcome_text\";s:30:\"Welcome, Make Yourself At Home\";s:18:\"splash_welcome_sub\";s:0:\"\";s:18:\"splash_callus_text\";s:12:\"Call Us Free\";s:19:\"splash_callus_phone\";s:14:\"(800) 897 6543\";s:13:\"social-splash\";s:1:\"0\";s:11:\"sp-facebook\";s:0:\"\";s:10:\"sp-twitter\";s:0:\"\";s:13:\"sp-googleplus\";s:0:\"\";s:11:\"sp-linkedin\";s:0:\"\";s:12:\"sp-instagram\";s:0:\"\";s:20:\"splash-logolink-type\";s:9:\"home_page\";s:15:\"splash-logolink\";s:0:\"\";s:12:\"header_login\";s:1:\"0\";s:15:\"header_register\";s:1:\"0\";s:19:\"login_register_type\";s:7:\"as_icon\";s:15:\"header_loggedIn\";s:1:\"0\";s:19:\"register_first_name\";s:1:\"0\";s:18:\"register_last_name\";s:1:\"0\";s:15:\"register_mobile\";s:1:\"0\";s:15:\"enable_password\";s:2:\"no\";s:13:\"user_as_agent\";s:2:\"no\";s:15:\"realtor_visible\";s:1:\"0\";s:14:\"login_redirect\";s:9:\"same_page\";s:19:\"login_redirect_link\";s:0:\"\";s:21:\"login_terms_condition\";s:0:\"\";s:14:\"facebook_login\";s:2:\"no\";s:16:\"facebook_api_key\";s:0:\"\";s:15:\"facebook_secret\";s:0:\"\";s:12:\"google_login\";s:2:\"no\";s:16:\"google_client_id\";s:0:\"\";s:13:\"google_secret\";s:0:\"\";s:15:\"user_show_roles\";s:1:\"0\";s:23:\"user_show_roles_profile\";s:1:\"0\";s:15:\"show_hide_roles\";a:6:{s:5:\"agent\";s:0:\"\";s:6:\"agency\";s:0:\"\";s:5:\"owner\";s:0:\"\";s:5:\"buyer\";s:0:\"\";s:6:\"seller\";s:0:\"\";s:7:\"manager\";s:0:\"\";}s:10:\"agent_role\";s:5:\"Agent\";s:11:\"agency_role\";s:6:\"Agency\";s:10:\"owner_role\";s:5:\"Owner\";s:10:\"buyer_role\";s:5:\"Buyer\";s:11:\"seller_role\";s:6:\"Seller\";s:12:\"manager_role\";s:7:\"Manager\";s:14:\"multi_currency\";s:1:\"0\";s:22:\"default_multi_currency\";s:0:\"\";s:12:\"short_prices\";s:1:\"0\";s:13:\"indian_format\";s:1:\"0\";s:15:\"currency_symbol\";s:1:\"$\";s:17:\"currency_position\";s:6:\"before\";s:8:\"decimals\";s:1:\"0\";s:23:\"decimal_point_separator\";s:1:\".\";s:19:\"thousands_separator\";s:1:\",\";s:18:\"currency_separator\";s:1:\"/\";s:9:\"typo-body\";a:9:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:4:\"none\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"24px\";}s:12:\"typo-headers\";a:9:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:4:\"left\";s:14:\"text-transform\";s:4:\"none\";s:9:\"font-size\";s:4:\"14px\";}s:11:\"typo-footer\";a:10:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:4:\"left\";s:14:\"text-transform\";s:4:\"none\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"25px\";}s:11:\"typo-topbar\";a:10:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:4:\"left\";s:14:\"text-transform\";s:4:\"none\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:4:\"25px\";}s:13:\"typo-headings\";a:8:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:7:\"inherit\";s:14:\"text-transform\";s:7:\"inherit\";}s:15:\"body_text_color\";s:7:\"#222222\";s:13:\"body_bg_color\";s:7:\"#f5f5f5\";s:20:\"houzez_primary_color\";s:7:\"#00AEEF\";s:26:\"houzez_primary_color_hover\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:3:\".75\";s:4:\"rgba\";s:20:\"rgba(0,174,239,0.75)\";}s:22:\"houzez_secondary_color\";s:7:\"#FF6E00\";s:28:\"houzez_secondary_color_hover\";a:3:{s:5:\"color\";s:7:\"#FF6E00\";s:5:\"alpha\";s:3:\".75\";s:4:\"rgba\";s:20:\"rgba(255,110,0,0.75)\";}s:11:\"header_1_bg\";s:7:\"#004272\";s:20:\"header_1_links_color\";s:7:\"#FFFFFF\";s:26:\"header_1_links_hover_color\";s:0:\"\";s:29:\"header_1_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:15:\"header_2_top_bg\";s:7:\"#ffffff\";s:17:\"header_2_top_text\";s:7:\"#004274\";s:11:\"header_2_bg\";s:7:\"#004272\";s:20:\"header_2_links_color\";s:7:\"#ffffff\";s:26:\"header_2_links_hover_color\";s:0:\"\";s:29:\"header_2_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:15:\"header_2_border\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:11:\"header_3_bg\";s:7:\"#ffffff\";s:21:\"header_3_callus_color\";s:7:\"#ffffff\";s:24:\"header_3_callus_bg_color\";s:7:\"#00aeef\";s:16:\"header_3_bg_menu\";s:0:\"\";s:20:\"header_3_links_color\";s:7:\"#FFFFFF\";s:26:\"header_3_links_hover_color\";s:0:\"\";s:29:\"header_3_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:15:\"header_3_border\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:21:\"header_3_social_color\";s:7:\"#FFFFFF\";s:11:\"header_4_bg\";s:7:\"#ffffff\";s:20:\"header_4_links_color\";s:7:\"#004274\";s:26:\"header_4_links_hover_color\";s:0:\"\";s:29:\"header_4_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#00aeff\";s:5:\"alpha\";s:2:\".1\";s:4:\"rgba\";s:22:\"rgba(0, 174, 255, 0.1)\";}s:11:\"header_6_bg\";s:7:\"#00AEEF\";s:20:\"header_6_links_color\";s:7:\"#FFFFFF\";s:26:\"header_6_links_hover_color\";s:0:\"\";s:29:\"header_6_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:21:\"header_6_social_color\";s:7:\"#FFFFFF\";s:32:\"header_4_transparent_links_color\";s:7:\"#ffffff\";s:38:\"header_4_transparent_links_hover_color\";s:7:\"#00aeef\";s:35:\"header_4_transparent_border_bottom1\";a:6:{s:10:\"border-top\";s:3:\"1px\";s:12:\"border-right\";s:3:\"1px\";s:13:\"border-bottom\";s:3:\"1px\";s:11:\"border-left\";s:3:\"1px\";s:12:\"border-style\";s:4:\"none\";s:12:\"border-color\";s:0:\"\";}s:40:\"header_4_transparent_border_bottom_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:3:\".30\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.3)\";}s:17:\"header_submenu_bg\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:3:\".95\";s:4:\"rgba\";s:22:\"rgba(255,255,255,0.95)\";}s:26:\"header_submenu_links_color\";s:7:\"#2e3e49\";s:32:\"header_submenu_links_hover_color\";s:7:\"#00aeef\";s:27:\"header_submenu_border_color\";s:7:\"#e6e6e6\";s:18:\"header_4_btn_color\";s:7:\"#004274\";s:24:\"header_4_btn_hover_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:21:\"header_4_btn_bg_color\";s:7:\"#ffffff\";s:27:\"header_4_btn_bg_hover_color\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(0,174,239,1)\";}s:19:\"header_4_btn_border\";a:6:{s:10:\"border-top\";s:3:\"1px\";s:12:\"border-right\";s:3:\"1px\";s:13:\"border-bottom\";s:3:\"1px\";s:11:\"border-left\";s:3:\"1px\";s:12:\"border-style\";s:5:\"solid\";s:12:\"border-color\";s:7:\"#004274\";}s:31:\"header_4_btn_border_hover_color\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(0,174,239,1)\";}s:30:\"header_4_transparent_btn_color\";s:7:\"#ffffff\";s:36:\"header_4_transparent_btn_hover_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:33:\"header_4_transparent_btn_bg_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:39:\"header_4_transparent_btn_bg_hover_color\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(0,174,239,1)\";}s:31:\"header_4_transparent_btn_border\";a:6:{s:10:\"border-top\";s:3:\"1px\";s:12:\"border-right\";s:3:\"1px\";s:13:\"border-bottom\";s:3:\"1px\";s:11:\"border-left\";s:3:\"1px\";s:12:\"border-style\";s:5:\"solid\";s:12:\"border-color\";s:7:\"#ffffff\";}s:43:\"header_4_transparent_btn_border_hover_color\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(0,174,239,1)\";}s:17:\"mob_menu_bg_color\";s:7:\"#ffffff\";s:18:\"mob_menu_btn_color\";s:7:\"#000000\";s:16:\"mob_nav_bg_color\";s:7:\"#ffffff\";s:14:\"mob_link_color\";s:7:\"#004274\";s:17:\"mobile_nav_border\";a:6:{s:10:\"border-top\";s:3:\"1px\";s:12:\"border-right\";s:3:\"0px\";s:13:\"border-bottom\";s:3:\"0px\";s:11:\"border-left\";s:3:\"0px\";s:12:\"border-style\";s:5:\"solid\";s:12:\"border-color\";s:7:\"#ffffff\";}s:14:\"adv_background\";s:7:\"#FFFFFF\";s:22:\"side_search_background\";s:7:\"#FFFFFF\";s:22:\"adv_textfields_borders\";s:7:\"#cccccc\";s:16:\"adv_text_color20\";s:7:\"#a1a7a8\";s:15:\"adv_other_color\";s:7:\"#222222\";s:23:\"adv_halfmap_other_color\";s:7:\"#222222\";s:17:\"adv_search_btn_bg\";a:2:{s:7:\"regular\";s:7:\"#ff6e00\";s:5:\"hover\";s:7:\"#e96603\";}s:19:\"adv_search_btn_text\";a:2:{s:7:\"regular\";s:7:\"#ffffff\";s:5:\"hover\";s:7:\"#ffffff\";}s:17:\"adv_search_border\";a:2:{s:7:\"regular\";s:7:\"#ff6e00\";s:5:\"hover\";s:7:\"#e96603\";}s:16:\"adv_button_color\";a:2:{s:7:\"regular\";s:7:\"#00AEEF\";s:5:\"hover\";s:7:\"#00AEEF\";}s:19:\"adv_button_bg_color\";a:2:{s:7:\"regular\";s:7:\"#ffffff\";s:5:\"hover\";s:7:\"#00aeff\";}s:23:\"adv_button_border_color\";a:2:{s:7:\"regular\";s:7:\"#dce0e0\";s:5:\"hover\";s:7:\"#00aeff\";}s:21:\"header_search_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:4:\"10px\";s:14:\"padding-bottom\";s:4:\"10px\";}s:31:\"adv_overlay_open_close_bg_color\";s:7:\"#ff6e00\";s:28:\"adv_overlay_open_close_color\";s:7:\"#ffffff\";s:9:\"ssb_color\";s:7:\"#ffffff\";s:15:\"ssb_color_hover\";s:7:\"#ffffff\";s:12:\"ssb_bg_color\";s:7:\"#28a745\";s:18:\"ssb_bg_color_hover\";s:7:\"#28a745\";s:16:\"ssb_border_color\";s:7:\"#28a745\";s:22:\"ssb_border_color_hover\";s:7:\"#28a745\";s:10:\"ua_menu_bg\";s:7:\"#FFFFFF\";s:19:\"ua_menu_links_color\";s:7:\"#2e3e49\";s:25:\"ua_menu_links_hover_color\";s:7:\"#2e3e49\";s:28:\"ua_menu_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#cccccc\";s:5:\"alpha\";s:4:\"0.15\";s:4:\"rgba\";s:22:\"rgba(204,204,204,0.15)\";}s:20:\"ua_menu_border_color\";s:7:\"#e6e6e6\";s:13:\"dm_background\";s:7:\"#00365e\";s:8:\"dm_color\";s:7:\"#ffffff\";s:14:\"dm_hover_color\";s:7:\"#4cc6f4\";s:23:\"dm_submenu_active_color\";s:7:\"#00aeff\";s:22:\"houzez_prop_details_bg\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:2:\".1\";s:4:\"rgba\";s:19:\"rgba(0,174,239,0.1)\";}s:25:\"prop_details_border_color\";s:7:\"#00aeff\";s:23:\"featured_label_bg_color\";s:7:\"#77c720\";s:20:\"featured_label_color\";s:7:\"#ffffff\";s:10:\"top_bar_bg\";s:7:\"#000000\";s:13:\"top_bar_color\";s:7:\"#ffffff\";s:19:\"top_bar_color_hover\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:3:\".75\";s:4:\"rgba\";s:20:\"rgba(0,174,239,0.75)\";}s:15:\"footer_bg_color\";s:7:\"#004274\";s:22:\"footer_bottom_bg_color\";s:7:\"#00335A\";s:12:\"footer_color\";s:7:\"#FFFFFF\";s:18:\"footer_hover_color\";a:3:{s:5:\"color\";s:7:\"#00aeef\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(0,174,239,1)\";}s:13:\"prop-top-area\";s:2:\"v1\";s:23:\"prop_default_active_tab\";s:13:\"image_gallery\";s:19:\"prop-content-layout\";s:6:\"simple\";s:13:\"is_full_width\";s:1:\"0\";s:17:\"prop_details_cols\";s:11:\"list-2-cols\";s:17:\"prop_address_cols\";s:11:\"list-2-cols\";s:18:\"prop_features_cols\";s:11:\"list-3-cols\";s:15:\"prop-detail-nav\";s:2:\"no\";s:14:\"map_in_section\";s:1:\"0\";s:23:\"send_agent_message_copy\";s:1:\"0\";s:24:\"send_agent_message_email\";s:0:\"\";s:15:\"property_blocks\";a:2:{s:7:\"enabled\";a:11:{s:7:\"placebo\";s:7:\"placebo\";s:4:\"unit\";s:25:\"Multi Unit / Sub Listings\";s:11:\"description\";s:11:\"Description\";s:7:\"address\";s:7:\"Address\";s:7:\"details\";s:7:\"Details\";s:8:\"features\";s:8:\"Features\";s:11:\"floor_plans\";s:11:\"Floor Plans\";s:5:\"video\";s:5:\"Video\";s:12:\"virtual_tour\";s:18:\"360° Virtual Tour\";s:9:\"walkscore\";s:9:\"Walkscore\";s:12:\"agent_bottom\";s:12:\"Agent bottom\";}s:8:\"disabled\";a:13:{s:7:\"placebo\";s:7:\"placebo\";s:11:\"yelp_nearby\";s:14:\"Near by Places\";s:13:\"schedule_tour\";s:13:\"Schedule Tour\";s:12:\"energy_class\";s:12:\"Energy Class\";s:15:\"adsense_space_1\";s:15:\"Adsense Space 1\";s:15:\"adsense_space_2\";s:15:\"Adsense Space 2\";s:15:\"adsense_space_3\";s:15:\"Adsense Space 3\";s:8:\"overview\";s:8:\"Overview\";s:19:\"mortgage_calculator\";s:19:\"Mortgage Calculator\";s:6:\"review\";s:7:\"Reviews\";s:18:\"similar_properties\";s:16:\"Similar Listings\";s:16:\"booking_calendar\";s:21:\"Availability Calendar\";s:13:\"block_gallery\";s:15:\"Section Gallery\";}}s:21:\"block_gallery_visible\";s:1:\"9\";s:21:\"block_gallery_columns\";s:1:\"3\";s:20:\"property_blocks_tabs\";a:2:{s:7:\"enabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:11:\"description\";s:11:\"Description\";s:7:\"address\";s:7:\"Address\";s:7:\"details\";s:7:\"Details\";s:8:\"features\";s:8:\"Features\";s:11:\"floor_plans\";s:11:\"Floor Plans\";s:5:\"video\";s:5:\"Video\";}s:8:\"disabled\";a:2:{s:7:\"placebo\";s:7:\"placebo\";s:12:\"virtual_tour\";s:18:\"360° Virtual Tour\";}}s:17:\"tabs_agent_bottom\";s:1:\"1\";s:28:\"houzez_availability_calendar\";s:1:\"0\";s:19:\"houzez_energy_class\";s:1:\"0\";s:15:\"houzez_mortgage\";s:1:\"1\";s:17:\"houzez_sublisting\";s:1:\"0\";s:20:\"houzez_tabs_schedule\";s:1:\"0\";s:27:\"property_blocks_luxuryhomes\";a:2:{s:7:\"enabled\";a:11:{s:7:\"placebo\";s:7:\"placebo\";s:4:\"unit\";s:25:\"Multi Unit / Sub Listings\";s:11:\"description\";s:21:\"Description & Details\";s:8:\"features\";s:8:\"Features\";s:7:\"address\";s:7:\"Address\";s:7:\"gallery\";s:7:\"Gallery\";s:11:\"floor_plans\";s:11:\"Floor Plans\";s:5:\"video\";s:5:\"Video\";s:9:\"walkscore\";s:9:\"Walkscore\";s:11:\"yelp_nearby\";s:6:\"Nearby\";s:10:\"agent_form\";s:13:\"Agent Contact\";}s:8:\"disabled\";a:11:{s:7:\"placebo\";s:7:\"placebo\";s:12:\"virtual_tour\";s:18:\"360° Virtual Tour\";s:12:\"energy_class\";s:12:\"Energy Class\";s:13:\"schedule_tour\";s:13:\"Schedule Tour\";s:15:\"adsense_space_1\";s:15:\"Adsense Space 1\";s:15:\"adsense_space_2\";s:15:\"Adsense Space 2\";s:15:\"adsense_space_3\";s:15:\"Adsense Space 3\";s:19:\"mortgage_calculator\";s:19:\"Mortgage Calculator\";s:6:\"review\";s:7:\"Reviews\";s:18:\"similar_properties\";s:16:\"Similar Listings\";s:16:\"booking_calendar\";s:21:\"Availability Calendar\";}}s:12:\"show_id_head\";s:1:\"1\";s:22:\"overview_data_composer\";a:2:{s:7:\"enabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:4:\"type\";s:13:\"Property Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:6:\"garage\";s:6:\"Garage\";s:9:\"area-size\";s:9:\"Area Size\";s:10:\"year-built\";s:10:\"Year Built\";}s:8:\"disabled\";a:4:{s:7:\"placebo\";s:7:\"placebo\";s:5:\"rooms\";s:5:\"Rooms\";s:9:\"land-area\";s:9:\"Land Area\";s:11:\"property-id\";s:11:\"Property ID\";}}s:17:\"energy_class_data\";s:26:\"A+, A, B, C, D, E, F, G, H\";s:14:\"energy_1_color\";s:7:\"#33a357\";s:14:\"energy_2_color\";s:7:\"#79b752\";s:14:\"energy_3_color\";s:7:\"#c3d545\";s:14:\"energy_4_color\";s:7:\"#fff12c\";s:14:\"energy_5_color\";s:7:\"#edb731\";s:14:\"energy_6_color\";s:7:\"#d66f2c\";s:14:\"energy_7_color\";s:7:\"#cc232a\";s:14:\"energy_8_color\";s:7:\"#cc232a\";s:14:\"energy_9_color\";s:7:\"#cc232a\";s:15:\"energy_10_color\";s:7:\"#cc232a\";s:21:\"print_property_button\";s:1:\"1\";s:21:\"detail_featured_label\";s:1:\"1\";s:13:\"detail_status\";s:1:\"1\";s:12:\"detail_label\";s:1:\"1\";s:20:\"prop_detail_favorite\";s:1:\"1\";s:17:\"prop_detail_share\";s:1:\"1\";s:18:\"documents_download\";s:1:\"1\";s:23:\"hide_detail_prop_fields\";a:20:{s:7:\"prop_id\";s:0:\"\";s:9:\"prop_type\";s:0:\"\";s:11:\"prop_status\";s:0:\"\";s:10:\"prop_label\";s:0:\"\";s:15:\"sale_rent_price\";s:0:\"\";s:8:\"bedrooms\";s:0:\"\";s:5:\"rooms\";s:0:\"\";s:9:\"bathrooms\";s:0:\"\";s:9:\"area_size\";s:0:\"\";s:9:\"land_area\";s:0:\"\";s:7:\"garages\";s:0:\"\";s:10:\"year_built\";s:0:\"\";s:12:\"updated_date\";s:0:\"\";s:18:\"additional_details\";s:0:\"\";s:7:\"address\";s:0:\"\";s:7:\"country\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:4:\"area\";s:0:\"\";s:3:\"zip\";s:0:\"\";}s:15:\"adsense_space_1\";s:0:\"\";s:15:\"adsense_space_2\";s:0:\"\";s:15:\"adsense_space_3\";s:0:\"\";s:16:\"houzez_walkscore\";s:1:\"0\";s:20:\"houzez_walkscore_api\";s:0:\"\";s:11:\"houzez_yelp\";s:1:\"0\";s:19:\"houzez_yelp_api_key\";s:0:\"\";s:16:\"houzez_yelp_term\";a:4:{i:0;s:9:\"education\";i:1;s:4:\"food\";i:2;s:6:\"health\";i:3;s:10:\"realestate\";}s:17:\"houzez_yelp_limit\";s:1:\"3\";s:21:\"houzez_yelp_dist_unit\";s:5:\"miles\";s:19:\"schedule_time_slots\";s:128:\"10:00 am, 10:15 pm, 10:30 pm, 12:00 pm, 12:15 pm, 12:30 pm, 12:45 pm, 01:00 pm, 01:15 pm, 01:30 pm, 01:45 pm, 02:00 pm, 05:00 pm\";s:12:\"icon_prop_id\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-1.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"icon_bedrooms\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-2.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:10:\"icon_rooms\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"icon_bathrooms\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-3.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"icon_prop_size\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-4.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"icon_prop_land\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-4.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"icon_garage_size\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-5.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"icon_garage\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-6.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:9:\"icon_year\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-7.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:17:\"mcal_down_payment\";s:2:\"15\";s:10:\"mcal_terms\";s:2:\"12\";s:18:\"mcal_interest_rate\";s:3:\"3.5\";s:20:\"mcal_prop_tax_enable\";s:1:\"1\";s:13:\"mcal_prop_tax\";s:4:\"3000\";s:14:\"mcal_hi_enable\";s:1:\"1\";s:7:\"mcal_hi\";s:4:\"1000\";s:15:\"mcal_pmi_enable\";s:1:\"1\";s:8:\"mcal_pmi\";s:4:\"1000\";s:25:\"houzez_similer_properties\";s:1:\"0\";s:30:\"houzez_similer_properties_type\";a:1:{i:0;s:13:\"property_type\";}s:13:\"similar_order\";s:6:\"d_date\";s:30:\"houzez_similer_properties_view\";s:0:\"\";s:31:\"houzez_similer_properties_count\";s:1:\"4\";s:16:\"property_reviews\";s:1:\"1\";s:34:\"property_reviews_approved_by_admin\";s:1:\"0\";s:22:\"update_review_approved\";s:1:\"0\";s:13:\"num_of_review\";s:1:\"5\";s:22:\"single_prop_breadcrumb\";s:13:\"property_type\";s:21:\"enable_next_prev_prop\";s:1:\"0\";s:17:\"enable_disclaimer\";s:1:\"1\";s:19:\"property_disclaimer\";s:0:\"\";s:15:\"print_page_logo\";a:5:{s:3:\"url\";s:84:\"http://lantern-realty.com/wp-content/themes/houzez/images/logo/houzez-logo-print.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"print_agent\";s:1:\"1\";s:17:\"print_description\";s:1:\"1\";s:13:\"print_details\";s:1:\"1\";s:14:\"print_features\";s:1:\"1\";s:18:\"print_energy_class\";s:1:\"1\";s:16:\"print_floorplans\";s:1:\"1\";s:13:\"print_gallery\";s:1:\"0\";s:13:\"print_gr_code\";s:1:\"1\";s:16:\"submit_form_type\";s:5:\"mstep\";s:23:\"listings_admin_approved\";s:3:\"yes\";s:28:\"edit_listings_admin_approved\";s:2:\"no\";s:19:\"enable_multi_agents\";s:1:\"0\";s:20:\"range-bedsroomsbaths\";s:1:\"0\";s:8:\"ams_type\";s:1:\"0\";s:10:\"ams_status\";s:1:\"0\";s:9:\"ams_label\";s:1:\"0\";s:18:\"location_dropdowns\";s:2:\"no\";s:19:\"area_prefix_default\";s:4:\"SqFt\";s:22:\"area_prefix_changeable\";s:1:\"1\";s:16:\"auto_property_id\";s:1:\"0\";s:19:\"property_id_pattern\";s:4:\"{ID}\";s:18:\"property_id_prefix\";s:0:\"\";s:15:\"max_prop_images\";s:2:\"10\";s:19:\"image_max_file_size\";s:6:\"1000kb\";s:20:\"max_prop_attachments\";s:1:\"3\";s:24:\"attachment_max_file_size\";s:6:\"3000kb\";s:22:\"property_form_sections\";a:2:{s:7:\"enabled\";a:11:{s:7:\"placebo\";s:7:\"placebo\";s:17:\"description-price\";s:19:\"Description & Price\";s:5:\"media\";s:14:\"Property Media\";s:7:\"details\";s:16:\"Property Details\";s:8:\"features\";s:17:\"Property Features\";s:8:\"location\";s:17:\"Property Location\";s:12:\"virtual_tour\";s:18:\"360° Virtual Tour\";s:10:\"floorplans\";s:11:\"Floor Plans\";s:11:\"multi-units\";s:28:\"Multi Units / Sub Properties\";s:10:\"agent_info\";s:17:\"Agent Information\";s:12:\"private_note\";s:13:\"Private Notes\";}s:8:\"disabled\";a:3:{s:7:\"placebo\";s:7:\"placebo\";s:11:\"attachments\";s:11:\"Attachments\";s:12:\"energy_class\";s:12:\"Energy Class\";}}s:18:\"adp_details_fields\";a:2:{s:7:\"enabled\";a:11:{s:7:\"placebo\";s:7:\"placebo\";s:4:\"beds\";s:8:\"Bedrooms\";s:5:\"baths\";s:9:\"Bathrooms\";s:9:\"area-size\";s:9:\"Area Size\";s:14:\"area-size-unit\";s:14:\"Area Size Unit\";s:9:\"land-area\";s:9:\"Land Area\";s:14:\"land-area-unit\";s:14:\"Land Area Unit\";s:6:\"garage\";s:6:\"Garage\";s:11:\"garage-size\";s:11:\"Garage Size\";s:11:\"property-id\";s:11:\"Property ID\";s:4:\"year\";s:10:\"Year Built\";}s:8:\"disabled\";a:2:{s:7:\"placebo\";s:7:\"placebo\";s:5:\"rooms\";s:5:\"Rooms\";}}s:20:\"hide_add_prop_fields\";a:16:{s:9:\"prop_type\";s:0:\"\";s:11:\"prop_status\";s:0:\"\";s:10:\"prop_label\";s:0:\"\";s:15:\"sale_rent_price\";s:0:\"\";s:12:\"second_price\";s:0:\"\";s:13:\"price_postfix\";s:0:\"\";s:12:\"price_prefix\";s:0:\"\";s:9:\"video_url\";s:0:\"\";s:12:\"neighborhood\";s:0:\"\";s:4:\"city\";s:0:\"\";s:11:\"postal_code\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:0:\"\";s:3:\"map\";s:0:\"\";s:11:\"map_address\";s:0:\"\";s:18:\"additional_details\";s:0:\"\";}s:18:\"enable_title_limit\";s:1:\"0\";s:20:\"property_title_limit\";s:0:\"\";s:15:\"required_fields\";a:21:{s:5:\"title\";s:1:\"1\";s:9:\"prop_type\";s:0:\"\";s:11:\"prop_status\";s:0:\"\";s:11:\"prop_labels\";s:0:\"\";s:15:\"sale_rent_price\";s:1:\"1\";s:17:\"prop_second_price\";s:0:\"\";s:11:\"price_label\";s:0:\"\";s:7:\"prop_id\";s:0:\"\";s:8:\"bedrooms\";s:0:\"\";s:5:\"rooms\";s:0:\"\";s:9:\"bathrooms\";s:0:\"\";s:9:\"area_size\";s:1:\"1\";s:9:\"land_area\";s:0:\"\";s:7:\"garages\";s:0:\"\";s:10:\"year_built\";s:0:\"\";s:12:\"energy_class\";s:0:\"\";s:20:\"property_map_address\";s:1:\"1\";s:7:\"country\";s:0:\"\";s:5:\"state\";s:0:\"\";s:4:\"city\";s:0:\"\";s:4:\"area\";s:0:\"\";}s:18:\"main-search-enable\";s:1:\"0\";s:12:\"search_style\";s:7:\"style_1\";s:12:\"search_width\";s:9:\"container\";s:15:\"search_position\";s:9:\"under_nav\";s:12:\"search_pages\";s:9:\"all_pages\";s:18:\"single_prop_search\";s:1:\"0\";s:11:\"is_tax_page\";s:1:\"1\";s:19:\"single_agent_search\";s:1:\"0\";s:21:\"search_top_row_fields\";s:1:\"3\";s:14:\"search_builder\";a:2:{s:7:\"enabled\";a:15:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";s:5:\"price\";s:23:\"Price (Only Search v.3)\";}s:8:\"disabled\";a:9:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";s:6:\"garage\";s:6:\"Garage\";s:10:\"year-built\";s:10:\"Year Built\";}}s:20:\"enable_radius_search\";s:1:\"0\";s:11:\"price_range\";s:1:\"0\";s:18:\"price_range_mobile\";s:1:\"1\";s:21:\"search_other_features\";s:1:\"0\";s:28:\"search_other_features_mobile\";s:1:\"0\";s:21:\"header-search-visible\";s:1:\"0\";s:18:\"main-search-sticky\";s:1:\"0\";s:20:\"mobile-search-sticky\";s:1:\"0\";s:35:\"enable_advanced_search_over_headers\";s:1:\"0\";s:28:\"adv_search_which_header_show\";a:5:{s:10:\"header_map\";s:1:\"1\";s:12:\"header_video\";s:0:\"\";s:12:\"header_image\";s:0:\"\";s:9:\"header_rs\";s:0:\"\";s:9:\"header_ps\";s:0:\"\";}s:28:\"adv_search_over_header_pages\";s:9:\"only_home\";s:20:\"keep_adv_search_live\";s:1:\"1\";s:26:\"dock_search_top_row_fields\";s:1:\"3\";s:19:\"dock_search_builder\";a:2:{s:7:\"enabled\";a:14:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";}s:8:\"disabled\";a:9:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";s:6:\"garage\";s:6:\"Garage\";s:10:\"year-built\";s:10:\"Year Built\";}}s:18:\"dock_radius_search\";s:1:\"0\";s:16:\"dock_price_range\";s:1:\"0\";s:26:\"dock_search_other_features\";s:1:\"0\";s:21:\"enable_halfmap_search\";s:1:\"1\";s:21:\"halfmap_search_layout\";s:2:\"v4\";s:29:\"search_top_row_fields_halfmap\";s:1:\"3\";s:22:\"search_builder_halfmap\";a:2:{s:7:\"enabled\";a:15:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";s:5:\"price\";s:23:\"Price (Only Search v.3)\";}s:8:\"disabled\";a:9:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";s:6:\"garage\";s:6:\"Garage\";s:10:\"year-built\";s:10:\"Year Built\";}}s:28:\"enable_radius_search_halfmap\";s:1:\"1\";s:19:\"price_range_halfmap\";s:1:\"1\";s:29:\"search_other_features_halfmap\";s:1:\"1\";s:22:\"halfmap-search-visible\";s:1:\"0\";s:18:\"splash_v1_dropdown\";s:13:\"property_city\";s:18:\"banner_search_tabs\";s:1:\"0\";s:10:\"tabs_limit\";s:1:\"2\";s:20:\"banner_radius_search\";s:1:\"0\";s:13:\"keyword_field\";s:12:\"prop_address\";s:20:\"keyword_autocomplete\";s:1:\"0\";s:17:\"beds_baths_search\";s:5:\"equal\";s:25:\"state_city_area_dropdowns\";s:1:\"1\";s:16:\"price_field_type\";s:6:\"select\";s:7:\"ms_type\";s:1:\"1\";s:9:\"ms_status\";s:1:\"0\";s:8:\"ms_label\";s:1:\"0\";s:7:\"ms_area\";s:1:\"1\";s:21:\"houzez_default_radius\";s:2:\"50\";s:11:\"radius_unit\";s:2:\"km\";s:14:\"features_limit\";s:2:\"-1\";s:26:\"enable_disable_save_search\";s:1:\"1\";s:20:\"save_search_duration\";s:5:\"daily\";s:9:\"min_price\";s:124:\"1000,5000,10000,50000,100000,200000,300000,400000,500000,600000,700000,800000,900000,1000000,1500000,2000000,2500000,5000000\";s:9:\"max_price\";s:128:\"5000,10000,50000,100000,200000,300000,400000,500000,600000,700000,800000,900000,1000000,1500000,2000000,2500000,5000000,10000000\";s:14:\"min_price_rent\";s:88:\"500,1000,2000,3000,4000,5000,7500,10000,15000,20000,25000,30000,40000,50000,75000,100000\";s:14:\"max_price_rent\";s:91:\"1000,2000,3000,4000,5000,7500,10000,15000,20000,25000,30000,40000,50000,75000,100000,150000\";s:32:\"advanced_search_widget_min_price\";s:3:\"200\";s:32:\"advanced_search_widget_max_price\";s:7:\"2500000\";s:40:\"advanced_search_min_price_range_for_rent\";s:2:\"50\";s:40:\"advanced_search_max_price_range_for_rent\";s:5:\"25000\";s:13:\"adv_beds_list\";s:20:\"1,2,3,4,5,6,7,8,9,10\";s:14:\"adv_rooms_list\";s:20:\"1,2,3,4,5,6,7,8,9,10\";s:14:\"adv_baths_list\";s:20:\"1,2,3,4,5,6,7,8,9,10\";s:18:\"search_result_page\";s:11:\"normal_page\";s:20:\"search_result_layout\";s:12:\"left-sidebar\";s:26:\"search_result_posts_layout\";s:0:\"\";s:20:\"search_default_order\";s:0:\"\";s:16:\"search_num_posts\";s:1:\"9\";s:17:\"houzez_map_system\";s:3:\"osm\";s:17:\"googlemap_api_key\";s:0:\"\";s:14:\"mapbox_api_key\";s:0:\"\";s:15:\"houzez_map_type\";s:7:\"roadmap\";s:15:\"markerPricePins\";s:2:\"no\";s:17:\"short_prices_pins\";s:1:\"0\";s:17:\"marker_spiderfier\";s:1:\"0\";s:15:\"map_default_lat\";s:9:\"25.686540\";s:16:\"map_default_long\";s:10:\"-80.431345\";s:17:\"geo_country_limit\";s:1:\"0\";s:19:\"geocomplete_country\";s:0:\"\";s:18:\"map_cluster_enable\";s:1:\"1\";s:11:\"map_cluster\";a:5:{s:3:\"url\";s:78:\"http://lantern-realty.com/wp-content/themes/houzez/images/map/cluster-icon.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:22:\"googlemap_zoom_cluster\";s:2:\"10\";s:19:\"detail_map_pin_type\";s:6:\"marker\";s:14:\"single_mapzoom\";s:2:\"14\";s:15:\"googlemap_stype\";s:0:\"\";s:20:\"halfmap_posts_layout\";s:12:\"list-view-v1\";s:20:\"template_sidebar_pos\";s:0:\"\";s:15:\"disable_compare\";s:1:\"0\";s:16:\"disable_favorite\";s:1:\"0\";s:15:\"disable_preview\";s:1:\"1\";s:15:\"disable_address\";s:1:\"1\";s:13:\"disable_agent\";s:1:\"0\";s:12:\"disable_date\";s:1:\"0\";s:18:\"disable_detail_btn\";s:1:\"1\";s:12:\"disable_type\";s:1:\"1\";s:14:\"disable_status\";s:1:\"1\";s:13:\"disable_label\";s:1:\"1\";s:21:\"listing_data_composer\";a:2:{s:7:\"enabled\";a:4:{s:7:\"placebo\";s:7:\"placebo\";s:3:\"bed\";s:8:\"Bedrooms\";s:4:\"bath\";s:9:\"Bathrooms\";s:9:\"area-size\";s:9:\"Area Size\";}s:8:\"disabled\";a:5:{s:7:\"placebo\";s:7:\"placebo\";s:9:\"land-area\";s:9:\"Land Area\";s:6:\"garage\";s:6:\"Garage\";s:11:\"property-id\";s:11:\"Property ID\";s:4:\"room\";s:5:\"Rooms\";}}s:24:\"listing_address_composer\";a:2:{s:7:\"enabled\";a:2:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"address\";s:7:\"Address\";}s:8:\"disabled\";a:6:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:7:\"Country\";s:5:\"state\";s:5:\"State\";s:4:\"city\";s:4:\"City\";s:4:\"area\";s:4:\"Area\";s:14:\"streat-address\";s:14:\"Streat Address\";}}s:10:\"icons_type\";s:14:\"houzez-default\";s:3:\"bed\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:6:\"fa_bed\";s:0:\"\";s:4:\"room\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"fa_room\";s:0:\"\";s:4:\"bath\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"fa_bath\";s:0:\"\";s:6:\"garage\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:9:\"fa_garage\";s:0:\"\";s:9:\"area-size\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"fa_area-size\";s:0:\"\";s:9:\"land-area\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"fa_land-area\";s:0:\"\";s:10:\"year-built\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"fa_year-built\";s:0:\"\";s:11:\"property-id\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"fa_property-id\";s:0:\"\";s:14:\"v1_4_meta_type\";s:5:\"icons\";s:12:\"v2_meta_type\";s:5:\"icons\";s:17:\"preview_meta_type\";s:10:\"icons_text\";s:21:\"preview_data_composer\";a:2:{s:7:\"enabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:3:\"bed\";s:8:\"Bedrooms\";s:4:\"bath\";s:9:\"Bathrooms\";s:6:\"garage\";s:6:\"Garage\";s:9:\"area-size\";s:9:\"Area Size\";s:9:\"land-area\";s:9:\"Land Area\";s:10:\"year-built\";s:10:\"Year Built\";}s:8:\"disabled\";a:3:{s:7:\"placebo\";s:7:\"placebo\";s:11:\"property-id\";s:11:\"Property ID\";s:4:\"room\";s:5:\"Rooms\";}}s:18:\"houzez_placeholder\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"taxonomy_layout\";s:12:\"left-sidebar\";s:25:\"taxonomy_content_position\";s:5:\"above\";s:21:\"taxonomy_posts_layout\";s:0:\"\";s:22:\"taxonomy_default_order\";s:6:\"d_date\";s:18:\"taxonomy_num_posts\";s:1:\"9\";s:9:\"form_type\";s:11:\"custom_form\";s:15:\"terms_condition\";s:0:\"\";s:30:\"contact_form_agent_above_image\";s:0:\"\";s:25:\"contact_form_agent_bottom\";s:0:\"\";s:23:\"schedule_tour_shortcode\";s:0:\"\";s:25:\"contact_form_agent_detail\";s:0:\"\";s:26:\"contact_form_agency_detail\";s:0:\"\";s:22:\"agent_form_above_image\";s:1:\"0\";s:18:\"agent_form_sidebar\";s:1:\"0\";s:18:\"agent_form_gallery\";s:1:\"0\";s:21:\"agent_form_agent_page\";s:1:\"1\";s:23:\"agency_form_agency_page\";s:1:\"1\";s:18:\"agent_view_listing\";s:1:\"0\";s:15:\"agent_phone_num\";s:1:\"1\";s:16:\"agent_mobile_num\";s:1:\"1\";s:18:\"agent_whatsapp_num\";s:1:\"1\";s:21:\"agent_direct_messages\";s:1:\"0\";s:15:\"agent_skype_con\";s:1:\"1\";s:16:\"agent_con_social\";s:1:\"1\";s:29:\"hide_prop_contact_form_fields\";a:4:{s:4:\"name\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:7:\"message\";s:0:\"\";s:8:\"usertype\";s:0:\"\";}s:37:\"hide_agency_agent_contact_form_fields\";a:4:{s:4:\"name\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:7:\"message\";s:0:\"\";s:8:\"usertype\";s:0:\"\";}s:23:\"gdpr_and_terms_checkbox\";s:1:\"1\";s:19:\"agent_form_redirect\";s:0:\"\";s:18:\"houzez_webhook_url\";s:0:\"\";s:30:\"webhook_property_agent_contact\";s:1:\"0\";s:21:\"webhook_agent_contact\";s:1:\"0\";s:22:\"webhook_agency_contact\";s:1:\"0\";s:16:\"add_new_property\";s:1:\"0\";s:16:\"enable_reCaptcha\";s:1:\"1\";s:13:\"recaptha_type\";s:2:\"v2\";s:17:\"recaptha_site_key\";s:40:\"6LfXgNYZAAAAAOBEx0Em2yCeUBlEsFZP8aiFC1g2\";s:19:\"recaptha_secret_key\";s:40:\"6LfXgNYZAAAAAOsnMaO1YC_KYp-dqH8aR9bu1BJ1\";s:22:\"enable_paid_submission\";s:2:\"no\";s:24:\"houzez_disable_recurring\";s:1:\"0\";s:21:\"houzez_auto_recurring\";s:1:\"0\";s:28:\"per_listing_expire_unlimited\";s:1:\"0\";s:18:\"per_listing_expire\";s:2:\"30\";s:24:\"currency_paid_submission\";s:3:\"USD\";s:24:\"price_listing_submission\";s:0:\"\";s:33:\"price_featured_listing_submission\";s:0:\"\";s:10:\"paypal_api\";s:7:\"sandbox\";s:23:\"payment_terms_condition\";s:0:\"\";s:14:\"thankyou_title\";s:35:\"Thank you for your business with us\";s:12:\"thankyou_des\";s:223:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer in augue rhoncus, congue neque eu, consequat quam. Maecenas in cursus dui, sed tempor est. Duis varius nibh in lorem venenatis, in tincidunt nunc scelerisque.\";s:23:\"houzez_payment_gateways\";s:16:\"houzez_custom_gw\";s:13:\"enable_paypal\";s:1:\"0\";s:16:\"paypal_client_id\";s:0:\"\";s:24:\"paypal_client_secret_key\";s:0:\"\";s:22:\"paypal_receiving_email\";s:0:\"\";s:13:\"enable_stripe\";s:1:\"0\";s:17:\"stripe_secret_key\";s:0:\"\";s:22:\"stripe_publishable_key\";s:0:\"\";s:19:\"enable_wireTransfer\";s:1:\"0\";s:26:\"direct_payment_instruction\";s:0:\"\";s:19:\"thankyou_wire_title\";s:39:\"Thank you. Your order has been received\";s:17:\"thankyou_wire_des\";s:96:\"Make your payment directly into our bank account. Please use your Order ID as payment reference.\";s:13:\"num_of_agents\";s:1:\"9\";s:10:\"agent_tabs\";s:1:\"0\";s:21:\"agent_listings_layout\";s:12:\"list-view-v1\";s:21:\"num_of_agent_listings\";s:2:\"10\";s:20:\"agent_listings_order\";s:7:\"default\";s:12:\"agent_mobile\";s:1:\"1\";s:11:\"agent_phone\";s:1:\"1\";s:9:\"agent_fax\";s:1:\"1\";s:11:\"agent_email\";s:1:\"1\";s:13:\"agent_website\";s:1:\"1\";s:12:\"agent_social\";s:1:\"1\";s:11:\"agent_stats\";s:1:\"0\";s:12:\"agent_review\";s:1:\"0\";s:14:\"agent_listings\";s:1:\"0\";s:9:\"agent_bio\";s:1:\"1\";s:13:\"agent_sidebar\";s:1:\"1\";s:15:\"num_of_agencies\";s:1:\"9\";s:11:\"agency_tabs\";s:1:\"0\";s:22:\"agency_listings_layout\";s:12:\"list-view-v1\";s:22:\"num_of_agency_listings\";s:2:\"10\";s:21:\"agency_listings_order\";s:7:\"default\";s:14:\"agency_address\";s:1:\"1\";s:13:\"agency_mobile\";s:1:\"1\";s:12:\"agency_phone\";s:1:\"1\";s:10:\"agency_fax\";s:1:\"1\";s:12:\"agency_email\";s:1:\"1\";s:14:\"agency_website\";s:1:\"1\";s:13:\"agency_social\";s:1:\"1\";s:12:\"agency_stats\";s:1:\"0\";s:13:\"agency_review\";s:1:\"0\";s:13:\"agency_agents\";s:1:\"1\";s:15:\"agency_listings\";s:1:\"0\";s:10:\"agency_bio\";s:1:\"1\";s:14:\"agency_sidebar\";s:1:\"1\";s:12:\"invoice_logo\";a:5:{s:3:\"url\";s:84:\"http://lantern-realty.com/wp-content/themes/houzez/images/logo/houzez-logo-print.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"invoice_company_name\";s:12:\"Company Name\";s:15:\"invoice_address\";s:52:\"1161 Washingtown Avenue 299<br> Miami Beach 33141 FL\";s:13:\"invoice_phone\";s:13:\"(987)654 3210\";s:23:\"invoice_additional_info\";s:222:\"The lorem ipsum text is typically a scrambled section of De finibus bonorum et malorum, a 1st-century BC Latin text by Cicero, with words altered, added, and removed to make it nonsensical, improper Latin.[citation needed]\";s:16:\"invoice_thankyou\";s:36:\"Thank you for your business with us.\";s:17:\"masorny_num_posts\";s:2:\"12\";s:19:\"blog_featured_image\";s:1:\"1\";s:9:\"blog_date\";s:1:\"1\";s:11:\"blog_author\";s:1:\"1\";s:9:\"blog_tags\";s:1:\"1\";s:15:\"blog_author_box\";s:1:\"1\";s:14:\"blog_next_prev\";s:1:\"1\";s:18:\"blog_related_posts\";s:1:\"1\";s:18:\"enable_html_emails\";s:1:\"1\";s:19:\"enable_email_header\";s:1:\"1\";s:15:\"email_head_logo\";a:5:{s:3:\"url\";s:84:\"http://lantern-realty.com/wp-content/themes/houzez/images/logo/logo-houzez-white.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:19:\"email_head_bg_color\";s:7:\"#00AEEF\";s:19:\"enable_email_footer\";s:1:\"1\";s:19:\"email_foot_bg_color\";s:7:\"#FFFFFF\";s:20:\"email_footer_content\";s:449:\"<p style=\"margin: 0 0 10px;\">Copyright © 2018 Favethemes, All rights reserved.</p>\r\n<p style=\"margin: 0 0 10px;\">Please do not reply to this email. You are receiving this email because you are subscribed to <a style=\"color: #00aeef; text-decoration: none;\" href=\"http://houzez.co\">Houzez.co</a></p>\r\n<p style=\"margin: 0 0 10px;\">Our mailing address is:</p>\r\n<p style=\"margin: 0 0 10px;\">Favethemes\r\n1680 Michigan Ave\r\nMiami Beach, FL 33139-2538</p>\";s:13:\"social_1_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"social_1_link\";s:0:\"\";s:13:\"social_2_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"social_2_link\";s:0:\"\";s:13:\"social_3_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"social_3_link\";s:0:\"\";s:13:\"social_4_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"social_4_link\";s:0:\"\";s:37:\"houzez_subject_property_agent_contact\";s:74:\"New message sent by %sender_name using agent contact form at %website_name\";s:29:\"houzez_property_agent_contact\";s:289:\"You have received new message from: %sender_name\r\nProperty Title : %property_title\r\nProperty URL : %property_link\r\nProperty ID : %property_id\r\nPhone Number : %sender_phone\r\nUser Type : %user_type\r\nAdditional message is\r\n%sender_message\r\nYou can contact %sender_name via email %sender_email\";s:37:\"houzez_subject_property_schedule_tour\";s:77:\"New message sent by %sender_name using schedule contact form at %website_name\";s:29:\"houzez_property_schedule_tour\";s:289:\"You have received new message from: %sender_name\r\nProperty Title : %property_title\r\nProperty URL : %property_link\r\nDate &amp; Time : %schedule_date at %schedule_time\r\nPhone Number : %sender_phone\r\nAdditional message is\r\n%sender_message\r\nYou can contact %sender_name via email %sender_email\";s:32:\"houzez_subject_new_user_register\";s:42:\"Your username and password on %website_url\";s:24:\"houzez_new_user_register\";s:202:\"Hi there,\r\nWelcome to %website_url! You can login now using the below credentials:\r\nUsername:%user_login_register\r\nPassword: %user_pass_register\r\nIf you have any problems, please contact us.\r\nThank you!\";s:38:\"houzez_subject_admin_new_user_register\";s:21:\"New User Registration\";s:30:\"houzez_admin_new_user_register\";s:101:\"New user registration on %website_url.\r\nUsername: %user_login_register,\r\nE-mail: %user_email_register\";s:38:\"houzez_subject_purchase_activated_pack\";s:27:\"Your purchase was activated\";s:30:\"houzez_purchase_activated_pack\";s:288:\"Hi there,\r\nWelcome to %website_url and thank you for purchasing a plan with us. We are excited you have chosen %website_name . %website_name is a great place to advertise and search properties.\r\n\r\nYou plan on %website_url activated! You can now list your properties according to you plan.\";s:33:\"houzez_subject_purchase_activated\";s:27:\"Your purchase was activated\";s:25:\"houzez_purchase_activated\";s:86:\"Hi there,\r\nYour purchase on %website_url is activated! You should go and check it out.\";s:31:\"houzez_subject_listing_approved\";s:21:\"Your listing approved\";s:23:\"houzez_listing_approved\";s:117:\"Hi there,\r\nYour listing on %website_url has been approved.\r\n\r\nListins Title:%listing_title\r\nListing Url: %listing_url\";s:30:\"houzez_subject_listing_expired\";s:20:\"Your listing expired\";s:22:\"houzez_listing_expired\";s:116:\"Hi there,\r\nYour listing on %website_url has been expired.\r\n\r\nListins Title:%listing_title\r\nListing Url: %listing_url\";s:32:\"houzez_subject_new_wire_transfer\";s:31:\"You ordered a new Wire Transfer\";s:24:\"houzez_new_wire_transfer\";s:255:\"We received your Wire Transfer payment request on %website_url !\r\nPlease follow the instructions below in order to start submitting properties as soon as possible.\r\nThe invoice number is: %invoice_no, Amount: %total_price.\r\nInstructions: %payment_details.\";s:38:\"houzez_subject_admin_new_wire_transfer\";s:36:\"Somebody ordered a new Wire Transfer\";s:30:\"houzez_admin_new_wire_transfer\";s:255:\"We received your Wire Transfer payment request on %website_url !\r\nPlease follow the instructions below in order to start submitting properties as soon as possible.\r\nThe invoice number is: %invoice_no, Amount: %total_price.\r\nInstructions: %payment_details.\";s:38:\"houzez_subject_paid_submission_listing\";s:32:\"Your new listing on %website_url\";s:30:\"houzez_paid_submission_listing\";s:150:\"Hi there,\r\nYou have submitted new listing on %website_url!\r\nListing Title: %listing_title\r\nListing ID: %listing_id\r\nThe invoice number is: %invoice_no\";s:44:\"houzez_subject_admin_paid_submission_listing\";s:35:\"New paid submission on %website_url\";s:36:\"houzez_admin_paid_submission_listing\";s:150:\"Hi there,\r\nYou have a new paid submission on %website_url!\r\nListing Title: %listing_title\r\nListing ID: %listing_id\r\nThe invoice number is: %invoice_no\";s:42:\"houzez_subject_featured_submission_listing\";s:36:\"New featured upgrade on %website_url\";s:34:\"houzez_featured_submission_listing\";s:154:\"Hi there,\r\nYou have a new featured submission on %website_url!\r\nListing Title: %listing_title\r\nListing ID: %listing_id\r\nThe invoice number is: %invoice_no\";s:48:\"houzez_subject_admin_featured_submission_listing\";s:39:\"New featured submission on %website_url\";s:40:\"houzez_admin_featured_submission_listing\";s:154:\"Hi there,\r\nYou have a new featured submission on %website_url!\r\nListing Title: %listing_title\r\nListing ID: %listing_id\r\nThe invoice number is: %invoice_no\";s:38:\"houzez_subject_free_submission_listing\";s:32:\"Your new listing on %website_url\";s:30:\"houzez_free_submission_listing\";s:144:\"Hi there,&lt;br&gt;\r\nYou have submitted new listing on %website_url!&lt;br&gt;\r\nListing Title: %listing_title&lt;br&gt;\r\nListing ID: %listing_id\";s:44:\"houzez_subject_admin_free_submission_listing\";s:30:\"New submission on %website_url\";s:36:\"houzez_admin_free_submission_listing\";s:109:\"Hi there,\r\nYou have a new submission on %website_url!\r\nListing Title: %listing_title\r\nListing ID: %listing_id\";s:35:\"houzez_subject_free_listing_expired\";s:36:\"Free Listing expired on %website_url\";s:27:\"houzez_free_listing_expired\";s:116:\"Hi there,\r\nOne of your free listings on %website_url has \"expired\". The listing is %expired_listing_url.\r\nThank you!\";s:37:\"houzez_subject_admin_expired_listings\";s:49:\"Expired Listing sent for approval on %website_url\";s:29:\"houzez_admin_expired_listings\";s:145:\"Hi there,\r\nA user has re-submited a new property on %website_url! You should go and check it out.\r\nThis is the property title: %submission_title.\";s:35:\"houzez_subject_matching_submissions\";s:36:\"Matching Submissions on %website_url\";s:27:\"houzez_matching_submissions\";s:275:\"<div class=\"title\">\r\n<h1 style=\"font-size: 20px; line-height: 30px; margin: 0 0 10px;\">New Suggested Properties</h1>\r\n<p style=\"margin: 0 0 30px; color: #777777;\">We have found %listing_count new properties that match your saved searches.</p>\r\n\r\n</div>\r\n%matching_submissions\";s:32:\"houzez_subject_recurring_payment\";s:33:\"Recurring Payment on %website_url\";s:24:\"houzez_recurring_payment\";s:116:\"Hi there,\r\nWe charged your account on %merchant for a subscription on %website_url ! You should go and check it out.\";s:35:\"houzez_subject_membership_cancelled\";s:36:\"Membership Cancelled on %website_url\";s:27:\"houzez_membership_cancelled\";s:236:\"Hi there,\r\nYour subscription on %website_url was cancelled because it expired or the recurring payment from the merchant was not processed. All your listings are no longer visible for our visitors but remain in your account.\r\nThank you.\";s:22:\"banner_slider_autoplay\";s:1:\"1\";s:18:\"banner_slider_loop\";s:1:\"1\";s:27:\"banner_slider_autoplayspeed\";s:4:\"4000\";s:9:\"404-title\";s:21:\"Oops! Page not found.\";s:7:\"404-des\";s:152:\"We\'re sorry, but the page you are looking for doesn\'t exist.<br>                You can search your topic using the box below or return to the homepage.\";s:11:\"footer_cols\";s:10:\"three_cols\";s:9:\"ft-bottom\";s:2:\"v1\";s:11:\"footer_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"copy_rights\";s:52:\"Lantern Realty and Development - All rights reserved\";s:13:\"social-footer\";s:1:\"1\";s:11:\"fs-facebook\";s:39:\"https://www.facebook.com/lanternrealty/\";s:10:\"fs-twitter\";s:0:\"\";s:13:\"fs-googleplus\";s:0:\"\";s:11:\"fs-linkedin\";s:0:\"\";s:12:\"fs-instagram\";s:0:\"\";s:12:\"fs-pinterest\";s:0:\"\";s:7:\"fs-yelp\";s:0:\"\";s:10:\"fs-behance\";s:0:\"\";s:10:\"fs-youtube\";s:0:\"\";s:13:\"js_all_in_one\";s:1:\"1\";s:14:\"css_all_in_one\";s:1:\"1\";s:9:\"minify_js\";s:1:\"1\";s:10:\"minify_css\";s:1:\"1\";s:22:\"remove_scripts_version\";s:1:\"0\";s:13:\"preload_pages\";s:1:\"0\";s:15:\"lazyload_images\";s:1:\"0\";s:13:\"disable_emoji\";s:1:\"1\";s:8:\"jpeg_100\";s:1:\"0\";s:21:\"add-prop-gdpr-enabled\";s:1:\"0\";s:19:\"add-prop-gdpr-label\";s:93:\"I consent to having this website to store my submitted infomation, read more infomation below\";s:31:\"add-prop-gdpr-agreement-content\";s:2029:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed risus lacus, sollicitudin at finibus at, pretium id dui. Nunc erat felis, pharetra id feugiat et, faucibus a justo. Donec eu condimentum nisi. Integer facilisis luctus massa, sit amet commodo nulla vehicula ac. Fusce vehicula nibh magna, in efficitur elit euismod eget. Quisque egestas consectetur diam, eu facilisis justo vestibulum a. Aenean facilisis volutpat orci. Mauris in pellentesque nulla. Maecenas justo felis, vestibulum non cursus sit amet, blandit et velit.\r\n\r\nVivamus a commodo urna. In hac habitasse platea dictumst. Ut tincidunt est sed accumsan aliquet. Sed fringilla volutpat bibendum. Nunc fermentum massa vitae iaculis pulvinar. Integer hendrerit auctor risus et luctus. Donec convallis luctus ultrices. Maecenas scelerisque sed purus ac hendrerit. Nulla vel facilisis magna.\r\n\r\nSuspendisse hendrerit enim in tellus pharetra cursus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer sed laoreet nisl. Nullam feugiat ut enim id tempor. Nunc euismod nec dui at suscipit. Duis sit amet cursus nibh. Mauris tincidunt ante quis augue accumsan, quis porttitor ipsum bibendum. Vivamus congue arcu sit amet arcu imperdiet, a laoreet ligula auctor. Aliquam ultrices porttitor malesuada.\r\n\r\nMauris erat quam, condimentum quis lacinia sed, suscipit in nisi. Etiam eleifend tristique pellentesque. Duis a odio neque. Quisque mollis velit enim, in mollis arcu blandit vel. Praesent accumsan nisi odio, vitae semper neque faucibus in. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Aliquam pellentesque neque sem. Donec vehicula, lacus vitae gravida tempus, lorem felis faucibus est, sed dapibus velit tortor nec velit.\r\n\r\nAliquam convallis id metus eu venenatis. Morbi nec augue turpis. Suspendisse tincidunt massa vitae malesuada mollis. Donec suscipit feugiat porttitor. Sed pharetra auctor enim. Cras faucibus in metus eu ultrices. Mauris vitae vehicula sapien.\";s:10:\"custom_css\";s:353:\"#ihf-main-container .carousel-control {\r\n   height: auto;\r\n   background: none;\r\n   border: none;\r\n}\r\n#ihf-main-container .carousel-caption {\r\n    background: none;\r\n}\r\n#ihf-main-container .modal {\r\n    width: auto;\r\n    margin-left: 0;\r\n    background-color: transparent;\r\n    border: 0;\r\n}\r\n.ihf-results-links > a:nth-child(1) {\r\n    display: none;\r\n}\";s:16:\"custom_js_header\";s:1198:\"<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-125820020-1\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'UA-125820020-1\');\r\n</script>\r\n\r\n<!-- Facebook Pixel Code -->\r\n<script>\r\n  !function(f,b,e,v,n,t,s)\r\n  {if(f.fbq)return;n=f.fbq=function(){n.callMethod?\r\n  n.callMethod.apply(n,arguments):n.queue.push(arguments)};\r\n  if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version=\'2.0\';\r\n  n.queue=[];t=b.createElement(e);t.async=!0;\r\n  t.src=v;s=b.getElementsByTagName(e)[0];\r\n  s.parentNode.insertBefore(t,s)}(window, document,\'script\',\r\n  \'https://connect.facebook.net/en_US/fbevents.js\');\r\n  fbq(\'init\', \'1067910506723247\');\r\n  fbq(\'track\', \'PageView\');\r\n</script>\r\n<noscript><img height=\"1\" width=\"1\" style=\"display:none\"\r\n  src=\"https://www.facebook.com/tr?id=1067910506723247&ev=PageView&noscript=1\"\r\n/></noscript>\r\n<!-- End Facebook Pixel Code -->\r\n\r\n<script>\r\n(function () {\r\n    \"use strict\";\r\n    jQuery.getScript(\"/wp-content/plugins/optima-express/js/bootstrap-libs/bootstrap.min.js\");\r\n}());\r\n</script>\";s:16:\"custom_js_footer\";s:0:\"\";s:20:\"houzez_base_currency\";s:3:\"USD\";s:18:\"agent_detail_tab_1\";s:0:\"\";s:18:\"agent_detail_tab_2\";s:0:\"\";s:19:\"agency_detail_tab_1\";s:0:\"\";s:19:\"agency_detail_tab_2\";s:0:\"\";}','yes'),(349,'wpcf7','a:2:{s:7:\"version\";s:7:\"5.5.6.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1588344055;s:7:\"version\";s:5:\"5.1.7\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(1268,'widget_srp_mortgagecalc','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1269,'widget_srp_affordabilitycalc','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(350,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-b.tools\";i:3;s:22:\"themepunch-ext-b.tools\";i:4;s:16:\"themepunch.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-a.tools\";}','yes'),(358,'revslider-library-check','1656458817','yes'),(359,'rs-library','a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),(351,'revslider_server_refresh','1657545551','yes'),(352,'revslider-update-check-short','1657558037','yes'),(353,'revslider-templates-check','1657367696','yes'),(360,'revslider_checktables','1','yes'),(361,'rs_tables_created','1','yes'),(362,'revslider_table_version','1.0.9','yes'),(363,'revslider-global-settings','{\"version\":\"6.2.0\",\"permission\":\"admin\",\"includeids\":\"\",\"script\":{\"footer\":false,\"defer\":false,\"full\":false},\"fonturl\":\"\",\"size\":{\"desktop\":1240,\"notebook\":1024,\"tablet\":778,\"mobile\":480}}','yes'),(1259,'widget_lidd_mc_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(364,'redux_version_upgraded_from','3.6.18','yes'),(367,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(368,'widget_houzez_login_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(369,'vc_version','5.5.2','yes'),(371,'revslider_update_version','6.4.10','yes'),(372,'widget_rev-slider-widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(375,'houzez_options-transients','a:4:{s:14:\"changed_values\";a:10:{s:8:\"last_tab\";s:0:\"\";s:16:\"main-menu-sticky\";s:1:\"0\";s:14:\"search_builder\";a:2:{s:7:\"enabled\";a:15:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";s:5:\"price\";s:23:\"Price (Only Search v.3)\";}s:8:\"disabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";}}s:19:\"dock_search_builder\";a:2:{s:7:\"enabled\";a:14:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";}s:8:\"disabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";}}s:22:\"search_builder_halfmap\";a:2:{s:7:\"enabled\";a:15:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";s:5:\"price\";s:23:\"Price (Only Search v.3)\";}s:8:\"disabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";}}s:18:\"enable_title_limit\";i:0;s:30:\"webhook_property_agent_contact\";i:0;s:21:\"webhook_agent_contact\";i:0;s:22:\"webhook_agency_contact\";i:0;s:16:\"add_new_property\";i:0;}s:9:\"last_save\";i:1651339952;s:13:\"last_compiler\";i:1651339756;s:11:\"last_import\";i:1651339756;}','yes'),(658,'ihf-bio-agent-photo-option','https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg','yes'),(659,'ihf-bio-office-logo','','yes'),(660,'ihf-bio-agent-text-option','','yes'),(661,'ihf-agent-display-title-option','Lantern Realty and Development','yes'),(662,'ihf-agent-license-info-option','','yes'),(663,'ihf-bio-agent-designations-option','','yes'),(664,'ihf-bio-contact-phone','980-858-2074','yes'),(376,'houzez_activation','activated','yes'),(377,'wpb_js_composer_license_activation_notified','yes','yes'),(380,'mc4wp_flash_messages','a:0:{}','no'),(665,'ihf-bio-contact-email','contact@lantern-realty.com','yes'),(360276,'recovery_mode_email_last_sent','1621688484','yes'),(360591,'mec_installed','1','yes'),(360592,'mec_version','5.12.6','yes'),(401,'ihf-color-scheme','blue','yes'),(510868,'171231751_elements','a:0:{}','yes'),(510869,'171231751_custom_js','','yes'),(510870,'171231751_updated_at','1623201995','yes'),(1677,'jpsq_full_sync_checkout','0:0','no'),(1674,'jpsq_sync_checkout','0:0','no'),(1689,'widget_blog_subscription','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1690,'widget_authors','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1691,'widget_eu_cookie_law_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1692,'widget_facebook-likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1693,'widget_flickr','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1694,'widget_wpcom-goodreads','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1695,'widget_google_translate_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1697,'widget_grofile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1698,'widget_internet_defense_league_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1699,'widget_widget_mailchimp_subscriber_popup','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1700,'widget_milestone_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1701,'widget_jetpack_my_community','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1702,'widget_rss_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1703,'widget_jetpack_widget_social_icons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1704,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1705,'widget_upcoming_events_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1706,'widget_jetpack_display_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1724,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(1725,'post_by_email_address1','NULL','yes'),(1719,'jetpack_plugin_api_action_links','a:15:{s:25:\"add-to-any/add-to-any.php\";a:1:{s:8:\"Settings\";s:69:\"https://lantern-realty.com/wp-admin/options-general.php?page=addtoany\";}s:36:\"contact-form-7/wp-contact-form-7.php\";a:1:{s:8:\"Settings\";s:56:\"https://lantern-realty.com/wp-admin/admin.php?page=wpcf7\";}s:23:\"elementor/elementor.php\";a:2:{s:8:\"Settings\";s:60:\"https://lantern-realty.com/wp-admin/admin.php?page=elementor\";s:6:\"Go Pro\";s:102:\"https://elementor.com/pro/?utm_source=wp-plugins&utm_campaign=gopro&utm_medium=wp-dash&utm_term=houzez\";}s:43:\"favethemes-insights/favethemes-insights.php\";a:1:{s:15:\"Update Required\";s:94:\"https://lantern-realty.com/wp-admin/themes.php?page=tgmpa-install-plugins&plugin_status=update\";}s:19:\"jetpack/jetpack.php\";a:1:{s:7:\"Jetpack\";s:58:\"https://lantern-realty.com/wp-admin/admin.php?page=jetpack\";}s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";a:1:{s:8:\"Settings\";s:67:\"https://lantern-realty.com/wp-admin/admin.php?page=mailchimp-for-wp\";}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";a:3:{s:15:\"Premium Support\";s:62:\"https://really-simple-ssl.com/downloads/really-simple-ssl-pro/\";s:4:\"Docs\";s:45:\"https://really-simple-ssl.com/knowledge-base/\";s:8:\"Settings\";s:86:\"https://lantern-realty.com/wp-admin/options-general.php?page=rlrsssl_really_simple_ssl\";}s:35:\"redux-framework/redux-framework.php\";a:1:{s:6:\"Go Pro\";s:99:\"https://redux.io?utm_source=plugin-installation&utm_campaign=plugin-installation&utm_medium=upgrade\";}s:23:\"revslider/revslider.php\";a:1:{s:15:\"Update Required\";s:94:\"https://lantern-realty.com/wp-admin/themes.php?page=tgmpa-install-plugins&plugin_status=update\";}s:35:\"autodescription/autodescription.php\";a:3:{s:8:\"Settings\";s:75:\"https://lantern-realty.com/wp-admin/admin.php?page=theseoframework-settings\";s:10:\"Extensions\";s:39:\"https://theseoframework.com/extensions/\";s:7:\"Pricing\";s:36:\"https://theseoframework.com/pricing/\";}s:19:\"weforms/weforms.php\";a:2:{s:4:\"Docs\";s:104:\"https://weformspro.com/?utm_source=weforms-action-link&utm_medium=textlink&utm_campaign=plugin-docs-link\";s:8:\"Settings\";s:58:\"https://lantern-realty.com/wp-admin/admin.php?page=weforms\";}s:27:\"js_composer/js_composer.php\";a:1:{s:8:\"Settings\";s:61:\"https://lantern-realty.com/wp-admin/admin.php?page=vc-general\";}s:17:\"wp-docs/index.php\";a:2:{s:8:\"Settings\";s:67:\"https://lantern-realty.com/wp-admin/options-general.php?page=wpdocs\";s:10:\"Go Premium\";s:44:\"https://lantern-realty.com/wp-admin/<a href=\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";a:2:{s:8:\"Settings\";s:63:\"https://lantern-realty.com/wp-admin/admin.php?page=wp-mail-smtp\";s:15:\"Premium Support\";s:80:\"https://lantern-realty.com/wp-admin/admin.php?page=wp-mail-smtp-about&tab=versus\";}s:27:\"wps-cleaner/wps-cleaner.php\";a:1:{s:5:\"Tools\";s:62:\"https://lantern-realty.com/wp-admin/tools.php?page=wps-cleaner\";}}','yes'),(1740,'gravatar_disable_hovercards','0','yes'),(1742,'verification_services_codes','0','yes'),(357103,'_transient_d6d5d0d31_elements','a:0:{}','yes'),(352241,'widget_wpcom_instagram_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(356643,'_transient_eael_editor_updated_at','1605059632','yes'),(356620,'eael_save_settings','a:49:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";i:1;s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";i:1;s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";i:1;s:14:\"contact-form-7\";i:1;s:7:\"weforms\";i:1;s:10:\"ninja-form\";i:1;s:9:\"formstack\";i:1;s:12:\"gravity-form\";i:1;s:12:\"caldera-form\";i:1;s:7:\"wpforms\";i:1;s:10:\"fluentform\";i:1;s:8:\"typeform\";i:1;s:24:\"betterdocs-category-grid\";i:1;s:23:\"betterdocs-category-box\";i:1;s:22:\"betterdocs-search-form\";i:1;s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";i:1;s:10:\"embedpress\";i:1;s:12:\"woo-checkout\";i:1;s:14:\"login-register\";i:1;s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:9:\"promotion\";i:1;s:9:\"custom-js\";i:1;s:16:\"reading-progress\";i:1;s:16:\"table-of-content\";i:1;s:15:\"post-duplicator\";i:1;}','yes'),(356621,'wpdeveloper_plugins_data','a:1:{s:25:\"essential_adons_elementor\";a:3:{s:16:\"notice_will_show\";a:2:{s:6:\"opt_in\";i:1657681910;s:6:\"review\";i:1658287996;}s:4:\"time\";i:1653527986;s:7:\"version\";s:5:\"5.1.3\";}}','yes'),(356622,'eael_version','5.1.3','yes'),(356623,'wpins_essential_adons_elementor_force_tracked','1','yes'),(356626,'_transient_ea1d43322_elements','a:0:{}','yes'),(356627,'_transient_ea1d43322_custom_js','','yes'),(356628,'_transient_ea1d43322_updated_at','1605059632','yes'),(356632,'_transient_cb70d11b8_elements','a:0:{}','yes'),(356633,'_transient_cb70d11b8_custom_js','','yes'),(356634,'_transient_cb70d11b8_updated_at','1605059632','yes'),(356635,'_transient_5b09d4945_elements','a:0:{}','yes'),(356636,'_transient_5b09d4945_custom_js','','yes'),(356637,'_transient_5b09d4945_updated_at','1605059632','yes'),(356639,'_transient_e0658cc84_elements','a:0:{}','yes'),(356640,'_transient_e0658cc84_custom_js','','yes'),(356641,'_transient_e0658cc84_updated_at','1605059632','yes'),(356647,'_transient_1dcb97ea3_elements','a:0:{}','yes'),(356648,'_transient_1dcb97ea3_custom_js','','yes'),(356649,'_transient_1dcb97ea3_updated_at','1605059632','yes'),(356660,'_transient_0e09a8794_elements','a:0:{}','yes'),(356661,'_transient_0e09a8794_custom_js','','yes'),(356662,'_transient_0e09a8794_updated_at','1605059632','yes'),(356414,'whatshelp-code','<!-- GetButton.io widget -->\r\n<script type=\"text/javascript\">\r\n    (function () {\r\n        var options = {\r\n            facebook: \"182173195955653\", // Facebook page ID\r\n            call: \"7042980087\", // Call phone number\r\n            call_to_action: \"Contact Us\", // Call to action\r\n            button_color: \"#666666\", // Color of button\r\n            position: \"right\", // Position may be \'right\' or \'left\'\r\n            order: \"facebook,call\", // Order of buttons\r\n        };\r\n        var proto = document.location.protocol, host = \"getbutton.io\", url = proto + \"//static.\" + host;\r\n        var s = document.createElement(\'script\'); s.type = \'text/javascript\'; s.async = true; s.src = url + \'/widget-send-button/js/init.js\';\r\n        s.onload = function () { WhWidgetSendButton.init(host, proto, options); };\r\n        var x = document.getElementsByTagName(\'script\')[0]; x.parentNode.insertBefore(s, x);\r\n    })();\r\n</script>\r\n<!-- /GetButton.io widget -->','yes'),(1770,'wpcom_publish_posts_with_markdown','1','yes'),(356724,'_transient_2983b893e_elements','a:0:{}','yes'),(356725,'_transient_2983b893e_custom_js','','yes'),(356726,'_transient_2983b893e_updated_at','1605059632','yes'),(356753,'_transient_921d470f8_custom_js','','yes'),(356754,'_transient_921d470f8_updated_at','1602807129','yes'),(356733,'_transient_78a4b0d3e_elements','a:0:{}','yes'),(356734,'_transient_78a4b0d3e_custom_js','','yes'),(356735,'_transient_78a4b0d3e_updated_at','1605059632','yes'),(356809,'_transient_379c0f897_elements','a:0:{}','yes'),(356810,'_transient_379c0f897_custom_js','','yes'),(356811,'_transient_379c0f897_updated_at','1605059632','yes'),(33429,'db_upgraded','','yes'),(22554,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"ckeziah127@gmail.com\";s:7:\"version\";s:5:\"5.9.3\";s:9:\"timestamp\";i:1649193124;}','no'),(356791,'category_children','a:0:{}','yes'),(87112,'pdb_admin_notices','a:2:{s:10:\"1-22c90b1f\";O:24:\"pdb_admin_notice_message\":8:{s:30:\"\0pdb_admin_notice_message\0type\";s:4:\"info\";s:33:\"\0pdb_admin_notice_message\0message\";s:229:\"The Participants Database Manage Database Fields page has been completely redesigned. Use the \"Help\" tab for <a href=\"https://xnau.com/the-manage-database-fields-page/\" target=\"_blank\">instructions on using the new interface!</a>\";s:33:\"\0pdb_admin_notice_message\0context\";s:22:\"Manage Database Fields\";s:36:\"\0pdb_admin_notice_message\0persistent\";b:0;s:32:\"\0pdb_admin_notice_message\0global\";b:0;s:35:\"\0pdb_admin_notice_message\0dismissed\";b:1;s:28:\"\0pdb_admin_notice_message\0id\";s:10:\"1-22c90b1f\";s:40:\"\0pdb_admin_notice_message\0context_joiner\";s:1:\"/\";}s:10:\"0-22c90b1f\";O:24:\"pdb_admin_notice_message\":8:{s:30:\"\0pdb_admin_notice_message\0type\";s:4:\"info\";s:33:\"\0pdb_admin_notice_message\0message\";s:229:\"The Participants Database Manage Database Fields page has been completely redesigned. Use the \"Help\" tab for <a href=\"https://xnau.com/the-manage-database-fields-page/\" target=\"_blank\">instructions on using the new interface!</a>\";s:33:\"\0pdb_admin_notice_message\0context\";s:22:\"Manage Database Fields\";s:36:\"\0pdb_admin_notice_message\0persistent\";b:0;s:32:\"\0pdb_admin_notice_message\0global\";b:0;s:35:\"\0pdb_admin_notice_message\0dismissed\";b:0;s:28:\"\0pdb_admin_notice_message\0id\";s:10:\"0-22c90b1f\";s:40:\"\0pdb_admin_notice_message\0context_joiner\";s:1:\"/\";}}','yes'),(87120,'pdb-option_version','10.2','yes'),(3697,'wpforms_preview_page','353','yes'),(111291,'rsssl_activation_timestamp','1581814790','yes'),(111292,'rsssl_before_review_notice_user','1','yes'),(5928,'_transient_tsf_exclude_0_1','a:2:{s:7:\"archive\";a:0:{}s:6:\"search\";a:0:{}}','yes'),(59938,'recovery_keys','a:0:{}','yes'),(33487,'pand-d83e5fe4823f8f867dc30d3bb0b6c7de','1580844286','no'),(7366,'the_seo_framework_initial_db_version','3060','no'),(7367,'autodescription-updates-cache','a:2:{s:26:\"check_seo_plugin_conflicts\";i:0;s:18:\"persistent_notices\";a:0:{}}','yes'),(2028,'rlrsssl_options','a:16:{s:12:\"site_has_ssl\";b:1;s:4:\"hsts\";b:0;s:22:\"htaccess_warning_shown\";b:0;s:19:\"review_notice_shown\";b:1;s:25:\"ssl_success_message_shown\";b:1;s:26:\"autoreplace_insecure_links\";b:1;s:17:\"plugin_db_version\";s:5:\"5.3.1\";s:20:\"do_not_edit_htaccess\";b:0;s:17:\"htaccess_redirect\";b:1;s:11:\"ssl_enabled\";b:1;s:19:\"javascript_redirect\";b:1;s:11:\"wp_redirect\";b:1;s:31:\"switch_mixed_content_fixer_hook\";b:0;s:19:\"dismiss_all_notices\";b:0;s:13:\"high_contrast\";b:0;s:21:\"dismiss_review_notice\";b:0;}','yes'),(111275,'admin_email_lifespan','1668093237','yes'),(137350,'action_scheduler_hybrid_store_demarkation','629','yes'),(137351,'schema-ActionScheduler_StoreSchema','6.0.1645155134','yes'),(137352,'schema-ActionScheduler_LoggerSchema','3.0.1645155134','yes'),(137360,'wpforms_version_lite','1.6.2.3','yes'),(540452,'09829d973_elements','a:0:{}','yes'),(540453,'09829d973_custom_js','','yes'),(540454,'09829d973_updated_at','1606787969','yes'),(122895,'tlp_team_installed_version','2.5.2','yes'),(122896,'tlp_team_settings','a:5:{s:13:\"primary_color\";s:7:\"#0367bf\";s:11:\"feature_img\";a:2:{s:5:\"width\";i:400;s:6:\"height\";i:400;}s:4:\"slug\";s:4:\"team\";s:16:\"link_detail_page\";s:3:\"yes\";s:10:\"custom_css\";N;}','yes'),(122897,'widget_widget_tlpteam','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(137369,'wpforms_notifications','a:4:{s:6:\"update\";i:1602349622;s:4:\"feed\";a:1:{i:0;a:6:{s:5:\"title\";s:69:\"Introducing WPForms Webhooks - Powerful Flexibility With Integrations\";s:7:\"content\";s:286:\"With the new WPForms Webhooks addon, you can automatically send data from forms to other tools and apps, without a 3rd-party connector. This power-user feature will help save time and money as you automate your forms. Upgrade to an Elite license now to start using this awesome feature.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:2:\"id\";i:30;s:4:\"btns\";a:2:{s:4:\"main\";a:2:{s:3:\"url\";s:161:\"https://wpforms.com/wpforms-lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=Plugin Notification&utm_content=Webhooks Lite Get WPForms Elite\";s:4:\"text\";s:17:\"Get WPForms Elite\";}s:3:\"alt\";a:2:{s:3:\"url\";s:176:\"https://wpforms.com/introducing-the-webhooks-addon-for-wpforms/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=Plugin Notification&utm_content=Webhooks Lite Learn More\";s:4:\"text\";s:10:\"Learn More\";}}s:5:\"start\";s:19:\"2020-07-30 17:18:16\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(320175,'elementor_allow_tracking','no','yes'),(320176,'elementor_tracker_notice','1','yes'),(348584,'user_registration_version','1.8.7.1','yes'),(348585,'user_registration_db_version','1.8.7.1','yes'),(173633,'hcrm_lead_settings','','yes'),(173634,'hcrm_enquiry_settings','','yes'),(173635,'hcrm_deals_settings','','yes'),(357958,'_transient_4959a19ad_elements','a:0:{}','yes'),(357959,'_transient_4959a19ad_custom_js','','yes'),(357960,'_transient_4959a19ad_updated_at','1605059632','yes'),(171164,'license_key_token','1590612490|dfZCotJvZNeONk6yBLJO','yes'),(358136,'_transient_c076ae721_updated_at','1605059632','yes'),(358137,'_transient_ee0cd9495_elements','a:0:{}','yes'),(358138,'_transient_ee0cd9495_custom_js','','yes'),(358139,'_transient_ee0cd9495_updated_at','1605059632','yes'),(358140,'_transient_8e54e7260_elements','a:0:{}','yes'),(358141,'_transient_8e54e7260_custom_js','','yes'),(358142,'_transient_8e54e7260_updated_at','1605059632','yes'),(358145,'_transient_b31fd3144_elements','a:0:{}','yes'),(358146,'_transient_b31fd3144_custom_js','','yes'),(358147,'_transient_b31fd3144_updated_at','1605059632','yes'),(358149,'_transient_94e0ec801_elements','a:0:{}','yes'),(358150,'_transient_94e0ec801_custom_js','','yes'),(358151,'_transient_94e0ec801_updated_at','1605059632','yes'),(358153,'_transient_3bb40134c_elements','a:0:{}','yes'),(358154,'_transient_3bb40134c_custom_js','','yes'),(358155,'_transient_3bb40134c_updated_at','1605059632','yes'),(358212,'_transient_014de122a_elements','a:0:{}','yes'),(358213,'_transient_014de122a_custom_js','','yes'),(358214,'_transient_014de122a_updated_at','1605059632','yes'),(358217,'_transient_0f0b6552d_elements','a:0:{}','yes'),(358218,'_transient_0f0b6552d_custom_js','','yes'),(358219,'_transient_0f0b6552d_updated_at','1605059632','yes'),(358233,'_transient_cf691cccc_elements','a:0:{}','yes'),(358234,'_transient_cf691cccc_custom_js','','yes'),(358235,'_transient_cf691cccc_updated_at','1605059632','yes'),(358245,'_transient_b3e981468_elements','a:0:{}','yes'),(358246,'_transient_b3e981468_custom_js','','yes'),(358247,'_transient_b3e981468_updated_at','1603149173','yes'),(358252,'_transient_c62f7f59b_elements','a:0:{}','yes'),(358253,'_transient_c62f7f59b_custom_js','','yes'),(358254,'_transient_c62f7f59b_updated_at','1605059632','yes'),(358293,'_transient_3e66b3c40_elements','a:0:{}','yes'),(358294,'_transient_3e66b3c40_custom_js','','yes'),(358295,'_transient_3e66b3c40_updated_at','1605059632','yes'),(358308,'_transient_6986b5952_elements','a:0:{}','yes'),(358309,'_transient_6986b5952_custom_js','','yes'),(358310,'_transient_6986b5952_updated_at','1605059632','yes'),(358314,'_transient_24e0372e7_elements','a:0:{}','yes'),(358315,'_transient_24e0372e7_custom_js','','yes'),(358316,'_transient_24e0372e7_updated_at','1605059632','yes'),(358318,'_transient_a803c36f4_elements','a:0:{}','yes'),(358319,'_transient_a803c36f4_custom_js','','yes'),(358320,'_transient_a803c36f4_updated_at','1605059632','yes'),(358322,'_transient_99dfef88f_elements','a:0:{}','yes'),(358323,'_transient_99dfef88f_custom_js','','yes'),(358324,'_transient_99dfef88f_updated_at','1605059632','yes'),(358325,'_transient_929451752_elements','a:0:{}','yes'),(358326,'_transient_929451752_custom_js','','yes'),(358327,'_transient_929451752_updated_at','1605059632','yes'),(358355,'_transient_3b7607749_elements','a:0:{}','yes'),(358356,'_transient_3b7607749_custom_js','','yes'),(358357,'_transient_3b7607749_updated_at','1605059632','yes'),(358364,'_transient_065d6d32d_elements','a:0:{}','yes'),(358365,'_transient_065d6d32d_custom_js','','yes'),(358366,'_transient_065d6d32d_updated_at','1605059632','yes'),(358384,'_transient_80785d988_elements','a:0:{}','yes'),(358385,'_transient_80785d988_custom_js','','yes'),(358386,'_transient_80785d988_updated_at','1605059632','yes'),(358398,'_transient_cbe841825_elements','a:0:{}','yes'),(358399,'_transient_cbe841825_custom_js','','yes'),(358400,'_transient_cbe841825_updated_at','1605059632','yes'),(358447,'_transient_4e74b0140_elements','a:0:{}','yes'),(1294675,'701f8537d_eael_updated_at','1650419774','no'),(552329,'auto_update_core_dev','enabled','yes'),(552330,'auto_update_core_minor','enabled','yes'),(552331,'auto_update_core_major','unset','yes'),(358449,'_transient_4e74b0140_updated_at','1605059632','yes'),(358458,'_transient_c80f1208b_elements','a:0:{}','yes'),(358459,'_transient_c80f1208b_custom_js','','yes'),(358460,'_transient_c80f1208b_updated_at','1605059632','yes'),(405291,'_transient_c3a6427a3_elements','a:0:{}','yes'),(405292,'_transient_c3a6427a3_custom_js','','yes'),(405293,'_transient_c3a6427a3_updated_at','1605059632','yes'),(417335,'8d9dab511_elements','a:0:{}','yes'),(417336,'8d9dab511_custom_js','','yes'),(417337,'8d9dab511_updated_at','1623201995','yes'),(1251239,'6a6288fa6_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(422821,'befd17855_elements','a:0:{}','yes'),(422822,'befd17855_custom_js','','yes'),(422823,'befd17855_updated_at','1623201995','yes'),(417738,'e618c66d7_elements','a:0:{}','yes'),(417739,'e618c66d7_custom_js','','yes'),(417740,'e618c66d7_updated_at','1606787969','yes'),(417744,'b0ff3698b_elements','a:0:{}','yes'),(417745,'b0ff3698b_custom_js','','yes'),(417746,'b0ff3698b_updated_at','1606787969','yes'),(417525,'8e54e7260_elements','a:0:{}','yes'),(417526,'8e54e7260_custom_js','','yes'),(417527,'8e54e7260_updated_at','1623201995','yes'),(1251199,'9583082da_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(417571,'e0f760bcc_elements','a:0:{}','yes'),(417572,'e0f760bcc_custom_js','','yes'),(417573,'e0f760bcc_updated_at','1606787969','yes'),(140651,'wps_cleaner_version','20180601','no'),(358519,'_transient_a4c68fc79_elements','a:0:{}','yes'),(358520,'_transient_a4c68fc79_custom_js','','yes'),(358521,'_transient_a4c68fc79_updated_at','1605059632','yes'),(358530,'_transient_09474a9fe_elements','a:0:{}','yes'),(358531,'_transient_09474a9fe_custom_js','','yes'),(358532,'_transient_09474a9fe_updated_at','1605059632','yes'),(358629,'_transient_befd17855_elements','a:0:{}','yes'),(358979,'_transient_8ba402eb7_elements','a:0:{}','yes'),(358980,'_transient_8ba402eb7_custom_js','','yes'),(358981,'_transient_8ba402eb7_updated_at','1605059632','yes'),(359083,'_transient_ad5e36cd2_elements','a:0:{}','yes'),(359084,'_transient_ad5e36cd2_custom_js','','yes'),(358686,'_transient_e55de3805_elements','a:0:{}','yes'),(358687,'_transient_e55de3805_custom_js','','yes'),(358688,'_transient_e55de3805_updated_at','1605059632','yes'),(359085,'_transient_ad5e36cd2_updated_at','1605059632','yes'),(359197,'_transient_46b54a632_elements','a:0:{}','yes'),(359198,'_transient_46b54a632_custom_js','','yes'),(359199,'_transient_46b54a632_updated_at','1605059632','yes'),(552375,'rsssl_remaining_tasks','','yes'),(552408,'wrm_4050c865d20d5e04a9ac','1614124588','yes'),(140813,'user_registration_general_setting_login_options','admin_approval','yes'),(137361,'action_scheduler_lock_async-request-runner','1657576823','yes'),(361506,'vgsefe_welcome_redirect','no','yes'),(358003,'_transient_f1562a4d0_elements','a:0:{}','yes'),(358004,'_transient_f1562a4d0_custom_js','','yes'),(358005,'_transient_f1562a4d0_updated_at','1605059632','yes'),(358006,'_transient_6900ee48b_elements','a:0:{}','yes'),(358007,'_transient_6900ee48b_custom_js','','yes'),(358008,'_transient_6900ee48b_updated_at','1605059632','yes'),(358047,'_transient_0ba465b66_elements','a:0:{}','yes'),(358048,'_transient_0ba465b66_custom_js','','yes'),(358049,'_transient_0ba465b66_updated_at','1605059632','yes'),(358059,'_transient_84e3fec52_elements','a:0:{}','yes'),(358060,'_transient_84e3fec52_custom_js','','yes'),(358061,'_transient_84e3fec52_updated_at','1605059632','yes'),(358083,'_transient_5b7cd2ba1_elements','a:0:{}','yes'),(358084,'_transient_5b7cd2ba1_custom_js','','yes'),(358085,'_transient_5b7cd2ba1_updated_at','1605059632','yes'),(358092,'_transient_29dc9347a_elements','a:0:{}','yes'),(358093,'_transient_29dc9347a_custom_js','','yes'),(358094,'_transient_29dc9347a_updated_at','1605059632','yes'),(358113,'_transient_7aca7e306_elements','a:0:{}','yes'),(358114,'_transient_7aca7e306_custom_js','','yes'),(358115,'_transient_7aca7e306_updated_at','1605059632','yes'),(358116,'_transient_0fd2f07b6_elements','a:0:{}','yes'),(358117,'_transient_0fd2f07b6_custom_js','','yes'),(358118,'_transient_0fd2f07b6_updated_at','1605059632','yes'),(358119,'_transient_0517557e8_elements','a:0:{}','yes'),(358120,'_transient_0517557e8_custom_js','','yes'),(358121,'_transient_0517557e8_updated_at','1605059632','yes'),(358124,'_transient_78ce372e0_elements','a:0:{}','yes'),(358125,'_transient_78ce372e0_custom_js','','yes'),(358126,'_transient_78ce372e0_updated_at','1603149173','yes'),(358127,'_transient_c5428dcf3_elements','a:0:{}','yes'),(358128,'_transient_c5428dcf3_custom_js','','yes'),(358129,'_transient_c5428dcf3_updated_at','1603149173','yes'),(358130,'_transient_e95d87e68_elements','a:0:{}','yes'),(358131,'_transient_e95d87e68_custom_js','','yes'),(358132,'_transient_e95d87e68_updated_at','1605059632','yes'),(358134,'_transient_c076ae721_elements','a:0:{}','yes'),(358135,'_transient_c076ae721_custom_js','','yes'),(140831,'user_registration_default_form_page_id','648','yes'),(230966,'analyst_cache','s:78:\"a:1:{s:43:\"account_email_confirmation_ao6grd4ed38kyeqz\";s:13:\"5f135a03b22f5\";}\";','yes'),(231015,'analyst_notices','s:402:\"O:29:\"Analyst\\Notices\\NoticeFactory\":1:{s:10:\"\0*\0notices\";a:1:{i:0;O:22:\"Analyst\\Notices\\Notice\":4:{s:5:\"\0*\0id\";s:13:\"5f135a03b22f5\";s:7:\"\0*\0body\";s:118:\"Please confirm your email by clicking on the link we sent to ckeziah127@gmail.com. This makes sure you’re not a bot.\";s:12:\"\0*\0accountId\";s:16:\"ao6grd4ed38kyeqz\";s:13:\"\0*\0pluginName\";s:52:\"Social Media and Share Icons (Ultimate Social Media)\";}}}\";','yes'),(230970,'sfsi_custom_icons','no','yes'),(137390,'_transient_health-check-site-status-result','{\"good\":17,\"recommended\":5,\"critical\":0}','yes'),(140814,'user_registration_general_setting_disabled_user_roles','a:1:{i:0;s:10:\"subscriber\";}','yes'),(140815,'user_registration_login_option_hide_show_password','no','yes'),(140816,'user_registration_general_setting_uninstall_option','no','yes'),(140817,'user_registration_myaccount_page_id','649','yes'),(140818,'user_registration_my_account_layout','horizontal','yes'),(140819,'user_registration_myaccount_edit_profile_endpoint','edit-profile','yes'),(140820,'user_registration_myaccount_change_password_endpoint','edit-password','yes'),(140821,'user_registration_myaccount_lost_password_endpoint','lost-password','yes'),(140822,'user_registration_logout_endpoint','user-logout','yes'),(140823,'user_registration_integration_setting_recaptcha_version','v2','yes'),(140824,'user_registration_integration_setting_recaptcha_site_key','','yes'),(140825,'user_registration_integration_setting_recaptcha_site_secret','','yes'),(140826,'user_registration_integration_setting_recaptcha_site_key_v3','','yes'),(140827,'user_registration_integration_setting_recaptcha_site_secret_v3','','yes'),(140828,'user_registration_email_setting_disable_email','no','no'),(140829,'user_registration_email_from_name','Lantern Realty and Development','no'),(140830,'user_registration_email_from_address','ckeziah127@gmail.com','no'),(320482,'theme_mods_twentytwenty','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:8;s:6:\"footer\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1600619131;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:25:\"ihomefindersocialwidget-3\";i:1;s:31:\"ihomefinderhotsheetlistwidget-3\";i:2;s:27:\"ihomefinderagentbiowidget-3\";i:3;s:28:\"ihomefindervaluationwidget-3\";i:4;s:13:\"media_image-8\";i:5;s:13:\"media_image-9\";i:6;s:14:\"media_image-10\";i:7;s:13:\"media_image-3\";i:8;s:13:\"media_image-4\";}s:9:\"sidebar-1\";a:13:{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\";i:6;s:24:\"ihomefinderloginwidget-2\";i:7;s:28:\"ihomefindervaluationwidget-2\";i:8;s:27:\"ihomefindermoreinfowidget-2\";i:9;s:30:\"ihomefinderpropertiesgallery-2\";i:10;s:13:\"media_image-6\";i:11;s:13:\"media_image-7\";i:12;s:14:\"media_image-11\";}s:9:\"sidebar-2\";a:4:{i:0;s:23:\"a2a_share_save_widget-2\";i:1;s:24:\"ihomefinderloginwidget-3\";i:2;s:30:\"ihomefinderpropertiesgallery-3\";i:3;s:6:\"text-2\";}}}}','yes'),(361507,'vg_sheet_editor_frontend_auto_setup','yes','yes'),(140838,'user_registration_registration_page_id','650','yes'),(140839,'user_registration_users_listing_viewed','2020-10-10 18:24:20','yes'),(140846,'user_registration_login_options_form_template','default','yes'),(140847,'user_registration_login_options_remember_me','yes','yes'),(140848,'user_registration_login_options_lost_password','yes','yes'),(140849,'user_registration_login_options_enable_recaptcha','yes','yes'),(140850,'user_registration_general_setting_registration_url_options','','yes'),(140851,'user_registration_general_setting_registration_label','New to Lantern? Create your agent account.','yes'),(140852,'user_registration_login_options_prevent_core_login','no','yes'),(140853,'user_registration_login_options_login_redirect_url','','yes'),(172312,'rs-templates-new','','no');
INSERT INTO `lrwp_options` VALUES (172314,'rs-templates','a:2:{s:6:\"slider\";a:608:{i:0;a:22:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:22:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:22:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:22:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:22:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:22:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:413:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:23:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:7;a:22:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:22:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:22:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:22:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:23:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:12;a:22:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:23:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:14;a:22:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:22:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:22:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:22:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:22:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:22:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:23:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:21;a:22:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:23:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:23;a:22:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:23:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:25;a:22:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:22:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:22:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:22:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:22:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:22:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:22:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:22:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:22:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:22:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:23:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:633:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:36;a:22:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:22:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:22:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:22:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:495:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:22:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:22:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:22:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:297:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:22:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:290:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:22:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:22:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:22:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:22:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:22:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:22:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:22:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:22:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:657:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:22:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:22:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:535:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:22:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:509:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:22:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:638:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:22:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:22:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:22:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:22:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:22:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:22:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:22:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:22:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:407:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:22:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:22:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:22:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:493:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:25:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:25:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:25:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:25:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:25:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:422:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:25:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:25:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:25:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:25:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:25:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:25:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:25:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:25:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:25:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:25:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:25:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:22:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:22:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:22:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:22:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:25:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:25:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:25:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:25:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:25:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:25:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:25:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:25:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:22:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:22:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:25:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:25:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:25:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:25:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:25:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:22:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:22:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:22:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:25:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:25:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:25:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:25:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:22:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:22:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:26:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:112;a:26:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:113;a:26:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:114;a:26:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:115;a:26:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:116;a:26:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:117;a:26:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:118;a:26:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:119;a:26:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:120;a:26:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:121;a:26:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:122;a:26:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:123;a:26:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:124;a:26:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:125;a:26:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:126;a:26:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:127;a:26:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:128;a:26:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:129;a:26:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:130;a:26:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:131;a:22:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:317:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:22:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:22:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:26:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:135;a:22:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:22:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:442:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:22:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:22:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:23:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:140;a:22:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:23:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:142;a:23:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:143;a:22:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:23:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/filmstrip-add-on-slider/ \";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:180:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:145;a:22:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:22:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:22:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:22:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:23:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:150;a:22:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:26:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:152;a:26:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:153;a:26:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:154;a:26:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:155;a:26:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:156;a:26:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.4\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:157;a:26:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:158;a:26:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:159;a:26:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:160;a:26:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:161;a:26:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:162;a:26:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:163;a:26:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:164;a:26:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:165;a:26:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:166;a:22:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:22:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:22:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:22:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:26:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:171;a:26:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:172;a:26:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:173;a:26:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:174;a:26:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:175;a:26:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:176;a:26:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:177;a:26:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:178;a:26:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:179;a:22:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:22:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:22:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:22:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:201;a:23:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.6\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:410:\"<span class=\"ttm_content\">Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:202;a:25:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:25:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:25:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:25:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:25:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:25:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:25:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:23:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:210;a:26:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:211;a:26:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:212;a:26:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:213;a:26:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:214;a:26:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:215;a:26:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:216;a:26:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:217;a:26:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:218;a:26:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:219;a:26:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:220;a:26:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:221;a:26:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:222;a:26:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:223;a:26:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:224;a:23:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:225;a:23:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:226;a:25:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:227;a:25:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:228;a:25:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:229;a:25:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:230;a:25:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:231;a:25:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:232;a:22:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:233;a:22:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:234;a:22:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:235;a:23:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:236;a:25:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:18:\"Parallax One-Pager\";s:5:\"alias\";s:26:\"parallax-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"parallax-one-pager-package\";s:3:\"img\";s:39:\"packages/parallax-one-pager-package.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:237;a:25:{s:2:\"id\";s:3:\"246\";s:5:\"title\";s:15:\"Parallax Header\";s:5:\"alias\";s:15:\"parallax_header\";s:3:\"zip\";s:25:\"packs/parallax_header.zip\";s:3:\"uid\";s:32:\"32bf4a0f5136853bd6bd366275a7a60b\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:238;a:25:{s:2:\"id\";s:3:\"247\";s:5:\"title\";s:16:\"Parallax Content\";s:5:\"alias\";s:16:\"parallax_content\";s:3:\"zip\";s:26:\"packs/parallax_content.zip\";s:3:\"uid\";s:32:\"a25c5fb8f74757476ab4dc038e56f90d\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:239;a:25:{s:2:\"id\";s:3:\"248\";s:5:\"title\";s:15:\"Parallax Footer\";s:5:\"alias\";s:15:\"parallax_footer\";s:3:\"zip\";s:25:\"packs/parallax_footer.zip\";s:3:\"uid\";s:32:\"665dff9ea6eaf162a2a1f160f51a9ddb\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:240;a:25:{s:2:\"id\";s:3:\"249\";s:5:\"title\";s:18:\"Le Chef Restaurant\";s:5:\"alias\";s:18:\"le-chef-restaurant\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"le-chef-restaurant-package\";s:3:\"img\";s:39:\"packages/le-chef-restaurant-package.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:241;a:25:{s:2:\"id\";s:3:\"250\";s:5:\"title\";s:12:\"Le Chef Menu\";s:5:\"alias\";s:12:\"le-chef-menu\";s:3:\"zip\";s:22:\"packs/le-chef-menu.zip\";s:3:\"uid\";s:32:\"2f2a6a333431fefe4a7b3b6a982b2ff5\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:242;a:25:{s:2:\"id\";s:3:\"251\";s:5:\"title\";s:14:\"Le Chef Header\";s:5:\"alias\";s:14:\"le-chef-header\";s:3:\"zip\";s:24:\"packs/le-chef-header.zip\";s:3:\"uid\";s:32:\"06450ca3be5a4a8959f3752ab974e574\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:243;a:25:{s:2:\"id\";s:3:\"252\";s:5:\"title\";s:18:\"Le Chef Philosophy\";s:5:\"alias\";s:18:\"le-chef-philosophy\";s:3:\"zip\";s:28:\"packs/le-chef-philosophy.zip\";s:3:\"uid\";s:32:\"a532fd029addeb18106e751409b8e20a\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:244;a:25:{s:2:\"id\";s:3:\"253\";s:5:\"title\";s:12:\"Le Chef Food\";s:5:\"alias\";s:12:\"le-chef-food\";s:3:\"zip\";s:22:\"packs/le-chef-food.zip\";s:3:\"uid\";s:32:\"cd4b6a2cb5de2dd20a0e8ba0c35451df\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:245;a:25:{s:2:\"id\";s:3:\"254\";s:5:\"title\";s:16:\"Le Chef La Carte\";s:5:\"alias\";s:16:\"le-chef-la-carte\";s:3:\"zip\";s:26:\"packs/le-chef-la-carte.zip\";s:3:\"uid\";s:32:\"6f312749679c3ba52c41189a6b8bf729\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:246;a:25:{s:2:\"id\";s:3:\"255\";s:5:\"title\";s:14:\"Le Chef Footer\";s:5:\"alias\";s:14:\"le-chef-footer\";s:3:\"zip\";s:24:\"packs/le-chef-footer.zip\";s:3:\"uid\";s:32:\"12fc241e8e5b9e5df9758c43448e2907\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:247;a:24:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:20:\"News Magazine Slider\";s:5:\"alias\";s:20:\"news-magazine-slider\";s:3:\"zip\";s:24:\"news-magazine-slider.zip\";s:3:\"uid\";s:32:\"31f2c1506babb1fef459401f051d2d52\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;s:10:\"push_image\";b:1;}i:248;a:22:{s:2:\"id\";s:3:\"257\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:18:\"real-estate-slider\";s:3:\"zip\";s:22:\"real-estate-slider.zip\";s:3:\"uid\";s:32:\"739ce6336e46815094387c9448e6c804\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/real-estate-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:249;a:22:{s:2:\"id\";s:3:\"258\";s:5:\"title\";s:14:\"Fashion Header\";s:5:\"alias\";s:14:\"fashion-header\";s:3:\"zip\";s:18:\"fashion-header.zip\";s:3:\"uid\";s:32:\"24ece4e7f4d31cd90377c62abbd9e25a\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \"Bubble Morph\" effect makes this module stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:250;a:22:{s:2:\"id\";s:3:\"259\";s:5:\"title\";s:14:\"Seasonal Offer\";s:5:\"alias\";s:13:\"seasonaloffer\";s:3:\"zip\";s:17:\"seasonaloffer.zip\";s:3:\"uid\";s:32:\"caf2f17f8fd64f2f89dcb3c8dd238457\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:251;a:26:{s:2:\"id\";s:3:\"260\";s:5:\"title\";s:11:\"Barber Shop\";s:5:\"alias\";s:11:\"barber-shop\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:19:\"barber-shop-package\";s:3:\"img\";s:32:\"packages/barber-shop-package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:252;a:26:{s:2:\"id\";s:3:\"261\";s:5:\"title\";s:18:\"Barber Shop Header\";s:5:\"alias\";s:18:\"barber-shop-header\";s:3:\"zip\";s:28:\"packs/barber-shop-header.zip\";s:3:\"uid\";s:32:\"71c995d36d39a0e8a04cffdf753f2ba2\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:253;a:26:{s:2:\"id\";s:3:\"262\";s:5:\"title\";s:23:\"Barber Shop Mobile Menu\";s:5:\"alias\";s:23:\"barber-shop-mobile-menu\";s:3:\"zip\";s:33:\"packs/barber-shop-mobile-menu.zip\";s:3:\"uid\";s:32:\"762c6fb5c6306f37becb1e55773c2592\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:254;a:26:{s:2:\"id\";s:3:\"263\";s:5:\"title\";s:24:\"Barber Shop First Screen\";s:5:\"alias\";s:24:\"barber-shop-first-screen\";s:3:\"zip\";s:34:\"packs/barber-shop-first-screen.zip\";s:3:\"uid\";s:32:\"acf70bfd64cff2c3c2ea5585223575da\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:255;a:26:{s:2:\"id\";s:3:\"264\";s:5:\"title\";s:17:\"Barber Shop About\";s:5:\"alias\";s:17:\"barber-shop-about\";s:3:\"zip\";s:27:\"packs/barber-shop-about.zip\";s:3:\"uid\";s:32:\"bc8b63cfc7f8c34173b4fd5b082fc05a\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:256;a:26:{s:2:\"id\";s:3:\"265\";s:5:\"title\";s:20:\"Barber Shop Services\";s:5:\"alias\";s:20:\"barber-shop-services\";s:3:\"zip\";s:30:\"packs/barber-shop-services.zip\";s:3:\"uid\";s:32:\"d65121d6f84fabd812a2b621b768e10e\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:257;a:26:{s:2:\"id\";s:3:\"266\";s:5:\"title\";s:19:\"Barber Shop Barbers\";s:5:\"alias\";s:19:\"barber-shop-barbers\";s:3:\"zip\";s:29:\"packs/barber-shop-barbers.zip\";s:3:\"uid\";s:32:\"003e9fec9693072119c8f8d8b6690c4d\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:258;a:26:{s:2:\"id\";s:3:\"267\";s:5:\"title\";s:20:\"Barber Shop Contacts\";s:5:\"alias\";s:20:\"barber-shop-contacts\";s:3:\"zip\";s:30:\"packs/barber-shop-contacts.zip\";s:3:\"uid\";s:32:\"cdcc08f5d6c90dbcfd0502bda2401643\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:259;a:26:{s:2:\"id\";s:3:\"268\";s:5:\"title\";s:18:\"Barber Shop Footer\";s:5:\"alias\";s:18:\"barber-shop-footer\";s:3:\"zip\";s:28:\"packs/barber-shop-footer.zip\";s:3:\"uid\";s:32:\"26ca5ae0de7cdbb2ca19348b6e01eda0\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:260;a:22:{s:2:\"id\";s:3:\"269\";s:5:\"title\";s:12:\"Fitness Club\";s:5:\"alias\";s:21:\"fitness-club-template\";s:3:\"zip\";s:25:\"fitness-club-template.zip\";s:3:\"uid\";s:32:\"14ea10d68d6aad1df62b3becf71df754\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/fitness-club-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:223:\"<span class=\"ttm_content\">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:261;a:22:{s:2:\"id\";s:3:\"270\";s:5:\"title\";s:13:\"Soccer School\";s:5:\"alias\";s:13:\"soccer-school\";s:3:\"zip\";s:17:\"soccer-school.zip\";s:3:\"uid\";s:32:\"9906b48812aff67097f990eeee42dd41\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:262;a:22:{s:2:\"id\";s:3:\"271\";s:5:\"title\";s:10:\"Music Band\";s:5:\"alias\";s:19:\"music-band-template\";s:3:\"zip\";s:23:\"music-band-template.zip\";s:3:\"uid\";s:32:\"91e79657bf1b1812f8114a00ab8e0eb4\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/music-band-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:263;a:22:{s:2:\"id\";s:3:\"272\";s:5:\"title\";s:15:\"Restaurant Menu\";s:5:\"alias\";s:15:\"restaurant-menu\";s:3:\"zip\";s:19:\"restaurant-menu.zip\";s:3:\"uid\";s:32:\"078809cffb21b6c4d3f5aaa2daeb193d\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:208:\"<span class=\"ttm_content\">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:264;a:22:{s:2:\"id\";s:3:\"273\";s:5:\"title\";s:16:\"Cinematic Slider\";s:5:\"alias\";s:16:\"cinematic-slider\";s:3:\"zip\";s:20:\"cinematic-slider.zip\";s:3:\"uid\";s:32:\"c53e7dcbb6b656ae7b4c91d333589838\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/cinematic-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"<span class=\"ttm_content\">Bold texts and a cinematic transition effect make this slider stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:265;a:22:{s:2:\"id\";s:3:\"274\";s:5:\"title\";s:17:\"3D Parallax Cubes\";s:5:\"alias\";s:17:\"3d-parallax-cubes\";s:3:\"zip\";s:21:\"3d-parallax-cubes.zip\";s:3:\"uid\";s:32:\"c5b809a1829f8f809c9a768cd3d6b3cb\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">This amazing 3D cubes parallax effect can be an eye-opening intro for your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:266;a:25:{s:2:\"id\";s:3:\"275\";s:5:\"title\";s:33:\"Medicare Medical Services Website\";s:5:\"alias\";s:33:\"medicare-medical-services-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"medicare-medical-services-website-package\";s:3:\"img\";s:29:\"packages/medicare_package.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:267;a:25:{s:2:\"id\";s:3:\"276\";s:5:\"title\";s:13:\"Medicare Menu\";s:5:\"alias\";s:13:\"medicare-menu\";s:3:\"zip\";s:23:\"packs/medicare-menu.zip\";s:3:\"uid\";s:32:\"0e4ca8fc281e20251b3fffa19d470fed\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:268;a:25:{s:2:\"id\";s:3:\"277\";s:5:\"title\";s:15:\"Medicare Header\";s:5:\"alias\";s:15:\"medicare-header\";s:3:\"zip\";s:25:\"packs/medicare-header.zip\";s:3:\"uid\";s:32:\"03e8ade247d8c96f548bc0515f34043f\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:269;a:25:{s:2:\"id\";s:3:\"278\";s:5:\"title\";s:14:\"Medicare About\";s:5:\"alias\";s:14:\"medicare-about\";s:3:\"zip\";s:24:\"packs/medicare-about.zip\";s:3:\"uid\";s:32:\"a3ab9e89155ef2542820343f30b29f72\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:270;a:25:{s:2:\"id\";s:3:\"279\";s:5:\"title\";s:18:\"Medicare Highlight\";s:5:\"alias\";s:18:\"medicare-highlight\";s:3:\"zip\";s:28:\"packs/medicare-highlight.zip\";s:3:\"uid\";s:32:\"c3c8a74e5402489f1a85a0c83890ef1f\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:271;a:25:{s:2:\"id\";s:3:\"280\";s:5:\"title\";s:17:\"Medicare Services\";s:5:\"alias\";s:17:\"medicare-services\";s:3:\"zip\";s:27:\"packs/medicare-services.zip\";s:3:\"uid\";s:32:\"8869b0834d4649dcc3221bed65980806\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:272;a:25:{s:2:\"id\";s:3:\"281\";s:5:\"title\";s:16:\"Medicare Doctors\";s:5:\"alias\";s:16:\"medicare-doctors\";s:3:\"zip\";s:26:\"packs/medicare-doctors.zip\";s:3:\"uid\";s:32:\"2c9d57afd64244b5f7e30b0d87c842f9\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:273;a:25:{s:2:\"id\";s:3:\"282\";s:5:\"title\";s:17:\"Medicare Research\";s:5:\"alias\";s:17:\"medicare-research\";s:3:\"zip\";s:27:\"packs/medicare-research.zip\";s:3:\"uid\";s:32:\"31e84a91fc8b8d5296e715e539a076d0\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:274;a:25:{s:2:\"id\";s:3:\"283\";s:5:\"title\";s:19:\"Medicare Why Choose\";s:5:\"alias\";s:18:\"medicare-whychoose\";s:3:\"zip\";s:28:\"packs/medicare-whychoose.zip\";s:3:\"uid\";s:32:\"6dad61c672127de9e35884caa45d49a0\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:275;a:25:{s:2:\"id\";s:3:\"284\";s:5:\"title\";s:16:\"Medicare Contact\";s:5:\"alias\";s:16:\"medicare-contact\";s:3:\"zip\";s:26:\"packs/medicare-contact.zip\";s:3:\"uid\";s:32:\"89bc35ad8beb62a149c42262ae49a270\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:276;a:25:{s:2:\"id\";s:3:\"285\";s:5:\"title\";s:15:\"Medicare Footer\";s:5:\"alias\";s:15:\"medicare-footer\";s:3:\"zip\";s:25:\"packs/medicare-footer.zip\";s:3:\"uid\";s:32:\"ccf63e5233b3d63009e5ee90db51b37b\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:277;a:25:{s:2:\"id\";s:3:\"286\";s:5:\"title\";s:20:\"Coffee Joint Website\";s:5:\"alias\";s:20:\"coffee-joint-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"coffee-joint-website-package\";s:3:\"img\";s:27:\"packages/coffee_package.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:278;a:25:{s:2:\"id\";s:3:\"287\";s:5:\"title\";s:11:\"Coffee Menu\";s:5:\"alias\";s:11:\"coffee-menu\";s:3:\"zip\";s:21:\"packs/coffee-menu.zip\";s:3:\"uid\";s:32:\"81195cad7be3f5180a267b34ce8cf966\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:279;a:25:{s:2:\"id\";s:3:\"288\";s:5:\"title\";s:13:\"Coffee Header\";s:5:\"alias\";s:13:\"coffee-header\";s:3:\"zip\";s:23:\"packs/coffee-header.zip\";s:3:\"uid\";s:32:\"5eed8adb9d3ae12168ad4735ac63eb20\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:280;a:25:{s:2:\"id\";s:3:\"289\";s:5:\"title\";s:17:\"Coffee Philosophy\";s:5:\"alias\";s:17:\"coffee-philosophy\";s:3:\"zip\";s:27:\"packs/coffee-philosophy.zip\";s:3:\"uid\";s:32:\"76b5ccae3fa87fd0f991b87e7ae71c27\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:281;a:25:{s:2:\"id\";s:3:\"290\";s:5:\"title\";s:12:\"Coffee Carte\";s:5:\"alias\";s:12:\"coffee-carte\";s:3:\"zip\";s:22:\"packs/coffee-carte.zip\";s:3:\"uid\";s:32:\"470214ddd2cec585629fb79a0fd908d6\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:282;a:25:{s:2:\"id\";s:3:\"291\";s:5:\"title\";s:13:\"Coffee Teaser\";s:5:\"alias\";s:13:\"coffee-teaser\";s:3:\"zip\";s:23:\"packs/coffee-teaser.zip\";s:3:\"uid\";s:32:\"2ed868896c92a7bfb6431803c79e8486\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:283;a:25:{s:2:\"id\";s:3:\"292\";s:5:\"title\";s:14:\"Coffee Find Us\";s:5:\"alias\";s:13:\"coffee-findus\";s:3:\"zip\";s:23:\"packs/coffee-findus.zip\";s:3:\"uid\";s:32:\"96d3784473dfa64bce9e1e4101919927\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:284;a:25:{s:2:\"id\";s:3:\"293\";s:5:\"title\";s:13:\"Coffee Footer\";s:5:\"alias\";s:13:\"coffee-footer\";s:3:\"zip\";s:23:\"packs/coffee-footer.zip\";s:3:\"uid\";s:32:\"6027c25e87a5fe7fd8727a51c0967915\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:286;a:26:{s:2:\"id\";s:3:\"295\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:17:\"minimal-portfolio\";s:3:\"zip\";s:27:\"packs/minimal-portfolio.zip\";s:3:\"uid\";s:32:\"183b97b301d5ff0b171c067a87c8a3f5\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:287;a:26:{s:2:\"id\";s:3:\"296\";s:5:\"title\";s:23:\"Minimal Portfolio Modal\";s:5:\"alias\";s:23:\"minimal-portfolio-modal\";s:3:\"zip\";s:33:\"packs/minimal-portfolio-modal.zip\";s:3:\"uid\";s:32:\"6874e6cec3663670f209a8d8a4f26b16\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:288;a:25:{s:2:\"id\";s:3:\"297\";s:5:\"title\";s:23:\"Angled Business Website\";s:5:\"alias\";s:23:\"angled-business-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"angled-business-website-package\";s:3:\"img\";s:27:\"packages/angled_package.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:289;a:25:{s:2:\"id\";s:3:\"298\";s:5:\"title\";s:11:\"Angled Menu\";s:5:\"alias\";s:11:\"angled-menu\";s:3:\"zip\";s:21:\"packs/angled-menu.zip\";s:3:\"uid\";s:32:\"2fe0c4682d1231ee3918be9e4fcb1837\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:290;a:25:{s:2:\"id\";s:3:\"299\";s:5:\"title\";s:13:\"Angled Header\";s:5:\"alias\";s:13:\"angled-header\";s:3:\"zip\";s:23:\"packs/angled-header.zip\";s:3:\"uid\";s:32:\"09462601d4edca8dff899de6f666dc47\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:291;a:25:{s:2:\"id\";s:3:\"300\";s:5:\"title\";s:11:\"Angled News\";s:5:\"alias\";s:11:\"angled-news\";s:3:\"zip\";s:21:\"packs/angled-news.zip\";s:3:\"uid\";s:32:\"b315105763ed91214cb2f0ac12615729\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:292;a:25:{s:2:\"id\";s:3:\"301\";s:5:\"title\";s:15:\"Angled Services\";s:5:\"alias\";s:15:\"angled-services\";s:3:\"zip\";s:25:\"packs/angled-services.zip\";s:3:\"uid\";s:32:\"7605651c1487e1a6c32edc70017be8ad\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:293;a:25:{s:2:\"id\";s:3:\"302\";s:5:\"title\";s:14:\"Angled Success\";s:5:\"alias\";s:14:\"angled-success\";s:3:\"zip\";s:24:\"packs/angled-success.zip\";s:3:\"uid\";s:32:\"9e3fa974a42ecf80e1ec6ff991fca430\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:294;a:25:{s:2:\"id\";s:3:\"303\";s:5:\"title\";s:13:\"Angled Footer\";s:5:\"alias\";s:13:\"angled-footer\";s:3:\"zip\";s:23:\"packs/angled-footer.zip\";s:3:\"uid\";s:32:\"aed4eaa2f7883351ba9c9947feef153e\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:295;a:25:{s:2:\"id\";s:3:\"304\";s:5:\"title\";s:20:\"Angled Content Modal\";s:5:\"alias\";s:20:\"angled-content-modal\";s:3:\"zip\";s:30:\"packs/angled-content-modal.zip\";s:3:\"uid\";s:32:\"4ddc74515fdf84f974217e4ed47a7c66\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:296;a:22:{s:2:\"id\";s:3:\"312\";s:5:\"title\";s:24:\"Retouch Before and After\";s:5:\"alias\";s:7:\"Retouch\";s:3:\"zip\";s:11:\"Retouch.zip\";s:3:\"uid\";s:32:\"58894991f1abd8b448c8d353b1b5fe76\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/retouch-before-after-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">The Retouch Slider is the perfect way to compare your photos before and after retouching.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:297;a:22:{s:2:\"id\";s:3:\"313\";s:5:\"title\";s:11:\"Tech Slider\";s:5:\"alias\";s:11:\"tech-slider\";s:3:\"zip\";s:15:\"tech-slider.zip\";s:3:\"uid\";s:32:\"a98e2b264f00a1116d21808c6a543162\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/tech-showcase-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">This classic slider module with sleek device mockups features a smooth parallax effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:298;a:25:{s:2:\"id\";s:3:\"314\";s:5:\"title\";s:19:\"Peak Agency Website\";s:5:\"alias\";s:19:\"peak-agency-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"peak-agency-website-package\";s:3:\"img\";s:25:\"packages/peak_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:299;a:25:{s:2:\"id\";s:3:\"315\";s:5:\"title\";s:11:\"Peak Header\";s:5:\"alias\";s:11:\"peak-header\";s:3:\"zip\";s:21:\"packs/peak-header.zip\";s:3:\"uid\";s:32:\"b721bd612e9fbc5182418ad3fd7d0808\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:300;a:25:{s:2:\"id\";s:3:\"316\";s:5:\"title\";s:10:\"Peak About\";s:5:\"alias\";s:10:\"peak-about\";s:3:\"zip\";s:20:\"packs/peak-about.zip\";s:3:\"uid\";s:32:\"7e68b1012fb03490d45c7f79e8cb1b19\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:301;a:25:{s:2:\"id\";s:3:\"317\";s:5:\"title\";s:14:\"Peak Portfolio\";s:5:\"alias\";s:14:\"peak-portfolio\";s:3:\"zip\";s:24:\"packs/peak-portfolio.zip\";s:3:\"uid\";s:32:\"6198d1885ba9e95221c33e404f21bdbc\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:302;a:25:{s:2:\"id\";s:3:\"318\";s:5:\"title\";s:11:\"Peak Footer\";s:5:\"alias\";s:11:\"peak-footer\";s:3:\"zip\";s:21:\"packs/peak-footer.zip\";s:3:\"uid\";s:32:\"2dead6897ad3b3a709b380d81242f76b\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:303;a:25:{s:2:\"id\";s:3:\"319\";s:5:\"title\";s:24:\"Modern Portfolio Website\";s:5:\"alias\";s:24:\"modern-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"modern-portfolio-website-package\";s:3:\"img\";s:30:\"packages/portfolio-package.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:304;a:25:{s:2:\"id\";s:3:\"320\";s:5:\"title\";s:17:\"Portfolio Welcome\";s:5:\"alias\";s:17:\"portfolio-welcome\";s:3:\"zip\";s:27:\"packs/portfolio-welcome.zip\";s:3:\"uid\";s:32:\"97336b8785e4a7b27facaf1547e0464d\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:305;a:25:{s:2:\"id\";s:3:\"321\";s:5:\"title\";s:15:\"Portfolio About\";s:5:\"alias\";s:15:\"portfolio-about\";s:3:\"zip\";s:25:\"packs/portfolio-about.zip\";s:3:\"uid\";s:32:\"5d3a4724fd453de5313ceb6696c1db62\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:306;a:25:{s:2:\"id\";s:3:\"322\";s:5:\"title\";s:21:\"Portfolio Works Title\";s:5:\"alias\";s:21:\"portfolio-works-title\";s:3:\"zip\";s:31:\"packs/portfolio-works-title.zip\";s:3:\"uid\";s:32:\"cbb5c6e875cc1f25b463fdf89cabef28\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:307;a:25:{s:2:\"id\";s:3:\"323\";s:5:\"title\";s:23:\"Portfolio Works Content\";s:5:\"alias\";s:23:\"portfolio-works-content\";s:3:\"zip\";s:33:\"packs/portfolio-works-content.zip\";s:3:\"uid\";s:32:\"5c87311128c7794ffa6ee07ea0648082\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:308;a:25:{s:2:\"id\";s:3:\"324\";s:5:\"title\";s:18:\"Portfolio Contacts\";s:5:\"alias\";s:18:\"portfolio-contacts\";s:3:\"zip\";s:28:\"packs/portfolio-contacts.zip\";s:3:\"uid\";s:32:\"bd81feffad83b69218f7e837478038e5\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:309;a:26:{s:2:\"id\";s:3:\"325\";s:5:\"title\";s:18:\"App Studio Website\";s:5:\"alias\";s:18:\"app-studio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"app-studio-website-package\";s:3:\"img\";s:31:\"packages/App_Studio_package.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:310;a:26:{s:2:\"id\";s:3:\"326\";s:5:\"title\";s:18:\"App Studio Welcome\";s:5:\"alias\";s:18:\"App-Studio-Welcome\";s:3:\"zip\";s:28:\"packs/App-Studio-Welcome.zip\";s:3:\"uid\";s:32:\"2ce0f3c54214b04e6c3a9becfd59730c\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:311;a:26:{s:2:\"id\";s:3:\"327\";s:5:\"title\";s:19:\"App Studio Services\";s:5:\"alias\";s:19:\"App-Studio-Services\";s:3:\"zip\";s:29:\"packs/App-Studio-Services.zip\";s:3:\"uid\";s:32:\"5df7776271ec69d2f9edaa6b842715a9\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:312;a:26:{s:2:\"id\";s:3:\"328\";s:5:\"title\";s:16:\"App Studio About\";s:5:\"alias\";s:16:\"App-Studio-About\";s:3:\"zip\";s:26:\"packs/App-Studio-About.zip\";s:3:\"uid\";s:32:\"af8b84dc116c629df7bd89fc69271a2e\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:313;a:26:{s:2:\"id\";s:3:\"329\";s:5:\"title\";s:19:\"App Studio Contacts\";s:5:\"alias\";s:19:\"App-Studio-Contacts\";s:3:\"zip\";s:29:\"packs/App-Studio-Contacts.zip\";s:3:\"uid\";s:32:\"afbbd2214c983d314f3215a00db9198d\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:314;a:22:{s:2:\"id\";s:3:\"330\";s:5:\"title\";s:14:\"Cube Animation\";s:5:\"alias\";s:14:\"cube-animation\";s:3:\"zip\";s:18:\"cube-animation.zip\";s:3:\"uid\";s:32:\"c03dd3cfc60479dfc6d79ddb64fa0ec5\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/cube-animation-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">A modern slider with text elements, cube animations and a striking call to action button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:315;a:26:{s:2:\"id\";s:3:\"331\";s:5:\"title\";s:13:\"Basic Website\";s:5:\"alias\";s:13:\"basic-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:21:\"basic-website-package\";s:3:\"img\";s:26:\"packages/basic_package.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:316;a:26:{s:2:\"id\";s:3:\"332\";s:5:\"title\";s:10:\"Basic Menu\";s:5:\"alias\";s:10:\"basic-menu\";s:3:\"zip\";s:20:\"packs/basic-menu.zip\";s:3:\"uid\";s:32:\"39277f53b2cb5ac644a1649b47c37270\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:317;a:26:{s:2:\"id\";s:3:\"333\";s:5:\"title\";s:12:\"Basic Header\";s:5:\"alias\";s:12:\"basic-header\";s:3:\"zip\";s:22:\"packs/basic-header.zip\";s:3:\"uid\";s:32:\"ad7a32dbccb0bdf9de64cf2adfa950a2\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:318;a:26:{s:2:\"id\";s:3:\"334\";s:5:\"title\";s:13:\"Basic Content\";s:5:\"alias\";s:13:\"basic-content\";s:3:\"zip\";s:23:\"packs/basic-content.zip\";s:3:\"uid\";s:32:\"0b12f3b183a3c8206e3a7b28d2d93108\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:319;a:26:{s:2:\"id\";s:3:\"335\";s:5:\"title\";s:14:\"Basic Carousel\";s:5:\"alias\";s:14:\"basic-carousel\";s:3:\"zip\";s:24:\"packs/basic-carousel.zip\";s:3:\"uid\";s:32:\"e4abb5c6d5cf914530575a982d3dfc14\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:320;a:26:{s:2:\"id\";s:3:\"336\";s:5:\"title\";s:13:\"Basic Callout\";s:5:\"alias\";s:13:\"basic-callout\";s:3:\"zip\";s:23:\"packs/basic-callout.zip\";s:3:\"uid\";s:32:\"2ccc208b9322f5435d0f4ff64c6d9dab\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:321;a:26:{s:2:\"id\";s:3:\"337\";s:5:\"title\";s:10:\"Basic Grid\";s:5:\"alias\";s:10:\"basic-grid\";s:3:\"zip\";s:20:\"packs/basic-grid.zip\";s:3:\"uid\";s:32:\"3cb4b41d2992eba012921b8fb7c96daa\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:322;a:26:{s:2:\"id\";s:3:\"338\";s:5:\"title\";s:17:\"Basic Video Block\";s:5:\"alias\";s:17:\"basic-video-block\";s:3:\"zip\";s:27:\"packs/basic-video-block.zip\";s:3:\"uid\";s:32:\"e7c1d42b21819741f3e72c1325dae5ed\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:323;a:26:{s:2:\"id\";s:3:\"339\";s:5:\"title\";s:12:\"Basic Footer\";s:5:\"alias\";s:12:\"basic-footer\";s:3:\"zip\";s:22:\"packs/basic-footer.zip\";s:3:\"uid\";s:32:\"ed8f6a554775ebace558af2f4f2dcbac\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:324;a:26:{s:2:\"id\";s:3:\"340\";s:5:\"title\";s:14:\"Basic Lightbox\";s:5:\"alias\";s:14:\"basic-lightbox\";s:3:\"zip\";s:24:\"packs/basic-lightbox.zip\";s:3:\"uid\";s:32:\"e4b025b300b1a8f417d04eb80113fac2\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:325;a:22:{s:2:\"id\";s:3:\"341\";s:5:\"title\";s:13:\"Nature Slider\";s:5:\"alias\";s:13:\"nature-slider\";s:3:\"zip\";s:17:\"nature-slider.zip\";s:3:\"uid\";s:32:\"eef1a4584ec1c3b8c26c305cca44e805\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/nature-explorer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:151:\"<span class=\"ttm_content\">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:326;a:23:{s:2:\"id\";s:3:\"342\";s:5:\"title\";s:11:\"Art Gallery\";s:5:\"alias\";s:11:\"art-gallery\";s:3:\"zip\";s:15:\"art-gallery.zip\";s:3:\"uid\";s:32:\"b8c5095ae3407337e6e5b2a8515e7d6e\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/art-gallery-slider-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern slider with large, geometric elements and interesting mask animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:327;a:25:{s:2:\"id\";s:3:\"343\";s:5:\"title\";s:20:\"Construction Company\";s:5:\"alias\";s:28:\"construction-company-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"construction-company-website-package\";s:3:\"img\";s:33:\"packages/construction_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:328;a:25:{s:2:\"id\";s:3:\"344\";s:5:\"title\";s:19:\"Construction Header\";s:5:\"alias\";s:19:\"Construction-Header\";s:3:\"zip\";s:29:\"packs/Construction-Header.zip\";s:3:\"uid\";s:32:\"5c77de774b8f5487c1276c4a7b3dc80c\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:329;a:25:{s:2:\"id\";s:3:\"345\";s:5:\"title\";s:17:\"Construction Home\";s:5:\"alias\";s:17:\"Construction-Home\";s:3:\"zip\";s:27:\"packs/Construction-Home.zip\";s:3:\"uid\";s:32:\"fcb277f0c07dad270d2a7cef4431bef8\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:330;a:25:{s:2:\"id\";s:3:\"346\";s:5:\"title\";s:21:\"Construction Projects\";s:5:\"alias\";s:21:\"Construction-Projects\";s:3:\"zip\";s:31:\"packs/Construction-Projects.zip\";s:3:\"uid\";s:32:\"0c847173c3739f79778dc2c0fc9704e4\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:331;a:25:{s:2:\"id\";s:3:\"347\";s:5:\"title\";s:20:\"Construction History\";s:5:\"alias\";s:20:\"Construction-History\";s:3:\"zip\";s:30:\"packs/Construction-History.zip\";s:3:\"uid\";s:32:\"758da120c4b6c5606692faf0aa43aac6\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:332;a:25:{s:2:\"id\";s:3:\"348\";s:5:\"title\";s:21:\"Construction Services\";s:5:\"alias\";s:21:\"Construction-Services\";s:3:\"zip\";s:31:\"packs/Construction-Services.zip\";s:3:\"uid\";s:32:\"5ad5b841c1d89e97ddbf972c8b11abd4\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:333;a:25:{s:2:\"id\";s:3:\"349\";s:5:\"title\";s:21:\"Construction Contacts\";s:5:\"alias\";s:21:\"Construction-Contacts\";s:3:\"zip\";s:31:\"packs/Construction-Contacts.zip\";s:3:\"uid\";s:32:\"b8c3c34046bb91ebb243e4da64745d37\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:334;a:24:{s:2:\"id\";s:3:\"350\";s:5:\"title\";s:22:\"Classic Cars Evolution\";s:5:\"alias\";s:22:\"Classic-Cars-Evolution\";s:3:\"zip\";s:26:\"Classic-Cars-Evolution.zip\";s:3:\"uid\";s:32:\"7061757f128fd624b0227715dab73b74\";s:3:\"img\";s:33:\"Classic-Cars-Evolution/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/classic-cars-before-after-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;s:10:\"push_image\";b:1;}i:335;a:22:{s:2:\"id\";s:3:\"351\";s:5:\"title\";s:21:\"404 Error Space Theme\";s:5:\"alias\";s:21:\"404-Error-Space-Theme\";s:3:\"zip\";s:25:\"404-Error-Space-Theme.zip\";s:3:\"uid\";s:32:\"6412adc7ec025826328e40e552a14e1e\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";s:7:\"preview\";s:49:\"https://revolution.themepunch.com/404-error-page/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:336;a:25:{s:2:\"id\";s:3:\"352\";s:5:\"title\";s:12:\"Landing Page\";s:5:\"alias\";s:20:\"landing-page-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"landing-page-website-package\";s:3:\"img\";s:23:\"packages/lp_package.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:337;a:25:{s:2:\"id\";s:3:\"353\";s:5:\"title\";s:17:\"Landing Page Hero\";s:5:\"alias\";s:17:\"landing-page-hero\";s:3:\"zip\";s:27:\"packs/landing-page-hero.zip\";s:3:\"uid\";s:32:\"d328635caa20da7ee8a3ab687f8656ff\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:338;a:25:{s:2:\"id\";s:3:\"354\";s:5:\"title\";s:21:\"Landing Page Features\";s:5:\"alias\";s:21:\"landing-page-features\";s:3:\"zip\";s:31:\"packs/landing-page-features.zip\";s:3:\"uid\";s:32:\"6552bc72abace10918a64866d9bb79c1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:339;a:25:{s:2:\"id\";s:3:\"355\";s:5:\"title\";s:20:\"Landing Page Callout\";s:5:\"alias\";s:20:\"landing-page-callout\";s:3:\"zip\";s:30:\"packs/landing-page-callout.zip\";s:3:\"uid\";s:32:\"c5b101ea5471e7409ae7effa8d45fbcf\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:340;a:25:{s:2:\"id\";s:3:\"356\";s:5:\"title\";s:20:\"Landing Page Content\";s:5:\"alias\";s:20:\"landing-page-content\";s:3:\"zip\";s:30:\"packs/landing-page-content.zip\";s:3:\"uid\";s:32:\"34da8057a6bb3677c9adf9f18ffc6cf0\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:341;a:25:{s:2:\"id\";s:3:\"357\";s:5:\"title\";s:25:\"Landing Page Testimonials\";s:5:\"alias\";s:25:\"landing-page-testimonials\";s:3:\"zip\";s:35:\"packs/landing-page-testimonials.zip\";s:3:\"uid\";s:32:\"a83606e311cd5115422d86f04890cbf1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:342;a:25:{s:2:\"id\";s:3:\"358\";s:5:\"title\";s:27:\"Landing Page Call to Action\";s:5:\"alias\";s:27:\"landing-page-call-to-action\";s:3:\"zip\";s:37:\"packs/landing-page-call-to-action.zip\";s:3:\"uid\";s:32:\"adfb456b27fa7eb6b1415d8f80836f05\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:343;a:25:{s:2:\"id\";s:3:\"359\";s:5:\"title\";s:17:\"Landing Page Help\";s:5:\"alias\";s:17:\"landing-page-help\";s:3:\"zip\";s:27:\"packs/landing-page-help.zip\";s:3:\"uid\";s:32:\"ca502431f9b7f6249d99b02464de2dd7\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:344;a:25:{s:2:\"id\";s:3:\"360\";s:5:\"title\";s:19:\"Landing Page Footer\";s:5:\"alias\";s:19:\"landing-page-footer\";s:3:\"zip\";s:29:\"packs/landing-page-footer.zip\";s:3:\"uid\";s:32:\"2a6afc371dbd60cb117f8a0f5d09eac9\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:345;a:25:{s:2:\"id\";s:3:\"361\";s:5:\"title\";s:24:\"Landing Page Price Modal\";s:5:\"alias\";s:24:\"landing-page-price-modal\";s:3:\"zip\";s:34:\"packs/landing-page-price-modal.zip\";s:3:\"uid\";s:32:\"a6c5c0430b46dd4e6e68416964a8c54d\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:346;a:25:{s:2:\"id\";s:3:\"371\";s:5:\"title\";s:17:\"Corporate Website\";s:5:\"alias\";s:17:\"corporate-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"corporate-website-package\";s:3:\"img\";s:30:\"packages/corporate-website.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:347;a:25:{s:2:\"id\";s:3:\"372\";s:5:\"title\";s:16:\"Corporate Header\";s:5:\"alias\";s:16:\"Corporate-Header\";s:3:\"zip\";s:26:\"packs/Corporate-Header.zip\";s:3:\"uid\";s:32:\"04f868e3812a1681f00ab89580e5d1f8\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:348;a:25:{s:2:\"id\";s:3:\"373\";s:5:\"title\";s:24:\"Corporate Welcome Screen\";s:5:\"alias\";s:24:\"Corporate-Welcome-Screen\";s:3:\"zip\";s:34:\"packs/Corporate-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"052afe98ef819f7ace041dbbdb749639\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:349;a:25:{s:2:\"id\";s:3:\"374\";s:5:\"title\";s:15:\"Corporate About\";s:5:\"alias\";s:15:\"Corporate-About\";s:3:\"zip\";s:25:\"packs/Corporate-About.zip\";s:3:\"uid\";s:32:\"7bf5f8f6d4cc3016cea86289cb46e5b6\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:350;a:25:{s:2:\"id\";s:3:\"375\";s:5:\"title\";s:19:\"Corporate Portfolio\";s:5:\"alias\";s:19:\"Corporate-Portfolio\";s:3:\"zip\";s:29:\"packs/Corporate-Portfolio.zip\";s:3:\"uid\";s:32:\"612c2bd784fea81392dda1644a3c3cf3\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:351;a:25:{s:2:\"id\";s:3:\"376\";s:5:\"title\";s:15:\"Corporate Chart\";s:5:\"alias\";s:15:\"Corporate-Chart\";s:3:\"zip\";s:25:\"packs/Corporate-Chart.zip\";s:3:\"uid\";s:32:\"4d27d9b3b2cfcce750e526aafb322a9f\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:352;a:25:{s:2:\"id\";s:3:\"377\";s:5:\"title\";s:14:\"Corporate News\";s:5:\"alias\";s:14:\"Corporate-News\";s:3:\"zip\";s:24:\"packs/Corporate-News.zip\";s:3:\"uid\";s:32:\"bb65ed57a0d4db795d8b738f0a92f2d7\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:353;a:25:{s:2:\"id\";s:3:\"378\";s:5:\"title\";s:16:\"Corporate Hiring\";s:5:\"alias\";s:16:\"Corporate-Hiring\";s:3:\"zip\";s:26:\"packs/Corporate-Hiring.zip\";s:3:\"uid\";s:32:\"136cf1a91604e819089eb3573a6e100a\";s:3:\"img\";s:27:\"Corporate-Hiring/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:354;a:25:{s:2:\"id\";s:3:\"379\";s:5:\"title\";s:22:\"Corporate Testimonials\";s:5:\"alias\";s:22:\"Corporate-Testimonials\";s:3:\"zip\";s:32:\"packs/Corporate-Testimonials.zip\";s:3:\"uid\";s:32:\"b17aec0afdc31e37359cfa406164463c\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:355;a:25:{s:2:\"id\";s:3:\"380\";s:5:\"title\";s:15:\"Corporate Store\";s:5:\"alias\";s:15:\"Corporate-Store\";s:3:\"zip\";s:25:\"packs/Corporate-Store.zip\";s:3:\"uid\";s:32:\"6240b14620ddc634736716e0cdfdeb31\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:356;a:25:{s:2:\"id\";s:3:\"381\";s:5:\"title\";s:17:\"Corporate Support\";s:5:\"alias\";s:17:\"Corporate-Support\";s:3:\"zip\";s:27:\"packs/Corporate-Support.zip\";s:3:\"uid\";s:32:\"9424292a78076ce68c2faf587b26cdad\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:357;a:25:{s:2:\"id\";s:3:\"382\";s:5:\"title\";s:14:\"Corporate Team\";s:5:\"alias\";s:14:\"Corporate-Team\";s:3:\"zip\";s:24:\"packs/Corporate-Team.zip\";s:3:\"uid\";s:32:\"4fafe469b5a0a2545625c3f6d7ff3b9e\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:358;a:25:{s:2:\"id\";s:3:\"383\";s:5:\"title\";s:33:\"Corporate Selected Projects Title\";s:5:\"alias\";s:33:\"Corporate-Selected-Projects-Title\";s:3:\"zip\";s:43:\"packs/Corporate-Selected-Projects-Title.zip\";s:3:\"uid\";s:32:\"0ed3c41f51e6bf404c2fe179fa8d8ceb\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:359;a:25:{s:2:\"id\";s:3:\"384\";s:5:\"title\";s:27:\"Corporate Selected Projects\";s:5:\"alias\";s:27:\"Corporate-Selected-Projects\";s:3:\"zip\";s:37:\"packs/Corporate-Selected-Projects.zip\";s:3:\"uid\";s:32:\"1096c78d5f007f3900228a4092515e2e\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:360;a:25:{s:2:\"id\";s:3:\"385\";s:5:\"title\";s:17:\"Corporate Clients\";s:5:\"alias\";s:17:\"Corporate-Clients\";s:3:\"zip\";s:27:\"packs/Corporate-Clients.zip\";s:3:\"uid\";s:32:\"60fe3a311195bf4dba3e50bd1ab98574\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"14\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:361;a:25:{s:2:\"id\";s:3:\"386\";s:5:\"title\";s:20:\"Corporate Text Block\";s:5:\"alias\";s:20:\"Corporate-Text-Block\";s:3:\"zip\";s:30:\"packs/Corporate-Text-Block.zip\";s:3:\"uid\";s:32:\"93b68bb23d65fd1028b6b5f6d19b85b5\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"15\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:362;a:25:{s:2:\"id\";s:3:\"387\";s:5:\"title\";s:20:\"Corporate Mobile App\";s:5:\"alias\";s:20:\"Corporate-Mobile-App\";s:3:\"zip\";s:30:\"packs/Corporate-Mobile-App.zip\";s:3:\"uid\";s:32:\"e592369d233bea673403daa15c6e498a\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"16\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:363;a:25:{s:2:\"id\";s:3:\"388\";s:5:\"title\";s:18:\"Corporate Contacts\";s:5:\"alias\";s:18:\"Corporate-Contacts\";s:3:\"zip\";s:28:\"packs/Corporate-Contacts.zip\";s:3:\"uid\";s:32:\"91ae9488b54b7020f8ae9dfbfd6c563a\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"17\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:364;a:25:{s:2:\"id\";s:3:\"389\";s:5:\"title\";s:16:\"Corporate Footer\";s:5:\"alias\";s:16:\"Corporate-Footer\";s:3:\"zip\";s:26:\"packs/Corporate-Footer.zip\";s:3:\"uid\";s:32:\"a01df90af203f06194c1a18745d79861\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"18\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:365;a:25:{s:2:\"id\";s:3:\"390\";s:5:\"title\";s:23:\"Corporate Scroll To Top\";s:5:\"alias\";s:23:\"Corporate-Scroll-To-Top\";s:3:\"zip\";s:33:\"packs/Corporate-Scroll-To-Top.zip\";s:3:\"uid\";s:32:\"2d68f6e4590a9a445e6eb055dfee88ba\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"19\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:366;a:26:{s:2:\"id\";s:3:\"402\";s:5:\"title\";s:23:\"Brutal Website Template\";s:5:\"alias\";s:23:\"brutal-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"brutal-website-template-package\";s:3:\"img\";s:36:\"packages/brutal-website-template.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:367;a:26:{s:2:\"id\";s:3:\"403\";s:5:\"title\";s:11:\"Brutal Menu\";s:5:\"alias\";s:11:\"brutal-menu\";s:3:\"zip\";s:21:\"packs/brutal-menu.zip\";s:3:\"uid\";s:32:\"04b21c7aee2479793336e964230d6e3f\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:368;a:26:{s:2:\"id\";s:3:\"404\";s:5:\"title\";s:11:\"Brutal Hero\";s:5:\"alias\";s:11:\"brutal-hero\";s:3:\"zip\";s:21:\"packs/brutal-hero.zip\";s:3:\"uid\";s:32:\"a342ad01054b97bac7980fdf9e275b34\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:369;a:26:{s:2:\"id\";s:3:\"405\";s:5:\"title\";s:12:\"Brutal About\";s:5:\"alias\";s:12:\"brutal-about\";s:3:\"zip\";s:22:\"packs/brutal-about.zip\";s:3:\"uid\";s:32:\"a3e1cd2e36c9a783c1932fdafe2e4434\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:370;a:26:{s:2:\"id\";s:3:\"406\";s:5:\"title\";s:16:\"Brutal Highlight\";s:5:\"alias\";s:16:\"brutal-highlight\";s:3:\"zip\";s:26:\"packs/brutal-highlight.zip\";s:3:\"uid\";s:32:\"b7f8522dcb4636467633bd3b14f4e3e9\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:371;a:26:{s:2:\"id\";s:3:\"407\";s:5:\"title\";s:15:\"Brutal Projects\";s:5:\"alias\";s:15:\"brutal-projects\";s:3:\"zip\";s:25:\"packs/brutal-projects.zip\";s:3:\"uid\";s:32:\"1a462e91373042193ca5d623dd8e8a47\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:372;a:26:{s:2:\"id\";s:3:\"408\";s:5:\"title\";s:15:\"Brutal Services\";s:5:\"alias\";s:15:\"brutal-services\";s:3:\"zip\";s:25:\"packs/brutal-services.zip\";s:3:\"uid\";s:32:\"cbeeb1e7a5c2842b155fe13acb7c165d\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:373;a:26:{s:2:\"id\";s:3:\"409\";s:5:\"title\";s:14:\"Brutal Callout\";s:5:\"alias\";s:14:\"brutal-callout\";s:3:\"zip\";s:24:\"packs/brutal-callout.zip\";s:3:\"uid\";s:32:\"31b6dafdb2dfb548152653e60df5a3bc\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:374;a:26:{s:2:\"id\";s:3:\"410\";s:5:\"title\";s:13:\"Brutal Footer\";s:5:\"alias\";s:13:\"brutal-footer\";s:3:\"zip\";s:23:\"packs/brutal-footer.zip\";s:3:\"uid\";s:32:\"07559f0c574e3dd95b2d40d72cbb01bc\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:375;a:25:{s:2:\"id\";s:3:\"411\";s:5:\"title\";s:23:\"Church Website Template\";s:5:\"alias\";s:23:\"church-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"church-website-template-package\";s:3:\"img\";s:36:\"packages/church-website-template.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:376;a:25:{s:2:\"id\";s:3:\"412\";s:5:\"title\";s:13:\"Church Header\";s:5:\"alias\";s:13:\"Church-Header\";s:3:\"zip\";s:23:\"packs/Church-Header.zip\";s:3:\"uid\";s:32:\"c14289117e1e2b9ee716fb99146b2e03\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:377;a:25:{s:2:\"id\";s:3:\"413\";s:5:\"title\";s:22:\"Church Upcoming Events\";s:5:\"alias\";s:22:\"Church-Upcoming-Events\";s:3:\"zip\";s:32:\"packs/Church-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"056a26efddae92973fee4ee5cfa75f10\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:378;a:25:{s:2:\"id\";s:3:\"414\";s:5:\"title\";s:12:\"Church About\";s:5:\"alias\";s:12:\"Church-About\";s:3:\"zip\";s:22:\"packs/Church-About.zip\";s:3:\"uid\";s:32:\"8ef133f3f669f06380334a83e27eedbb\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:379;a:25:{s:2:\"id\";s:3:\"415\";s:5:\"title\";s:14:\"Church Pastors\";s:5:\"alias\";s:14:\"Church-Pastors\";s:3:\"zip\";s:24:\"packs/Church-Pastors.zip\";s:3:\"uid\";s:32:\"715edc0833a753b72350b8c974f86f94\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:380;a:25:{s:2:\"id\";s:3:\"416\";s:5:\"title\";s:20:\"Church Photo Gallery\";s:5:\"alias\";s:20:\"Church-Photo-Gallery\";s:3:\"zip\";s:30:\"packs/Church-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"d94808a97149cd5d3b3354a28409ffd7\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:381;a:25:{s:2:\"id\";s:3:\"417\";s:5:\"title\";s:16:\"Church Community\";s:5:\"alias\";s:16:\"Church-Community\";s:3:\"zip\";s:26:\"packs/Church-Community.zip\";s:3:\"uid\";s:32:\"2244e6a6d7a691653eae2d70765130a7\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:382;a:25:{s:2:\"id\";s:3:\"418\";s:5:\"title\";s:13:\"Church Sermon\";s:5:\"alias\";s:13:\"Church-Sermon\";s:3:\"zip\";s:23:\"packs/Church-Sermon.zip\";s:3:\"uid\";s:32:\"8fedf983bd55fff0f7a16d9f0a7e5408\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:383;a:25:{s:2:\"id\";s:3:\"419\";s:5:\"title\";s:15:\"Church Contacts\";s:5:\"alias\";s:15:\"Church-Contacts\";s:3:\"zip\";s:25:\"packs/Church-Contacts.zip\";s:3:\"uid\";s:32:\"0b1a6968e75868548fd98e435625c090\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:384;a:25:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:13:\"Church Footer\";s:5:\"alias\";s:13:\"Church-Footer\";s:3:\"zip\";s:23:\"packs/Church-Footer.zip\";s:3:\"uid\";s:32:\"29756685d3dc49e42edada43e6393b7b\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:385;a:25:{s:2:\"id\";s:3:\"421\";s:5:\"title\";s:29:\"Church Light Website Template\";s:5:\"alias\";s:29:\"church-light-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"church-light-website-template-package\";s:3:\"img\";s:42:\"packages/church-light-website-template.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:386;a:25:{s:2:\"id\";s:3:\"422\";s:5:\"title\";s:19:\"Church Light Header\";s:5:\"alias\";s:19:\"Church-Light-Header\";s:3:\"zip\";s:29:\"packs/Church-Light-Header.zip\";s:3:\"uid\";s:32:\"81c00f4b52cf55214de919e3f13121fc\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:387;a:25:{s:2:\"id\";s:3:\"423\";s:5:\"title\";s:28:\"Church Light Upcoming Events\";s:5:\"alias\";s:28:\"Church-Light-Upcoming-Events\";s:3:\"zip\";s:38:\"packs/Church-Light-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"963a49f4be0557ac5f3ee61d256f5bda\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:388;a:25:{s:2:\"id\";s:3:\"424\";s:5:\"title\";s:18:\"Church Light About\";s:5:\"alias\";s:18:\"Church-Light-About\";s:3:\"zip\";s:28:\"packs/Church-Light-About.zip\";s:3:\"uid\";s:32:\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:389;a:25:{s:2:\"id\";s:3:\"425\";s:5:\"title\";s:20:\"Church Light Pastors\";s:5:\"alias\";s:20:\"Church-Light-Pastors\";s:3:\"zip\";s:30:\"packs/Church-Light-Pastors.zip\";s:3:\"uid\";s:32:\"7cc3dec61556e2291d6f38c1ea5e983f\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:390;a:25:{s:2:\"id\";s:3:\"426\";s:5:\"title\";s:26:\"Church Light Photo Gallery\";s:5:\"alias\";s:26:\"Church-Light-Photo-Gallery\";s:3:\"zip\";s:36:\"packs/Church-Light-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"9e13100179b9b700b005693eeca57902\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:391;a:25:{s:2:\"id\";s:3:\"427\";s:5:\"title\";s:22:\"Church Light Community\";s:5:\"alias\";s:22:\"Church-Light-Community\";s:3:\"zip\";s:32:\"packs/Church-Light-Community.zip\";s:3:\"uid\";s:32:\"14fcc0d43d899fd96116bdbc57c7c5ea\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:392;a:25:{s:2:\"id\";s:3:\"428\";s:5:\"title\";s:19:\"Church Light Sermon\";s:5:\"alias\";s:19:\"Church-Light-Sermon\";s:3:\"zip\";s:29:\"packs/Church-Light-Sermon.zip\";s:3:\"uid\";s:32:\"fc30be7e703bc7b235665c36baa80e4e\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:393;a:25:{s:2:\"id\";s:3:\"429\";s:5:\"title\";s:21:\"Church Light Contacts\";s:5:\"alias\";s:21:\"Church-Light-Contacts\";s:3:\"zip\";s:31:\"packs/Church-Light-Contacts.zip\";s:3:\"uid\";s:32:\"ed83d8fa63ecb59cf42656068ecf8d25\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:394;a:25:{s:2:\"id\";s:3:\"430\";s:5:\"title\";s:19:\"Church Light Footer\";s:5:\"alias\";s:19:\"Church-Light-Footer\";s:3:\"zip\";s:29:\"packs/Church-Light-Footer.zip\";s:3:\"uid\";s:32:\"a168772865fd5dcf6229c9c6a49dff73\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:395;a:26:{s:2:\"id\";s:3:\"431\";s:5:\"title\";s:25:\"Rockable Website Template\";s:5:\"alias\";s:25:\"rockable-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:33:\"rockable-website-template-package\";s:3:\"img\";s:38:\"packages/rockable-website-template.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:396;a:26:{s:2:\"id\";s:3:\"432\";s:5:\"title\";s:13:\"Rockable Menu\";s:5:\"alias\";s:13:\"rockable-menu\";s:3:\"zip\";s:23:\"packs/rockable-menu.zip\";s:3:\"uid\";s:32:\"92d18f7ff38f22ff411a4ef4d9f54934\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:397;a:26:{s:2:\"id\";s:3:\"433\";s:5:\"title\";s:13:\"Rockable Hero\";s:5:\"alias\";s:13:\"rockable-hero\";s:3:\"zip\";s:23:\"packs/rockable-hero.zip\";s:3:\"uid\";s:32:\"ba16b28d6bde95910cbce572bb251208\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:398;a:26:{s:2:\"id\";s:3:\"434\";s:5:\"title\";s:15:\"Rockable Lineup\";s:5:\"alias\";s:15:\"rockable-lineup\";s:3:\"zip\";s:25:\"packs/rockable-lineup.zip\";s:3:\"uid\";s:32:\"6631980112805533a0d328c37e56adbd\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:399;a:26:{s:2:\"id\";s:3:\"435\";s:5:\"title\";s:17:\"Rockable Lineup 2\";s:5:\"alias\";s:17:\"rockable-lineup-2\";s:3:\"zip\";s:27:\"packs/rockable-lineup-2.zip\";s:3:\"uid\";s:32:\"98bc41d982dc478edabff4aa99461dbc\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:400;a:26:{s:2:\"id\";s:3:\"436\";s:5:\"title\";s:22:\"Rockable Gallery Title\";s:5:\"alias\";s:22:\"rockable-gallery-title\";s:3:\"zip\";s:32:\"packs/rockable-gallery-title.zip\";s:3:\"uid\";s:32:\"da43a76f5bc77aa6efe158b00ab7cf0d\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:401;a:26:{s:2:\"id\";s:3:\"437\";s:5:\"title\";s:16:\"Rockable Gallery\";s:5:\"alias\";s:16:\"rockable-gallery\";s:3:\"zip\";s:26:\"packs/rockable-gallery.zip\";s:3:\"uid\";s:32:\"c12a144d6860bcf24e91d5b980ac22f1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:402;a:26:{s:2:\"id\";s:3:\"438\";s:5:\"title\";s:17:\"Rockable Sponsors\";s:5:\"alias\";s:17:\"rockable-sponsors\";s:3:\"zip\";s:27:\"packs/rockable-sponsors.zip\";s:3:\"uid\";s:32:\"1e40d4a810c23f8d5fe5cd5ca31ee20d\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:403;a:26:{s:2:\"id\";s:3:\"439\";s:5:\"title\";s:15:\"Rockable Footer\";s:5:\"alias\";s:15:\"rockable-footer\";s:3:\"zip\";s:25:\"packs/rockable-footer.zip\";s:3:\"uid\";s:32:\"a4a9952d5e56fc14366155e8ebfa432a\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:404;a:26:{s:2:\"id\";s:3:\"440\";s:5:\"title\";s:21:\"Rockable Detail Modal\";s:5:\"alias\";s:21:\"rockable-detail-modal\";s:3:\"zip\";s:31:\"packs/rockable-detail-modal.zip\";s:3:\"uid\";s:32:\"b51d918203ff7975a144a9f1be09f31b\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:405;a:26:{s:2:\"id\";s:3:\"441\";s:5:\"title\";s:23:\"Rockable Detail Modal 2\";s:5:\"alias\";s:23:\"rockable-detail-modal-2\";s:3:\"zip\";s:33:\"packs/rockable-detail-modal-2.zip\";s:3:\"uid\";s:32:\"dcf51ebb3d4a1dec94748a1e016c5ef7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:407;a:23:{s:2:\"id\";s:3:\"443\";s:5:\"title\";s:16:\"Isometric Slider\";s:5:\"alias\";s:16:\"isometric-slider\";s:3:\"zip\";s:20:\"isometric-slider.zip\";s:3:\"uid\";s:32:\"fb06051fcf6649a44f2292044e414a36\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/isometric-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">A colorful, isometric slider template with fully customizable colors and screen content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:408;a:25:{s:2:\"id\";s:3:\"444\";s:5:\"title\";s:26:\"Woo Commerce Slider Static\";s:5:\"alias\";s:26:\"woo-commerce-slider-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"woo-commerce-slider-static\";s:3:\"img\";s:39:\"packages/woo-commerce-slider-static.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:7:\"website\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:409;a:25:{s:2:\"id\";s:3:\"445\";s:5:\"title\";s:17:\"E-Commerce Slider\";s:5:\"alias\";s:17:\"E-Commerce-Slider\";s:3:\"zip\";s:27:\"packs/E-Commerce-Slider.zip\";s:3:\"uid\";s:32:\"1533cfd83c2ae122f23074e1ed77f256\";s:3:\"img\";s:28:\"E-Commerce-Slider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:410;a:25:{s:2:\"id\";s:3:\"446\";s:5:\"title\";s:23:\"E-Commerce Slider Modal\";s:5:\"alias\";s:23:\"E-Commerce-Slider-Modal\";s:3:\"zip\";s:33:\"packs/E-Commerce-Slider-Modal.zip\";s:3:\"uid\";s:32:\"825e05c3967515b92a75da017c68a863\";s:3:\"img\";s:34:\"E-Commerce-Slider-Modal/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:411;a:22:{s:2:\"id\";s:3:\"447\";s:5:\"title\";s:27:\"Woo Commerce Slider Dynamic\";s:5:\"alias\";s:27:\"Woo-Commerce-Slider-Dynamic\";s:3:\"zip\";s:31:\"Woo-Commerce-Slider-Dynamic.zip\";s:3:\"uid\";s:32:\"b8e2c64f3739e552c563c48c59f20fe7\";s:3:\"img\";s:38:\"Woo-Commerce-Slider-Dynamic/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:412;a:25:{s:2:\"id\";s:3:\"448\";s:5:\"title\";s:31:\"Blooming Event Florist Template\";s:5:\"alias\";s:31:\"blooming-event-florist-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"blooming-event-florist-template-package\";s:3:\"img\";s:52:\"packages/blooming-event-florist-template-package.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:413;a:26:{s:2:\"id\";s:3:\"449\";s:5:\"title\";s:15:\"Blooming Header\";s:5:\"alias\";s:15:\"blooming-header\";s:3:\"zip\";s:25:\"packs/blooming-header.zip\";s:3:\"uid\";s:32:\"aa2ee34fd8ed018945ba64e6913810e4\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:414;a:25:{s:2:\"id\";s:3:\"450\";s:5:\"title\";s:14:\"Blooming About\";s:5:\"alias\";s:14:\"blooming-about\";s:3:\"zip\";s:24:\"packs/blooming-about.zip\";s:3:\"uid\";s:32:\"dd7095e46fab2eb475d00480fd17a6ec\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:415;a:25:{s:2:\"id\";s:3:\"451\";s:5:\"title\";s:18:\"Blooming Portfolio\";s:5:\"alias\";s:18:\"blooming-portfolio\";s:3:\"zip\";s:28:\"packs/blooming-portfolio.zip\";s:3:\"uid\";s:32:\"c72ddcbb07b62982b8c21328a6383e22\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:416;a:25:{s:2:\"id\";s:3:\"452\";s:5:\"title\";s:22:\"Blooming Wedding Title\";s:5:\"alias\";s:22:\"blooming-wedding-title\";s:3:\"zip\";s:32:\"packs/blooming-wedding-title.zip\";s:3:\"uid\";s:32:\"4fcfb0b99289c12d014c67306bb7687b\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:417;a:25:{s:2:\"id\";s:3:\"453\";s:5:\"title\";s:25:\"Blooming Wedding Carousel\";s:5:\"alias\";s:25:\"blooming-wedding-carousel\";s:3:\"zip\";s:35:\"packs/blooming-wedding-carousel.zip\";s:3:\"uid\";s:32:\"1d1bb979dbfca8ba9d43da1c0f665339\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:418;a:25:{s:2:\"id\";s:3:\"454\";s:5:\"title\";s:21:\"Blooming Wedding Text\";s:5:\"alias\";s:21:\"blooming-wedding-text\";s:3:\"zip\";s:31:\"packs/blooming-wedding-text.zip\";s:3:\"uid\";s:32:\"326f2793294a739dd3aac3cc45332df8\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:419;a:25:{s:2:\"id\";s:3:\"455\";s:5:\"title\";s:22:\"Blooming Parties Title\";s:5:\"alias\";s:22:\"blooming-parties-title\";s:3:\"zip\";s:32:\"packs/blooming-parties-title.zip\";s:3:\"uid\";s:32:\"b47aae1b368d3c3d9017f260e6c6a547\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:420;a:25:{s:2:\"id\";s:3:\"456\";s:5:\"title\";s:25:\"Blooming Parties Carousel\";s:5:\"alias\";s:25:\"blooming-parties-carousel\";s:3:\"zip\";s:35:\"packs/blooming-parties-carousel.zip\";s:3:\"uid\";s:32:\"9f90a9da7b017aeee7f3b608cda066e6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:421;a:25:{s:2:\"id\";s:3:\"457\";s:5:\"title\";s:21:\"Blooming Parties Text\";s:5:\"alias\";s:21:\"blooming-parties-text\";s:3:\"zip\";s:31:\"packs/blooming-parties-text.zip\";s:3:\"uid\";s:32:\"66a47346cc639b8b9b9b5dfa1521b6ef\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:422;a:25:{s:2:\"id\";s:3:\"458\";s:5:\"title\";s:22:\"Blooming Funeral Title\";s:5:\"alias\";s:22:\"blooming-funeral-title\";s:3:\"zip\";s:32:\"packs/blooming-funeral-title.zip\";s:3:\"uid\";s:32:\"e9e77134472c33c56be442073f29d1fd\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:423;a:25:{s:2:\"id\";s:3:\"459\";s:5:\"title\";s:23:\"Blooming Funeral Slider\";s:5:\"alias\";s:23:\"blooming-funeral-slider\";s:3:\"zip\";s:33:\"packs/blooming-funeral-slider.zip\";s:3:\"uid\";s:32:\"d15090841c25c7c8f0e1b0987c0c0887\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:424;a:25:{s:2:\"id\";s:3:\"460\";s:5:\"title\";s:21:\"Blooming Funeral Text\";s:5:\"alias\";s:21:\"blooming-funeral-text\";s:3:\"zip\";s:31:\"packs/blooming-funeral-text.zip\";s:3:\"uid\";s:32:\"d7c80e246f31e3d2f4e5dc1656f133cc\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:425;a:25:{s:2:\"id\";s:3:\"461\";s:5:\"title\";s:16:\"Blooming Contact\";s:5:\"alias\";s:16:\"blooming-contact\";s:3:\"zip\";s:26:\"packs/blooming-contact.zip\";s:3:\"uid\";s:32:\"54280182bca86443e2648b3146f41e47\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:426;a:22:{s:2:\"id\";s:3:\"462\";s:5:\"title\";s:13:\"Particle Hero\";s:5:\"alias\";s:13:\"particle-hero\";s:3:\"zip\";s:17:\"particle-hero.zip\";s:3:\"uid\";s:32:\"3f422f4807bf9ef4cb15dade515dad00\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide6\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:120:\"<span class=\"ttm_content\">A Hero header module using the Particle Effect Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:427;a:22:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:17:\"Bubble Morph Hero\";s:5:\"alias\";s:17:\"bubble-morph-hero\";s:3:\"zip\";s:21:\"bubble-morph-hero.zip\";s:3:\"uid\";s:32:\"b47e6bcc1ae80393ff3f7388ed3b9f8f\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide5\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A Hero header module using the Bubble Morph Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:428;a:22:{s:2:\"id\";s:3:\"464\";s:5:\"title\";s:13:\"Parallax Hero\";s:5:\"alias\";s:13:\"parallax-hero\";s:3:\"zip\";s:17:\"parallax-hero.zip\";s:3:\"uid\";s:32:\"290e86534326ee118e96ae7ce0538fa2\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide4\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A parallax hero module with mouse move interaction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:429;a:22:{s:2:\"id\";s:3:\"465\";s:5:\"title\";s:10:\"Video Hero\";s:5:\"alias\";s:10:\"video-hero\";s:3:\"zip\";s:14:\"video-hero.zip\";s:3:\"uid\";s:32:\"f9e280015d3408bb0482e13fe753da8f\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:111:\"<span class=\"ttm_content\">A simple Hero header module with HTML5 video.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:430;a:22:{s:2:\"id\";s:3:\"466\";s:5:\"title\";s:14:\"Ken Burns Hero\";s:5:\"alias\";s:14:\"ken-burns-hero\";s:3:\"zip\";s:18:\"ken-burns-hero.zip\";s:3:\"uid\";s:32:\"d5f89e5f5b3991b995e2bfeb50cfe9f8\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A simple image background hero header module with a subtle Ken Burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:431;a:22:{s:2:\"id\";s:3:\"467\";s:5:\"title\";s:21:\"Basic Hero Collection\";s:5:\"alias\";s:21:\"basic-hero-collection\";s:3:\"zip\";s:25:\"basic-hero-collection.zip\";s:3:\"uid\";s:32:\"ff625c65e8aab4689fa56d5652279d51\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-hero-image-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A collection of WordPress Hero Headers with image, video, particles, parallax and more!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:432;a:22:{s:2:\"id\";s:3:\"468\";s:5:\"title\";s:19:\"Launching Very Soon\";s:5:\"alias\";s:19:\"launching-very-soon\";s:3:\"zip\";s:23:\"launching-very-soon.zip\";s:3:\"uid\";s:32:\"2da45cf2d9bec07e7183b3f7777986b9\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/launching-soon-countdown/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:166:\"<span class=\"ttm_content\">Rocket BOOST! A beautifully animated launching soon countdown module using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:433;a:22:{s:2:\"id\";s:3:\"469\";s:5:\"title\";s:18:\"Under Construction\";s:5:\"alias\";s:18:\"Under-Construction\";s:3:\"zip\";s:22:\"Under-Construction.zip\";s:3:\"uid\";s:32:\"4b12f9a82a5b48d45a707df93406eb5b\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/under-construction/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You will love this animated under construction landing page using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:434;a:22:{s:2:\"id\";s:3:\"470\";s:5:\"title\";s:15:\"Particle Effect\";s:5:\"alias\";s:15:\"Particle-Effect\";s:3:\"zip\";s:19:\"Particle-Effect.zip\";s:3:\"uid\";s:32:\"66cf4e514e83a6984903694fd587edb6\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/snow-particle-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">Get into a winter mood with our Snow Particle Scene for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:435;a:22:{s:2:\"id\";s:3:\"471\";s:5:\"title\";s:17:\"Particle Effect 2\";s:5:\"alias\";s:17:\"Particle-Effect-2\";s:3:\"zip\";s:21:\"Particle-Effect-2.zip\";s:3:\"uid\";s:32:\"303337c29a97a816ccecca7e5f0b5e20\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/cyber-particle-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">Amaze your website visitors with the cyber particle effect for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:436;a:25:{s:2:\"id\";s:3:\"472\";s:5:\"title\";s:22:\"Stark Website Template\";s:5:\"alias\";s:22:\"stark-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"stark-website-template-package\";s:3:\"img\";s:43:\"packages/stark-website-template-package.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:437;a:25:{s:2:\"id\";s:3:\"473\";s:5:\"title\";s:10:\"Stark Menu\";s:5:\"alias\";s:10:\"stark-menu\";s:3:\"zip\";s:20:\"packs/stark-menu.zip\";s:3:\"uid\";s:32:\"bb31150df180e784d76a1f5ea306bf05\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:87:\"offset=\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:438;a:25:{s:2:\"id\";s:3:\"474\";s:5:\"title\";s:12:\"Stark Header\";s:5:\"alias\";s:12:\"stark-header\";s:3:\"zip\";s:22:\"packs/stark-header.zip\";s:3:\"uid\";s:32:\"62bfca01bf6e33cfad81d8df06498299\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:93:\"offset=\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:439;a:26:{s:2:\"id\";s:3:\"475\";s:5:\"title\";s:13:\"Stark Content\";s:5:\"alias\";s:13:\"stark-content\";s:3:\"zip\";s:23:\"packs/stark-content.zip\";s:3:\"uid\";s:32:\"4577ca760133eb5d894c46f212f6eefb\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"6\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:440;a:25:{s:2:\"id\";s:3:\"476\";s:5:\"title\";s:14:\"Stark Carousel\";s:5:\"alias\";s:14:\"stark-carousel\";s:3:\"zip\";s:24:\"packs/stark-carousel.zip\";s:3:\"uid\";s:32:\"de63336d333eeff10eccfd5d9741e6c9\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"1\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:441;a:26:{s:2:\"id\";s:3:\"477\";s:5:\"title\";s:15:\"Stark Portfolio\";s:5:\"alias\";s:15:\"stark-portfolio\";s:3:\"zip\";s:25:\"packs/stark-portfolio.zip\";s:3:\"uid\";s:32:\"99fcf3df65f8471fe30bec1bf0c2350d\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"5\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:442;a:25:{s:2:\"id\";s:3:\"478\";s:5:\"title\";s:22:\"Stark Portfolio Detail\";s:5:\"alias\";s:22:\"stark-portfolio-detail\";s:3:\"zip\";s:32:\"packs/stark-portfolio-detail.zip\";s:3:\"uid\";s:32:\"7484fc54f81daec07c93e992216310ce\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:443;a:25:{s:2:\"id\";s:3:\"479\";s:5:\"title\";s:13:\"Stark Contact\";s:5:\"alias\";s:13:\"stark-contact\";s:3:\"zip\";s:23:\"packs/stark-contact.zip\";s:3:\"uid\";s:32:\"8d704226b7093123a9d9faf424da6c35\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"2\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:444;a:26:{s:2:\"id\";s:3:\"480\";s:5:\"title\";s:12:\"Stark Footer\";s:5:\"alias\";s:12:\"stark-footer\";s:3:\"zip\";s:22:\"packs/stark-footer.zip\";s:3:\"uid\";s:32:\"e7132dc158e7dcdb4ef5b3a1aa00208a\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:114:\"offset=\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"3\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:445;a:25:{s:2:\"id\";s:3:\"481\";s:5:\"title\";s:16:\"Stark Newsletter\";s:5:\"alias\";s:16:\"stark-newsletter\";s:3:\"zip\";s:26:\"packs/stark-newsletter.zip\";s:3:\"uid\";s:32:\"bb76ddd68dbe6bda5ece7e4227a51413\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:33:\"usage=\"modal\" modal=\"s:#contact;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:446;a:22:{s:2:\"id\";s:3:\"482\";s:5:\"title\";s:15:\"Big Summer Sale\";s:5:\"alias\";s:15:\"big-summer-sale\";s:3:\"zip\";s:19:\"big-summer-sale.zip\";s:3:\"uid\";s:32:\"a6779fa7109763209d234f9cf2e766c6\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/big-summer-sale-shop-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:447;a:23:{s:2:\"id\";s:3:\"483\";s:5:\"title\";s:18:\"Traveller Carousel\";s:5:\"alias\";s:18:\"traveller-carousel\";s:3:\"zip\";s:22:\"traveller-carousel.zip\";s:3:\"uid\";s:32:\"185344ed6236bea2906a79035d1d5702\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/travel-blog-carousel/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A travel blog carousel with interesting parallax and ken burns effects!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:263:\"<span class=\"ttm_content\">Note that the content visible on all slides can be edited on the \"global layers\" slide.<br/>Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:448;a:22:{s:2:\"id\";s:3:\"484\";s:5:\"title\";s:16:\"Project Carousel\";s:5:\"alias\";s:16:\"project-carousel\";s:3:\"zip\";s:20:\"project-carousel.zip\";s:3:\"uid\";s:32:\"49c85ad406da943bdd25f08fd6496748\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/project-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A project carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:449;a:22:{s:2:\"id\";s:3:\"485\";s:5:\"title\";s:13:\"News Carousel\";s:5:\"alias\";s:13:\"news-carousel\";s:3:\"zip\";s:17:\"news-carousel.zip\";s:3:\"uid\";s:32:\"76f5b939150092a30038f161084140ae\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/news-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A news carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:450;a:26:{s:2:\"id\";s:3:\"486\";s:5:\"title\";s:29:\"Story Blocks Website Template\";s:5:\"alias\";s:29:\"story-blocks-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"story-blocks-website-template-package\";s:3:\"img\";s:50:\"packages/story-blocks-website-template-package.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:451;a:26:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:10:\"Story Menu\";s:5:\"alias\";s:10:\"story-menu\";s:3:\"zip\";s:20:\"packs/story-menu.zip\";s:3:\"uid\";s:32:\"1f2f7cd91480f15cff8e7100f788c650\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:452;a:26:{s:2:\"id\";s:3:\"488\";s:5:\"title\";s:12:\"Story Header\";s:5:\"alias\";s:12:\"story-header\";s:3:\"zip\";s:22:\"packs/story-header.zip\";s:3:\"uid\";s:32:\"e1a5ad5018a24ccdc71c2863edfe775e\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:453;a:26:{s:2:\"id\";s:3:\"489\";s:5:\"title\";s:13:\"Story Block 1\";s:5:\"alias\";s:13:\"story-block-1\";s:3:\"zip\";s:23:\"packs/story-block-1.zip\";s:3:\"uid\";s:32:\"2a9fee97dcf477e36d048af8a902f47a\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:454;a:26:{s:2:\"id\";s:3:\"490\";s:5:\"title\";s:15:\"Story Content 1\";s:5:\"alias\";s:15:\"story-content-1\";s:3:\"zip\";s:25:\"packs/story-content-1.zip\";s:3:\"uid\";s:32:\"6773614bbce543b83a0d2b2ad8facc96\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:455;a:26:{s:2:\"id\";s:3:\"491\";s:5:\"title\";s:13:\"Story Block 2\";s:5:\"alias\";s:13:\"story-block-2\";s:3:\"zip\";s:23:\"packs/story-block-2.zip\";s:3:\"uid\";s:32:\"2e708e3cebab57ca20b228ffba426ce7\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:456;a:26:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:13:\"Story Block 3\";s:5:\"alias\";s:13:\"story-block-3\";s:3:\"zip\";s:23:\"packs/story-block-3.zip\";s:3:\"uid\";s:32:\"7156cf069f65644faf90122dab451231\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:457;a:26:{s:2:\"id\";s:3:\"493\";s:5:\"title\";s:15:\"Story Content 2\";s:5:\"alias\";s:15:\"story-content-2\";s:3:\"zip\";s:25:\"packs/story-content-2.zip\";s:3:\"uid\";s:32:\"1223cd77d1f36d69e69ce50223e16ea7\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:458;a:26:{s:2:\"id\";s:3:\"494\";s:5:\"title\";s:13:\"Story Block 4\";s:5:\"alias\";s:13:\"story-block-4\";s:3:\"zip\";s:23:\"packs/story-block-4.zip\";s:3:\"uid\";s:32:\"85ac48e8e8231d2c38206cba4e7ebb68\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:459;a:26:{s:2:\"id\";s:3:\"495\";s:5:\"title\";s:15:\"Story Content 3\";s:5:\"alias\";s:15:\"story-content-3\";s:3:\"zip\";s:25:\"packs/story-content-3.zip\";s:3:\"uid\";s:32:\"82cac52f3ba79c0559fe0ad0cdf9d3b2\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:460;a:22:{s:2:\"id\";s:3:\"442\";s:5:\"title\";s:27:\"Real Estate Showcase Slider\";s:5:\"alias\";s:27:\"real-estate-showcase-slider\";s:3:\"zip\";s:31:\"Real-Estate-Showcase-Slider.zip\";s:3:\"uid\";s:32:\"486b2bbe296722e70421731e3c05711b\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">An elegant showcase for your real estate & realtor website. Flexible and customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:461;a:22:{s:2:\"id\";s:3:\"497\";s:5:\"title\";s:18:\"Food Delivery Hero\";s:5:\"alias\";s:13:\"food-delivery\";s:3:\"zip\";s:17:\"food-delivery.zip\";s:3:\"uid\";s:32:\"992e9b22ff43227a655eea341835d04c\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";s:7:\"preview\";s:62:\"https://www.sliderrevolution.com/templates/food-delivery-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:342:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:462;a:22:{s:2:\"id\";s:3:\"498\";s:5:\"title\";s:25:\"Slider With Illustrations\";s:5:\"alias\";s:25:\"slider-with-illustrations\";s:3:\"zip\";s:29:\"slider-with-illustrations.zip\";s:3:\"uid\";s:32:\"ebc24280b669f26734c7fdd8b5683e9f\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/slider-with-illustrations/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:463;a:25:{s:2:\"id\";s:3:\"499\";s:5:\"title\";s:31:\"Zen Technology Website Template\";s:5:\"alias\";s:31:\"zen-technology-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"zen-technology-website-template-package\";s:3:\"img\";s:52:\"packages/zen-technology-website-template-package.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:464;a:26:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:465;a:25:{s:2:\"id\";s:3:\"501\";s:5:\"title\";s:10:\"Zen Header\";s:5:\"alias\";s:10:\"zen-header\";s:3:\"zip\";s:20:\"packs/zen-header.zip\";s:3:\"uid\";s:32:\"13d3cdde05308616fda7e2920a29e006\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:466;a:25:{s:2:\"id\";s:3:\"502\";s:5:\"title\";s:9:\"Zen About\";s:5:\"alias\";s:9:\"zen-about\";s:3:\"zip\";s:19:\"packs/zen-about.zip\";s:3:\"uid\";s:32:\"d50d4f9b43e025fa99503b9a4eec6551\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:467;a:25:{s:2:\"id\";s:3:\"503\";s:5:\"title\";s:12:\"Zen Features\";s:5:\"alias\";s:12:\"zen-features\";s:3:\"zip\";s:22:\"packs/zen-features.zip\";s:3:\"uid\";s:32:\"f4f7f500fae57b1b55adace13f030778\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:468;a:25:{s:2:\"id\";s:3:\"504\";s:5:\"title\";s:9:\"Zen Video\";s:5:\"alias\";s:9:\"zen-video\";s:3:\"zip\";s:19:\"packs/zen-video.zip\";s:3:\"uid\";s:32:\"fa83df1b45b795174770b1b0155e89f3\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:469;a:25:{s:2:\"id\";s:3:\"505\";s:5:\"title\";s:11:\"Zen Pricing\";s:5:\"alias\";s:11:\"zen-pricing\";s:3:\"zip\";s:21:\"packs/zen-pricing.zip\";s:3:\"uid\";s:32:\"921f8e5c156d9027f6ae8f1c5e426251\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:470;a:25:{s:2:\"id\";s:3:\"506\";s:5:\"title\";s:22:\"Zen Testimonials Title\";s:5:\"alias\";s:22:\"zen-testimonials-title\";s:3:\"zip\";s:32:\"packs/zen-testimonials-title.zip\";s:3:\"uid\";s:32:\"d9aeeb596c0455ddd564a60a2d449b17\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:471;a:25:{s:2:\"id\";s:3:\"507\";s:5:\"title\";s:16:\"Zen Testimonials\";s:5:\"alias\";s:16:\"zen-testimonials\";s:3:\"zip\";s:26:\"packs/zen-testimonials.zip\";s:3:\"uid\";s:32:\"5a0e0141599c63828e4b99e3bc863366\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:472;a:25:{s:2:\"id\";s:3:\"508\";s:5:\"title\";s:10:\"Zen Footer\";s:5:\"alias\";s:10:\"zen-footer\";s:3:\"zip\";s:20:\"packs/zen-footer.zip\";s:3:\"uid\";s:32:\"47fb8604e2aafa8cfc97f5af75fda911\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:473;a:22:{s:2:\"id\";s:3:\"509\";s:5:\"title\";s:24:\"Paintbrush Effect Add-on\";s:5:\"alias\";s:17:\"Paintbrush-Effect\";s:3:\"zip\";s:21:\"Paintbrush-Effect.zip\";s:3:\"uid\";s:32:\"b934d1376df026f0ff45447de17b5ee9\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/paintbrush-effect-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:179:\"<span class=\"ttm_content\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:338:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:474;a:25:{s:2:\"id\";s:3:\"510\";s:5:\"title\";s:29:\"Photographer Website Template\";s:5:\"alias\";s:29:\"photographer-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"photographer-website-template-package\";s:3:\"img\";s:50:\"packages/photographer-website-template-package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:475;a:25:{s:2:\"id\";s:3:\"511\";s:5:\"title\";s:19:\"Photographer Header\";s:5:\"alias\";s:19:\"Photographer-Header\";s:3:\"zip\";s:29:\"packs/Photographer-Header.zip\";s:3:\"uid\";s:32:\"22de8b3b1eeca5d0d1087791a28cc641\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:476;a:25:{s:2:\"id\";s:3:\"512\";s:5:\"title\";s:27:\"Photographer Welcome Screen\";s:5:\"alias\";s:27:\"Photographer-Welcome-Screen\";s:3:\"zip\";s:37:\"packs/Photographer-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"8de63df079ad8b7c0aa7bf164bd5fd8f\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:477;a:25:{s:2:\"id\";s:3:\"513\";s:5:\"title\";s:21:\"Photographer Showcase\";s:5:\"alias\";s:21:\"Photographer-Showcase\";s:3:\"zip\";s:31:\"packs/Photographer-Showcase.zip\";s:3:\"uid\";s:32:\"8b2c7a1541465f77e829a9ac58926359\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:478;a:25:{s:2:\"id\";s:3:\"514\";s:5:\"title\";s:22:\"Photographer Portfolio\";s:5:\"alias\";s:22:\"Photographer-Portfolio\";s:3:\"zip\";s:32:\"packs/Photographer-Portfolio.zip\";s:3:\"uid\";s:32:\"ba5cc502a9505725ef169eaf4852d10f\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:479;a:25:{s:2:\"id\";s:3:\"515\";s:5:\"title\";s:21:\"Photographer Contacts\";s:5:\"alias\";s:21:\"Photographer-Contacts\";s:3:\"zip\";s:31:\"packs/Photographer-Contacts.zip\";s:3:\"uid\";s:32:\"6ac142733cd260b5d5d3cdce30885074\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:480;a:25:{s:2:\"id\";s:3:\"516\";s:5:\"title\";s:19:\"Photographer Footer\";s:5:\"alias\";s:19:\"Photographer-Footer\";s:3:\"zip\";s:29:\"packs/Photographer-Footer.zip\";s:3:\"uid\";s:32:\"5fae568a988d072fb14b66cc2732ea46\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:481;a:25:{s:2:\"id\";s:3:\"517\";s:5:\"title\";s:18:\"Photographer Modal\";s:5:\"alias\";s:18:\"Photographer-Modal\";s:3:\"zip\";s:28:\"packs/Photographer-Modal.zip\";s:3:\"uid\";s:32:\"e6b47a765ad19bce4726540ff7211c07\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:482;a:22:{s:2:\"id\";s:3:\"496\";s:5:\"title\";s:21:\"Animated Mini Website\";s:5:\"alias\";s:12:\"mini-website\";s:3:\"zip\";s:16:\"mini-website.zip\";s:3:\"uid\";s:32:\"cc6c0a3b0f933a88c43e2be0fa397c1c\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";s:7:\"preview\";s:56:\"https://www.sliderrevolution.com/templates/mini-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:483;a:23:{s:2:\"id\";s:3:\"518\";s:5:\"title\";s:25:\"Black Friday Scroll Video\";s:5:\"alias\";s:25:\"black-friday-scroll-video\";s:3:\"zip\";s:29:\"black-friday-scroll-video.zip\";s:3:\"uid\";s:32:\"a6a4ab2e2f703aaee0a1e6121881bdd8\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/black-friday-scroll-video/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:370:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:485;a:25:{s:2:\"id\";s:3:\"520\";s:5:\"title\";s:12:\"Charity Menu\";s:5:\"alias\";s:12:\"charity-menu\";s:3:\"zip\";s:22:\"packs/charity-menu.zip\";s:3:\"uid\";s:32:\"77794a39041c7f128de3b5ad9b8e7d0d\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:486;a:25:{s:2:\"id\";s:3:\"521\";s:5:\"title\";s:14:\"Charity Header\";s:5:\"alias\";s:14:\"charity-header\";s:3:\"zip\";s:24:\"packs/charity-header.zip\";s:3:\"uid\";s:32:\"36096787d4ed62942cbd48f6a57e9d4f\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:86:\" offset=\"t:90px,80px,70px,70px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:487;a:25:{s:2:\"id\";s:3:\"522\";s:5:\"title\";s:15:\"Charity Mission\";s:5:\"alias\";s:15:\"charity-mission\";s:3:\"zip\";s:25:\"packs/charity-mission.zip\";s:3:\"uid\";s:32:\"8c5cd67e3eb51c0ca3e571408ac8e97b\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:488;a:25:{s:2:\"id\";s:3:\"523\";s:5:\"title\";s:13:\"Charity Funds\";s:5:\"alias\";s:13:\"charity-funds\";s:3:\"zip\";s:23:\"packs/charity-funds.zip\";s:3:\"uid\";s:32:\"10da554c7529ef91965e1618a04b410b\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:489;a:25:{s:2:\"id\";s:3:\"524\";s:5:\"title\";s:15:\"Charity Success\";s:5:\"alias\";s:15:\"charity-success\";s:3:\"zip\";s:25:\"packs/charity-success.zip\";s:3:\"uid\";s:32:\"0c35448c1905272606e87447886a348e\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:490;a:25:{s:2:\"id\";s:3:\"525\";s:5:\"title\";s:15:\"Charity Stories\";s:5:\"alias\";s:15:\"charity-stories\";s:3:\"zip\";s:25:\"packs/charity-stories.zip\";s:3:\"uid\";s:32:\"f277f145d9f9c3f0033bb8ceffeb4c9f\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:491;a:25:{s:2:\"id\";s:3:\"526\";s:5:\"title\";s:16:\"Charity Worldmap\";s:5:\"alias\";s:16:\"charity-worldmap\";s:3:\"zip\";s:26:\"packs/charity-worldmap.zip\";s:3:\"uid\";s:32:\"9e00cbac269b92cb24fd3230297f4685\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:492;a:25:{s:2:\"id\";s:3:\"527\";s:5:\"title\";s:19:\"Charity Large Image\";s:5:\"alias\";s:19:\"charity-large-image\";s:3:\"zip\";s:29:\"packs/charity-large-image.zip\";s:3:\"uid\";s:32:\"fa927036c2b14622832106fa987bc8e7\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:493;a:25:{s:2:\"id\";s:3:\"528\";s:5:\"title\";s:16:\"Charity Sponsors\";s:5:\"alias\";s:16:\"charity-sponsors\";s:3:\"zip\";s:26:\"packs/charity-sponsors.zip\";s:3:\"uid\";s:32:\"efd087bc3fa3915139af9e93d47ee295\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:494;a:25:{s:2:\"id\";s:3:\"529\";s:5:\"title\";s:12:\"Charity Help\";s:5:\"alias\";s:12:\"charity-help\";s:3:\"zip\";s:22:\"packs/charity-help.zip\";s:3:\"uid\";s:32:\"4f3571c0b27f061648c9ff95b1a3f718\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:495;a:25:{s:2:\"id\";s:3:\"530\";s:5:\"title\";s:14:\"Charity Footer\";s:5:\"alias\";s:14:\"charity-footer\";s:3:\"zip\";s:24:\"packs/charity-footer.zip\";s:3:\"uid\";s:32:\"9340fa48c56635a8a781cc37c4bf538c\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:496;a:22:{s:2:\"id\";s:3:\"531\";s:5:\"title\";s:21:\"Cinematic Hero Titles\";s:5:\"alias\";s:21:\"cinematic-hero-titles\";s:3:\"zip\";s:25:\"cinematic-hero-titles.zip\";s:3:\"uid\";s:32:\"51a59c54bb97c274092d22dbf4f6085e\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";s:7:\"preview\";s:65:\"https://www.sliderrevolution.com/templates/cinematic-hero-titles/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:199:\"<span class=\"ttm_content\">The \"Cinematic Hero Titles\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:497;a:23:{s:2:\"id\";s:3:\"532\";s:5:\"title\";s:23:\"Design DNA Scroll Video\";s:5:\"alias\";s:23:\"design-dna-scroll-video\";s:3:\"zip\";s:27:\"design-dna-scroll-video.zip\";s:3:\"uid\";s:32:\"39180fc9f7a07e50832fc1a68fb4eba2\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/design-dna-scroll-video/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:544:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:498;a:22:{s:2:\"id\";s:3:\"533\";s:5:\"title\";s:27:\"Food Delivery Lottie Scroll\";s:5:\"alias\";s:27:\"food-delivery-lottie-scroll\";s:3:\"zip\";s:31:\"food-delivery-lottie-scroll.zip\";s:3:\"uid\";s:32:\"5dfbfac45c5df7702238ba1b43afe8f6\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/food-delivery-lottie-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:500;a:25:{s:2:\"id\";s:3:\"535\";s:5:\"title\";s:20:\"Food Recipe Carousel\";s:5:\"alias\";s:20:\"food-recipe-carousel\";s:3:\"zip\";s:30:\"packs/food-recipe-carousel.zip\";s:3:\"uid\";s:32:\"6ba9695ba1a22a6e99f96431d8fb01e8\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:501;a:25:{s:2:\"id\";s:3:\"536\";s:5:\"title\";s:17:\"Food Recipe Modal\";s:5:\"alias\";s:17:\"food-recipe-modal\";s:3:\"zip\";s:27:\"packs/food-recipe-modal.zip\";s:3:\"uid\";s:32:\"1c5b2e959cd973efc5c1887a3a4279f3\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:502;a:25:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:26:\"Charity Non-Profit-Website\";s:5:\"alias\";s:26:\"charity-non-profit-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"charity-non-profit-website\";s:3:\"img\";s:47:\"packages/charity-non-profit-website-package.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:503;a:25:{s:2:\"id\";s:3:\"534\";s:5:\"title\";s:29:\"Food Recipe Carousel Template\";s:5:\"alias\";s:29:\"food-recipe-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"food-recipe-carousel-template\";s:3:\"img\";s:50:\"packages/food-recipe-carousel-template-package.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Showcase your cooking recipes with the easy to use \"Food Recipe Carousel\" template. Clicking the titles opens up a detail view!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:504;a:25:{s:2:\"id\";s:3:\"537\";s:5:\"title\";s:27:\"Corporate Carousel Template\";s:5:\"alias\";s:27:\"corporate-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"corporate-carousel-template\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/corporate-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:14:10\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:505;a:26:{s:2:\"id\";s:3:\"538\";s:5:\"title\";s:18:\"Corporate Carousel\";s:5:\"alias\";s:18:\"corporate-carousel\";s:3:\"zip\";s:28:\"packs/corporate-carousel.zip\";s:3:\"uid\";s:32:\"30dea0e333913cb5ebbf8dded8c3a839\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:26:51\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:506;a:25:{s:2:\"id\";s:3:\"539\";s:5:\"title\";s:18:\"Corporate Lightbox\";s:5:\"alias\";s:18:\"corporate-lightbox\";s:3:\"zip\";s:28:\"packs/corporate-lightbox.zip\";s:3:\"uid\";s:32:\"832c277bfc5a288c0dffd784e4041265\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:34:36\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:507;a:25:{s:2:\"id\";s:3:\"540\";s:5:\"title\";s:23:\"Cyber Carousel Template\";s:5:\"alias\";s:23:\"cyber-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"cyber-carousel-template\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:40:25\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:508;a:26:{s:2:\"id\";s:3:\"541\";s:5:\"title\";s:14:\"Cyber Carousel\";s:5:\"alias\";s:14:\"cyber-carousel\";s:3:\"zip\";s:24:\"packs/cyber-carousel.zip\";s:3:\"uid\";s:32:\"b5ef41c7f498bd1dccf8224bfbade718\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:42:44\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:509;a:25:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:23:\"Cyber Carousel Lightbox\";s:5:\"alias\";s:23:\"cyber-carousel-lightbox\";s:3:\"zip\";s:33:\"packs/cyber-carousel-lightbox.zip\";s:3:\"uid\";s:32:\"cb91abeed0555dfcafe849c37e7c9c32\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:50:15\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:510;a:25:{s:2:\"id\";s:3:\"543\";s:5:\"title\";s:16:\"Woo Carousel One\";s:5:\"alias\";s:24:\"woocommerce-carousel-one\";s:3:\"zip\";s:28:\"woocommerce-carousel-one.zip\";s:3:\"uid\";s:32:\"df0a99cef3981ecb608dff4ed573a493\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:02:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:511;a:25:{s:2:\"id\";s:3:\"544\";s:5:\"title\";s:23:\"Woo Carousel One Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-one-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-one-static.zip\";s:3:\"uid\";s:32:\"5c955a3850369e79b1e18921306ac1df\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:05:02\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:512;a:25:{s:2:\"id\";s:3:\"545\";s:5:\"title\";s:16:\"Woo Carousel Two\";s:5:\"alias\";s:24:\"woocommerce-carousel-two\";s:3:\"zip\";s:28:\"woocommerce-carousel-two.zip\";s:3:\"uid\";s:32:\"fdd797d8e98a9138f5563b68b95ebe1c\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:06:57\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:513;a:25:{s:2:\"id\";s:3:\"546\";s:5:\"title\";s:23:\"Woo Carousel Two Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-two-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-two-static.zip\";s:3:\"uid\";s:32:\"2f3bfb1dfa99647426ce906f10dfc480\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:16:15\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:514;a:25:{s:2:\"id\";s:3:\"547\";s:5:\"title\";s:18:\"Woo Feature Slider\";s:5:\"alias\";s:26:\"woocommerce-feature-slider\";s:3:\"zip\";s:30:\"woocommerce-feature-slider.zip\";s:3:\"uid\";s:32:\"c8aa1f551065eeffc752f2d8daef6db1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:19:13\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:515;a:25:{s:2:\"id\";s:3:\"548\";s:5:\"title\";s:25:\"Woo Feature Slider Static\";s:5:\"alias\";s:33:\"woocommerce-feature-slider-static\";s:3:\"zip\";s:37:\"woocommerce-feature-slider-static.zip\";s:3:\"uid\";s:32:\"2f29e8fd101c799480152a7911b33ca6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">A static content slider Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:20:57\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:516;a:22:{s:2:\"id\";s:3:\"549\";s:5:\"title\";s:17:\"Woo Liquid Slider\";s:5:\"alias\";s:17:\"woo-liquid-slider\";s:3:\"zip\";s:21:\"woo-liquid-slider.zip\";s:3:\"uid\";s:32:\"9f455f73675a73dbefe820288e994f27\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:236:\"<span class=\"ttm_content\">A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:23:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:517;a:22:{s:2:\"id\";s:3:\"550\";s:5:\"title\";s:24:\"Woo Liquid Slider Static\";s:5:\"alias\";s:32:\"woocommerce-liquid-slider-static\";s:3:\"zip\";s:36:\"woocommerce-liquid-slider-static.zip\";s:3:\"uid\";s:32:\"5848192fea46ffee95a91aa531848e19\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \"non-static\" version.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:24:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:518;a:25:{s:2:\"id\";s:3:\"551\";s:5:\"title\";s:15:\"Woo Slider Pack\";s:5:\"alias\";s:15:\"woo-slider-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:15:\"woo-slider-pack\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:9:\"postbased\";i:3;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:34:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:519;a:25:{s:2:\"id\";s:3:\"552\";s:5:\"title\";s:22:\"Woo Slider Pack Static\";s:5:\"alias\";s:22:\"woo-slider-pack-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"woo-slider-pack-static\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:39:21\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:520;a:22:{s:2:\"id\";s:3:\"553\";s:5:\"title\";s:24:\"Creative Hero Collection\";s:5:\"alias\";s:24:\"creative-hero-collection\";s:3:\"zip\";s:28:\"creative-hero-collection.zip\";s:3:\"uid\";s:32:\"e20126d93d081055e5ff3f6981b971fa\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/creative-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:245:\"<span class=\"ttm_content\">A fantastic intro presentation for almost any website. If you want to use a single slide as a hero, simply drag it to the first position and set the layout of the module to \"scene\".</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:22:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:521;a:22:{s:2:\"id\";s:3:\"554\";s:5:\"title\";s:12:\"Photo Slider\";s:5:\"alias\";s:19:\"photographer-slider\";s:3:\"zip\";s:23:\"photographer-slider.zip\";s:3:\"uid\";s:32:\"e00104cff231e2aaeb149b3c63e78a5e\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";s:7:\"preview\";s:80:\"https://www.sliderrevolution.com/templates/photographer-and-videographer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">A great module for any photographer/videographer who wants to display their portfolio in an engaging way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:25:31\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:522;a:22:{s:2:\"id\";s:3:\"555\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:17:\"realestate-slider\";s:3:\"zip\";s:21:\"realestate-slider.zip\";s:3:\"uid\";s:32:\"596effabfef768f0371cba2b1fdd0c1d\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">Showcase your clients real estate offerings with this clean and convincing presentation.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-02-23 10:45:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:523;a:22:{s:2:\"id\";s:3:\"556\";s:5:\"title\";s:19:\"Saas Product Slider\";s:5:\"alias\";s:19:\"saas-product-slider\";s:3:\"zip\";s:23:\"saas-product-slider.zip\";s:3:\"uid\";s:32:\"3cf7809058f383425c5409aa1204335f\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";s:7:\"preview\";s:63:\"https://www.sliderrevolution.com/templates/saas-product-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">Present your digital SaaS product with a modern design and stunning animations.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:349:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:49:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:524;a:26:{s:2:\"id\";s:3:\"557\";s:5:\"title\";s:27:\"Cinematic Wildlife Template\";s:5:\"alias\";s:27:\"cinematic-wildlife-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"cinematic-wildlife-template\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:45:38\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:525;a:26:{s:2:\"id\";s:3:\"558\";s:5:\"title\";s:25:\"Cinematic Wildlife Slider\";s:5:\"alias\";s:25:\"cinematic-wildlife-slider\";s:3:\"zip\";s:35:\"packs/cinematic-wildlife-slider.zip\";s:3:\"uid\";s:32:\"a37b04e221a845d6d446f4d70e815b87\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:47:01\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:526;a:26:{s:2:\"id\";s:3:\"559\";s:5:\"title\";s:24:\"Cinematic Wildlife Modal\";s:5:\"alias\";s:24:\"cinematic-wildlife-modal\";s:3:\"zip\";s:34:\"packs/cinematic-wildlife-modal.zip\";s:3:\"uid\";s:32:\"636a6885199f684ad743167ceea70dc4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:50:56\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:527;a:23:{s:2:\"id\";s:3:\"560\";s:5:\"title\";s:32:\"Gaming Stats Presentation Slider\";s:5:\"alias\";s:32:\"gaming-stats-presentation-slider\";s:3:\"zip\";s:36:\"gaming-stats-presentation-slider.zip\";s:3:\"uid\";s:32:\"988df5050f2a45a108ef32518a725bf8\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/charts-addon-presentation-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.4.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">Create interactive presentations and showcase statistics with unique and customizable charts</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:159:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-04-29 09:50:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:528;a:23:{s:2:\"id\";s:3:\"561\";s:5:\"title\";s:31:\"Coffee Shop Split Screen Slider\";s:5:\"alias\";s:15:\"coffee-flavours\";s:3:\"zip\";s:19:\"coffee-flavours.zip\";s:3:\"uid\";s:32:\"63726447a6a614d8f53fbf6024fd3033\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/coffee-shop-split-screen-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">The animated elements and clean layout make this slider an eye-catcher for your coffee shop. With it\'s easy customizability, this template is perfect for showcasing any type of product!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:09:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:529;a:22:{s:2:\"id\";s:3:\"562\";s:5:\"title\";s:32:\"Modern Portfolio Showreel Slider\";s:5:\"alias\";s:15:\"showreel-slider\";s:3:\"zip\";s:19:\"showreel-slider.zip\";s:3:\"uid\";s:32:\"bced29a585e67153a1ed7608ddcdb69d\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/modern-portfolio-showreel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:216:\"<span class=\"ttm_content\">Showcase beautiful videos and photography with this clean looking slider with modern UI and effective typography. Perfect for any creative professional.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:14:43\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:530;a:23:{s:2:\"id\";s:3:\"563\";s:5:\"title\";s:23:\"Visual Art Forms Slider\";s:5:\"alias\";s:16:\"visual-art-forms\";s:3:\"zip\";s:20:\"visual-art-forms.zip\";s:3:\"uid\";s:32:\"4d57a5abf20bc4a615fe30837ac3ce1a\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/visual-art-forms-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:180:\"<span class=\"ttm_content\">Present just about anything with this highly flexible and modern looking slider, no matter what industry you are in.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:18:19\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:531;a:22:{s:2:\"id\";s:3:\"564\";s:5:\"title\";s:22:\"Background Effect Hero\";s:5:\"alias\";s:14:\"bg-effect-hero\";s:3:\"zip\";s:18:\"bg-effect-hero.zip\";s:3:\"uid\";s:32:\"55bb0fa5ac66ad84423fa704b701e1df\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";s:7:\"preview\";s:77:\"https://www.sliderrevolution.com/templates/background-effect-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:224:\"<span class=\"ttm_content\">If you really want to stun your visitors with gorgeous gradients and dreamy transitions, <br />\r\nthis slider / hero module is exactly what you were looking for.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:697:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:45:50\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:532;a:22:{s:2:\"id\";s:3:\"565\";s:5:\"title\";s:26:\"Cyber Glitch Effect Slider\";s:5:\"alias\";s:9:\"cyberfunk\";s:3:\"zip\";s:13:\"cyberfunk.zip\";s:3:\"uid\";s:32:\"44fdc7e13074bdc46500972cd708c739\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/cyber-glitch-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Dive into a futuristic, neon, cyber world with this amazing slider template featuring <br />\r\nglitch effect transitions and a typewriter effect.<br />\r\nThe custom navigation skin can be customized easily!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:355:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:51:54\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:533;a:23:{s:2:\"id\";s:3:\"566\";s:5:\"title\";s:30:\"Motion Blur Portfolio Showcase\";s:5:\"alias\";s:21:\"motion-blur-portfolio\";s:3:\"zip\";s:25:\"motion-blur-portfolio.zip\";s:3:\"uid\";s:32:\"28086bed49cfb241c7d40f91cd64e970\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";s:7:\"preview\";s:74:\"https://www.sliderrevolution.com/templates/motion-blur-portfolio-showcase/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:238:\"<span class=\"ttm_content\">This clean showcase slider with an optional video popup is using a fancy motion blur transition!<br />\r\nPacked with a logo and menu its ready to visualize your wildest ideas.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:56:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:534;a:23:{s:2:\"id\";s:3:\"567\";s:5:\"title\";s:25:\"Portal Effect Hero Slider\";s:5:\"alias\";s:18:\"portal-effect-hero\";s:3:\"zip\";s:22:\"portal-effect-hero.zip\";s:3:\"uid\";s:32:\"87f5b64e44dc5b75bc1c7adbeb287ee9\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/portal-effect-hero-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:282:\"<span class=\"ttm_content\">This slider module can function as an impressive landing page or a striking product presentation anywhere on your WordPress website.<br />\r\nThe design already includes elements like a logo, menu and social media icons.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:08:18\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:535;a:22:{s:2:\"id\";s:3:\"568\";s:5:\"title\";s:22:\"Winery Timeline Slider\";s:5:\"alias\";s:15:\"winery-timeline\";s:3:\"zip\";s:19:\"winery-timeline.zip\";s:3:\"uid\";s:32:\"d2ccdaf0a5c73db21e8e8a3f6712e8bd\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/winery-timeline-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:247:\"<span class=\"ttm_content\">Tell your own story with this fabulous timeline slider.<br />\r\nLogo and social icon design elements are already included if you want to use this template as a standalone landing page!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:13:39\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:536;a:25:{s:2:\"id\";s:3:\"569\";s:5:\"title\";s:25:\"Smart Living One Pager V1\";s:5:\"alias\";s:25:\"smart-living-one-pager-v1\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:33:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:537;a:25:{s:2:\"id\";s:3:\"570\";s:5:\"title\";s:25:\"Smart Living One Pager V2\";s:5:\"alias\";s:25:\"smart-living-one-pager-v2\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v2\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:38:21\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:538;a:25:{s:2:\"id\";s:3:\"571\";s:5:\"title\";s:25:\"Smart Living One Pager V3\";s:5:\"alias\";s:25:\"smart-living-one-pager-v3\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v3\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:39:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:539;a:25:{s:2:\"id\";s:3:\"572\";s:5:\"title\";s:6:\"Menu 1\";s:5:\"alias\";s:6:\"menu-1\";s:3:\"zip\";s:16:\"packs/menu-1.zip\";s:3:\"uid\";s:32:\"6e5038d711f2ee8326c79c3a9e06ded4\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:41:12\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:540;a:26:{s:2:\"id\";s:3:\"573\";s:5:\"title\";s:6:\"Hero 1\";s:5:\"alias\";s:14:\"onepage-hero-1\";s:3:\"zip\";s:24:\"packs/onepage-hero-1.zip\";s:3:\"uid\";s:32:\"9f5fec6956bd2e1e1ecc553a8b7471b0\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:48:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:541;a:25:{s:2:\"id\";s:3:\"574\";s:5:\"title\";s:7:\"About 1\";s:5:\"alias\";s:6:\"about1\";s:3:\"zip\";s:16:\"packs/about1.zip\";s:3:\"uid\";s:32:\"fc4962093f61124101c05ceb506fa5d2\";s:3:\"img\";s:17:\"about1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:50:54\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:542;a:25:{s:2:\"id\";s:3:\"575\";s:5:\"title\";s:10:\"Services 1\";s:5:\"alias\";s:9:\"services1\";s:3:\"zip\";s:19:\"packs/services1.zip\";s:3:\"uid\";s:32:\"08f72a81aeb9afdaa57f544e4331a6da\";s:3:\"img\";s:20:\"services1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:52:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:543;a:25:{s:2:\"id\";s:3:\"576\";s:5:\"title\";s:10:\"Projects 1\";s:5:\"alias\";s:9:\"projects1\";s:3:\"zip\";s:19:\"packs/projects1.zip\";s:3:\"uid\";s:32:\"11ff60e82fcf47a6a2c6bdce3cc1d8f2\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:01:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:544;a:25:{s:2:\"id\";s:3:\"577\";s:5:\"title\";s:8:\"Footer 1\";s:5:\"alias\";s:8:\"footer-1\";s:3:\"zip\";s:18:\"packs/footer-1.zip\";s:3:\"uid\";s:32:\"947fac99689a985c7f0f7dfec4311f6b\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:05:00\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:545;a:25:{s:2:\"id\";s:3:\"578\";s:5:\"title\";s:24:\"Explainer Block 1 Part 1\";s:5:\"alias\";s:23:\"explainer-block-1-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part1.zip\";s:3:\"uid\";s:32:\"731980bef0ea06263d05b286b5a75dfe\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:06:07\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:546;a:25:{s:2:\"id\";s:3:\"579\";s:5:\"title\";s:24:\"Explainer Block 1 Part 2\";s:5:\"alias\";s:23:\"explainer-block-1-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part2.zip\";s:3:\"uid\";s:32:\"ded730f13551f78b9a87b159b72d8ce8\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:07:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:547;a:25:{s:2:\"id\";s:3:\"580\";s:5:\"title\";s:16:\"Projects Modal 1\";s:5:\"alias\";s:16:\"projects-modal-1\";s:3:\"zip\";s:26:\"packs/projects-modal-1.zip\";s:3:\"uid\";s:32:\"b17af2f4e21786711a2ce4ac0c4436ad\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:08:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:548;a:25:{s:2:\"id\";s:3:\"581\";s:5:\"title\";s:6:\"Menu 2\";s:5:\"alias\";s:6:\"menu-2\";s:3:\"zip\";s:16:\"packs/menu-2.zip\";s:3:\"uid\";s:32:\"a8d103f753ee50d4f81aa4100df8b7f9\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:20:20\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:549;a:25:{s:2:\"id\";s:3:\"582\";s:5:\"title\";s:6:\"Hero 2\";s:5:\"alias\";s:6:\"hero-2\";s:3:\"zip\";s:16:\"packs/hero-2.zip\";s:3:\"uid\";s:32:\"7e56900f8c4b6e12435b70e141accaa8\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 15:27:59\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:550;a:25:{s:2:\"id\";s:3:\"583\";s:5:\"title\";s:10:\"Services 2\";s:5:\"alias\";s:10:\"services-2\";s:3:\"zip\";s:20:\"packs/services-2.zip\";s:3:\"uid\";s:32:\"da2d588b291a7754096ac77746ba1da5\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:29:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:551;a:25:{s:2:\"id\";s:3:\"584\";s:5:\"title\";s:7:\"About 2\";s:5:\"alias\";s:7:\"about-2\";s:3:\"zip\";s:17:\"packs/about-2.zip\";s:3:\"uid\";s:32:\"8e9e84d1aec08de6e099473683bf0e57\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:30:15\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:552;a:25:{s:2:\"id\";s:3:\"585\";s:5:\"title\";s:10:\"Projects 2\";s:5:\"alias\";s:10:\"projects-2\";s:3:\"zip\";s:20:\"packs/projects-2.zip\";s:3:\"uid\";s:32:\"99bc6ca75f6d5e018701aef5f5b22b27\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:32:06\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:553;a:25:{s:2:\"id\";s:3:\"586\";s:5:\"title\";s:8:\"Footer 2\";s:5:\"alias\";s:7:\"footer2\";s:3:\"zip\";s:17:\"packs/footer2.zip\";s:3:\"uid\";s:32:\"99df496d2fd9e897a2debb66958cb610\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:34:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:554;a:25:{s:2:\"id\";s:3:\"587\";s:5:\"title\";s:24:\"Explainer Block 2 Part 1\";s:5:\"alias\";s:23:\"explainer-block-2-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part1.zip\";s:3:\"uid\";s:32:\"aee4d41e9cf5f91ad69bfbe96d1dc1b8\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:35:48\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:555;a:25:{s:2:\"id\";s:3:\"588\";s:5:\"title\";s:24:\"Explainer Block 2 Part 2\";s:5:\"alias\";s:23:\"explainer-block-2-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part2.zip\";s:3:\"uid\";s:32:\"b12ac82484c5d2609994978f95026057\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:37:05\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:556;a:25:{s:2:\"id\";s:3:\"589\";s:5:\"title\";s:16:\"Projects Modal 2\";s:5:\"alias\";s:16:\"projects-modal-2\";s:3:\"zip\";s:26:\"packs/projects-modal-2.zip\";s:3:\"uid\";s:32:\"ac164d7043a8958ae2931e4be54bf56e\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:38:22\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:557;a:25:{s:2:\"id\";s:3:\"590\";s:5:\"title\";s:6:\"Menu 3\";s:5:\"alias\";s:6:\"menu-3\";s:3:\"zip\";s:16:\"packs/menu-3.zip\";s:3:\"uid\";s:32:\"7300529d564642c76e61890cf0ef57cf\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:42:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:558;a:25:{s:2:\"id\";s:3:\"591\";s:5:\"title\";s:6:\"Hero 3\";s:5:\"alias\";s:6:\"hero-3\";s:3:\"zip\";s:16:\"packs/hero-3.zip\";s:3:\"uid\";s:32:\"08db05794abf4e6c10788cbd423f92b2\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:46:06\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:559;a:25:{s:2:\"id\";s:3:\"592\";s:5:\"title\";s:7:\"About 3\";s:5:\"alias\";s:7:\"about-3\";s:3:\"zip\";s:17:\"packs/about-3.zip\";s:3:\"uid\";s:32:\"dac01fc9b9d664f271e1ea6a1bbb850c\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:47:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:560;a:25:{s:2:\"id\";s:3:\"593\";s:5:\"title\";s:10:\"Services 3\";s:5:\"alias\";s:10:\"services-3\";s:3:\"zip\";s:20:\"packs/services-3.zip\";s:3:\"uid\";s:32:\"4bad1c4a765cef7d93d3c7e2a0e76b83\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:50:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:561;a:25:{s:2:\"id\";s:3:\"594\";s:5:\"title\";s:10:\"Projects 3\";s:5:\"alias\";s:10:\"projects-3\";s:3:\"zip\";s:20:\"packs/projects-3.zip\";s:3:\"uid\";s:32:\"e3337a84122e580679474dea8d7bf37c\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:51:31\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:562;a:25:{s:2:\"id\";s:3:\"595\";s:5:\"title\";s:8:\"Footer 3\";s:5:\"alias\";s:8:\"footer-3\";s:3:\"zip\";s:18:\"packs/footer-3.zip\";s:3:\"uid\";s:32:\"524f4445a5565bf3ef1dcd7b2f0228cc\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:53:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:563;a:25:{s:2:\"id\";s:3:\"596\";s:5:\"title\";s:24:\"Explainer Block 3 Part 1\";s:5:\"alias\";s:23:\"explainer-block-3-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part1.zip\";s:3:\"uid\";s:32:\"b1469a955fecb4e1d645a604804716de\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:54:20\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:564;a:25:{s:2:\"id\";s:3:\"597\";s:5:\"title\";s:24:\"Explainer Block 3 Part 2\";s:5:\"alias\";s:23:\"explainer-block-3-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part2.zip\";s:3:\"uid\";s:32:\"3faa6f1dc248ef2ba3d50cc60db557b1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:55:33\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:565;a:25:{s:2:\"id\";s:3:\"598\";s:5:\"title\";s:16:\"Projects Modal 3\";s:5:\"alias\";s:16:\"projects-modal-3\";s:3:\"zip\";s:26:\"packs/projects-modal-3.zip\";s:3:\"uid\";s:32:\"b22bb57c30e75bf7d7ba7d240a21b3fe\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:57:05\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:566;a:22:{s:2:\"id\";s:3:\"599\";s:5:\"title\";s:25:\"Urban Street Skate Slider\";s:5:\"alias\";s:25:\"urban-street-skate-slider\";s:3:\"zip\";s:29:\"urban-street-skate-slider.zip\";s:3:\"uid\";s:32:\"14b18e98ac51aa922a264b74518d6f25\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Create catchy presentations with sleek transitions, using this urban-themed slider. A template that\'s perfectly suitable for showcasing products and marketing campaigns!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-14 18:54:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:567;a:22:{s:2:\"id\";s:3:\"600\";s:5:\"title\";s:34:\"Fast Food Burger Restaurant Slider\";s:5:\"alias\";s:13:\"yummy-burgers\";s:3:\"zip\";s:17:\"yummy-burgers.zip\";s:3:\"uid\";s:32:\"3de3520af809748281f3aaa16d8c2222\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";s:7:\"preview\";s:78:\"https://www.sliderrevolution.com/templates/fast-food-burger-restaurant-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">Make your clients feel hungry with this tasty looking slider, featuring jaw dropping animations and smooth interactions! Easily customizable for showcasing food related products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-11 12:47:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:568;a:25:{s:2:\"id\";s:3:\"601\";s:5:\"title\";s:37:\"Tattoo Event Website Template Package\";s:5:\"alias\";s:37:\"tattoo-event-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"tattoo-event-website-template-package\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-12 14:37:06\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:569;a:25:{s:2:\"id\";s:3:\"602\";s:5:\"title\";s:24:\"Tattoo Event Hero Slider\";s:5:\"alias\";s:24:\"tattoo-event-hero-slider\";s:3:\"zip\";s:34:\"packs/tattoo-event-hero-slider.zip\";s:3:\"uid\";s:32:\"3a4eb0f2f1de6b9a644d626c4472208b\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:11:21\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:570;a:25:{s:2:\"id\";s:3:\"603\";s:5:\"title\";s:18:\"Tattoo Event About\";s:5:\"alias\";s:18:\"tattoo-event-about\";s:3:\"zip\";s:28:\"packs/tattoo-event-about.zip\";s:3:\"uid\";s:32:\"ae8aaf2b1aeb84036c35ac3d4a178ed6\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:14:35\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:571;a:25:{s:2:\"id\";s:3:\"604\";s:5:\"title\";s:20:\"Tattoo Event Artists\";s:5:\"alias\";s:20:\"tattoo-event-artists\";s:3:\"zip\";s:30:\"packs/tattoo-event-artists.zip\";s:3:\"uid\";s:32:\"e11b6508214396963c856afc1b604e58\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:16:36\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:572;a:25:{s:2:\"id\";s:3:\"605\";s:5:\"title\";s:21:\"Tattoo Event Schedule\";s:5:\"alias\";s:21:\"tattoo-event-schedule\";s:3:\"zip\";s:31:\"packs/tattoo-event-schedule.zip\";s:3:\"uid\";s:32:\"73be4b953a719fc9abfadc447e88b906\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:19:17\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:573;a:25:{s:2:\"id\";s:3:\"606\";s:5:\"title\";s:17:\"Tattoo Event News\";s:5:\"alias\";s:17:\"tattoo-event-news\";s:3:\"zip\";s:27:\"packs/tattoo-event-news.zip\";s:3:\"uid\";s:32:\"80eafaaaa2f1844cac7c5c1efb0912d1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:21:56\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:574;a:25:{s:2:\"id\";s:3:\"607\";s:5:\"title\";s:19:\"Tattoo Event Footer\";s:5:\"alias\";s:19:\"tattoo-event-footer\";s:3:\"zip\";s:29:\"packs/tattoo-event-footer.zip\";s:3:\"uid\";s:32:\"0c16f7290794f2e26566c8a8ca8f6493\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:23:18\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:575;a:25:{s:2:\"id\";s:3:\"608\";s:5:\"title\";s:24:\"Startup Website Template\";s:5:\"alias\";s:24:\"startup-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"startup-website-template\";s:3:\"img\";s:37:\"packages/startup-website-template.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:29:34\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:576;a:25:{s:2:\"id\";s:3:\"609\";s:5:\"title\";s:12:\"Startup Menu\";s:5:\"alias\";s:12:\"startup-menu\";s:3:\"zip\";s:22:\"packs/startup-menu.zip\";s:3:\"uid\";s:32:\"10b7853c05d47a99e61a68ec7ef0a0ea\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:32:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:577;a:25:{s:2:\"id\";s:3:\"610\";s:5:\"title\";s:12:\"Startup Hero\";s:5:\"alias\";s:12:\"startup-hero\";s:3:\"zip\";s:22:\"packs/startup-hero.zip\";s:3:\"uid\";s:32:\"7a41e68bac8bc7f937b7eb957e01eb11\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:34:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:578;a:25:{s:2:\"id\";s:3:\"611\";s:5:\"title\";s:13:\"Startup About\";s:5:\"alias\";s:13:\"startup-about\";s:3:\"zip\";s:23:\"packs/startup-about.zip\";s:3:\"uid\";s:32:\"22a816ba986476a36fef3887ff4d1ea1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:36:55\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:10:\"zindex=\"0\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:579;a:25:{s:2:\"id\";s:3:\"612\";s:5:\"title\";s:18:\"Startup Features 1\";s:5:\"alias\";s:18:\"startup-features-1\";s:3:\"zip\";s:28:\"packs/startup-features-1.zip\";s:3:\"uid\";s:32:\"4b0b7b8773ba30bdc58b862442155faa\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:39:11\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:580;a:25:{s:2:\"id\";s:3:\"613\";s:5:\"title\";s:18:\"Startup Features 2\";s:5:\"alias\";s:18:\"startup-features-2\";s:3:\"zip\";s:28:\"packs/startup-features-2.zip\";s:3:\"uid\";s:32:\"7a686556ca8c4355fea931b3e946a3d0\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:40:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:10:\"zindex=\"0\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:581;a:25:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:12:\"Startup Team\";s:5:\"alias\";s:12:\"startup-team\";s:3:\"zip\";s:22:\"packs/startup-team.zip\";s:3:\"uid\";s:32:\"7969f1f556fd276ec04dcbf49144d2f8\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:42:12\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:582;a:25:{s:2:\"id\";s:3:\"615\";s:5:\"title\";s:15:\"Startup Reviews\";s:5:\"alias\";s:15:\"startup-reviews\";s:3:\"zip\";s:25:\"packs/startup-reviews.zip\";s:3:\"uid\";s:32:\"4d5253028165c237cda5f42c3f721c09\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:43:42\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:583;a:25:{s:2:\"id\";s:3:\"616\";s:5:\"title\";s:11:\"Startup CTA\";s:5:\"alias\";s:11:\"startup-cta\";s:3:\"zip\";s:21:\"packs/startup-cta.zip\";s:3:\"uid\";s:32:\"bfe7cb2a94dd8292179e16a986cf2748\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:45:02\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:584;a:25:{s:2:\"id\";s:3:\"617\";s:5:\"title\";s:14:\"Startup Footer\";s:5:\"alias\";s:14:\"startup-footer\";s:3:\"zip\";s:24:\"packs/startup-footer.zip\";s:3:\"uid\";s:32:\"d73466042d108699d366bf9cab2beaa8\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:46:31\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:585;a:25:{s:2:\"id\";s:3:\"618\";s:5:\"title\";s:19:\"Startup Video Modal\";s:5:\"alias\";s:19:\"startup-video-modal\";s:3:\"zip\";s:29:\"packs/startup-video-modal.zip\";s:3:\"uid\";s:32:\"5fd53a8ad93456a152c25079f6437377\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:47:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:586;a:25:{s:2:\"id\";s:3:\"619\";s:5:\"title\";s:32:\"Christmas Gift Card Landing Page\";s:5:\"alias\";s:32:\"christmas-gift-card-landing-page\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"christmas-gift-card-landing-page\";s:3:\"img\";s:45:\"packages/christmas-gift-card-landing-page.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:509:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:05:33\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:587;a:25:{s:2:\"id\";s:3:\"620\";s:5:\"title\";s:24:\"Christmas Landing Page 1\";s:5:\"alias\";s:24:\"christmas-landing-page-1\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-1.zip\";s:3:\"uid\";s:32:\"17eb656138d076ca1dc2d9fa5cefb1b8\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:509:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:08:37\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:588;a:25:{s:2:\"id\";s:3:\"621\";s:5:\"title\";s:24:\"Christmas Landing Page 2\";s:5:\"alias\";s:24:\"christmas-landing-page-2\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-2.zip\";s:3:\"uid\";s:32:\"ea0d2cfdba50c8060c66ee7b979c3b83\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:10:54\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:589;a:22:{s:2:\"id\";s:3:\"622\";s:5:\"title\";s:12:\"Image Slider\";s:5:\"alias\";s:12:\"image-slider\";s:3:\"zip\";s:16:\"image-slider.zip\";s:3:\"uid\";s:32:\"85a8fcfa9220809176bd3d6bc70b4abf\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/newborn-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:213:\"<span class=\"ttm_content\">Get an instant \"wow\" from your visitors with this sleek background image slider, that includes a clean UI for easy navigation and smooth transitions.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-04 09:45:41\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:590;a:25:{s:2:\"id\";s:3:\"294\";s:5:\"title\";s:25:\"Minimal Portfolio Website\";s:5:\"alias\";s:25:\"minimal-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"minimal-portfolio-website\";s:3:\"img\";s:38:\"packages/minimal_portfolio_package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:591;a:22:{s:2:\"id\";s:3:\"623\";s:5:\"title\";s:17:\"Full Width Slider\";s:5:\"alias\";s:17:\"full-width-slider\";s:3:\"zip\";s:21:\"full-width-slider.zip\";s:3:\"uid\";s:32:\"e2792804e7a1f3ec9806f6a6225a559d\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/delicious-full-width-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">We\'ve prepared something tasty for you. A delicious looking, responsive full width slider, with a wide range of use cases and a plethora of smart, UI navigation options.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-10 11:40:04\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:592;a:25:{s:2:\"id\";s:3:\"624\";s:5:\"title\";s:20:\"App Website Template\";s:5:\"alias\";s:20:\"app-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"app-website-template\";s:3:\"img\";s:33:\"packages/app-website-template.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:22:53\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:593;a:25:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:16:\"App Website Menu\";s:5:\"alias\";s:16:\"app-website-menu\";s:3:\"zip\";s:26:\"packs/app-website-menu.zip\";s:3:\"uid\";s:32:\"c3c100db368c091d01852df9851b9840\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:26:14\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:594;a:25:{s:2:\"id\";s:3:\"626\";s:5:\"title\";s:16:\"App Website Hero\";s:5:\"alias\";s:16:\"app-website-hero\";s:3:\"zip\";s:26:\"packs/app-website-hero.zip\";s:3:\"uid\";s:32:\"4b42974b08f2923986932ed529974d6f\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:29:00\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:13:\" zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:595;a:25:{s:2:\"id\";s:3:\"627\";s:5:\"title\";s:20:\"App Download Buttons\";s:5:\"alias\";s:20:\"app-download-buttons\";s:3:\"zip\";s:30:\"packs/app-download-buttons.zip\";s:3:\"uid\";s:32:\"d5ecce65284cc95c506185e6f6291d55\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:31:22\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:596;a:25:{s:2:\"id\";s:3:\"628\";s:5:\"title\";s:17:\"App Website About\";s:5:\"alias\";s:17:\"app-website-about\";s:3:\"zip\";s:27:\"packs/app-website-about.zip\";s:3:\"uid\";s:32:\"984477b3ea7c943a7c6be78950754e3c\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:33:06\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:597;a:25:{s:2:\"id\";s:3:\"629\";s:5:\"title\";s:20:\"App Website Features\";s:5:\"alias\";s:20:\"app-website-features\";s:3:\"zip\";s:30:\"packs/app-website-features.zip\";s:3:\"uid\";s:32:\"206a0f73553c974ad86790fba6a13efd\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:35:08\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:598;a:25:{s:2:\"id\";s:3:\"630\";s:5:\"title\";s:21:\"App Website Video Cta\";s:5:\"alias\";s:21:\"app-website-video-cta\";s:3:\"zip\";s:31:\"packs/app-website-video-cta.zip\";s:3:\"uid\";s:32:\"19b2930f9cd9840dccbe94cb1cc435e2\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:36:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:599;a:25:{s:2:\"id\";s:3:\"631\";s:5:\"title\";s:23:\"App Website Screenshots\";s:5:\"alias\";s:23:\"app-website-screenshots\";s:3:\"zip\";s:33:\"packs/app-website-screenshots.zip\";s:3:\"uid\";s:32:\"94ce8eeecb7ffad62adc2d29b203f9d2\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:38:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:600;a:25:{s:2:\"id\";s:3:\"632\";s:5:\"title\";s:22:\"App Testimonials Title\";s:5:\"alias\";s:22:\"app-testimonials-title\";s:3:\"zip\";s:32:\"packs/app-testimonials-title.zip\";s:3:\"uid\";s:32:\"bea74fa6e180fe23007c3d215b1b0704\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:40:21\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:601;a:25:{s:2:\"id\";s:3:\"633\";s:5:\"title\";s:24:\"App Website Testimonials\";s:5:\"alias\";s:24:\"app-website-testimonials\";s:3:\"zip\";s:34:\"packs/app-website-testimonials.zip\";s:3:\"uid\";s:32:\"e7438a870ac1007da4c7821056d511fc\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:41:59\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:107:\" offset=\"t:-300px,-300px,-300px,-250px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\" zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:602;a:25:{s:2:\"id\";s:3:\"634\";s:5:\"title\";s:16:\"App Website Team\";s:5:\"alias\";s:16:\"app-website-team\";s:3:\"zip\";s:26:\"packs/app-website-team.zip\";s:3:\"uid\";s:32:\"d9013f2968e43f696f8cc33fa3524071\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:43:40\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:94:\" offset=\"t:-350px,-350px,-350px,-300px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:603;a:25:{s:2:\"id\";s:3:\"635\";s:5:\"title\";s:18:\"App Website Footer\";s:5:\"alias\";s:18:\"app-website-footer\";s:3:\"zip\";s:28:\"packs/app-website-footer.zip\";s:3:\"uid\";s:32:\"5e13126b929feb389f9e083f3476ec46\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:45:12\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:604;a:25:{s:2:\"id\";s:3:\"636\";s:5:\"title\";s:15:\"App Video Modal\";s:5:\"alias\";s:15:\"app-video-modal\";s:3:\"zip\";s:25:\"packs/app-video-modal.zip\";s:3:\"uid\";s:32:\"7fe8115d0b6158c90fe92d1144ed7b01\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:46:49\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:605;a:25:{s:2:\"id\";s:3:\"637\";s:5:\"title\";s:25:\"Testimonial Carousel Pack\";s:5:\"alias\";s:25:\"testimonial-carousel-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"testimonial-carousel-pack\";s:3:\"img\";s:38:\"packages/testimonial-carousel-pack.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:38:17\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:606;a:25:{s:2:\"id\";s:3:\"638\";s:5:\"title\";s:22:\"Testimonial Carousel 1\";s:5:\"alias\";s:22:\"testimonial-carousel-1\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-1.zip\";s:3:\"uid\";s:32:\"1cc1f92edb4edd47f880c0b4f77e343d\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:41:02\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:607;a:25:{s:2:\"id\";s:3:\"639\";s:5:\"title\";s:22:\"Testimonial Carousel 2\";s:5:\"alias\";s:22:\"testimonial-carousel-2\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-2.zip\";s:3:\"uid\";s:32:\"b6ad1675b8d14c0ccc63ffc01b221aac\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:43:25\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:608;a:25:{s:2:\"id\";s:3:\"640\";s:5:\"title\";s:22:\"Testimonial Carousel 3\";s:5:\"alias\";s:22:\"testimonial-carousel-3\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-3.zip\";s:3:\"uid\";s:32:\"cb4a72fb40fc400a71754f71b9bb2d6e\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:46:01\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:609;a:25:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:22:\"Testimonial Carousel 4\";s:5:\"alias\";s:22:\"testimonial-carousel-4\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-4.zip\";s:3:\"uid\";s:32:\"bfca98d6b4042b38df044e9e2a6ca983\";s:3:\"img\";s:33:\"testimonial-carousel-4/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:47:57\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:610;a:25:{s:2:\"id\";s:3:\"642\";s:5:\"title\";s:22:\"Testimonial Carousel 5\";s:5:\"alias\";s:22:\"testimonial-carousel-5\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-5.zip\";s:3:\"uid\";s:32:\"4a9b9c72b51628e1343adde9bff3915f\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:49:27\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:611;a:22:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:28:\"Deep Dive Ocean Water Effect\";s:5:\"alias\";s:9:\"deep-dive\";s:3:\"zip\";s:13:\"deep-dive.zip\";s:3:\"uid\";s:32:\"5cc0599857b0108fe4e76adc7fbf9a16\";s:3:\"img\";s:20:\"deep-dive/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/deep-dive-ocean-water-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">Take a dive into the ocean with this 3D Particles Animation template for Slider Revolution.<br>\r\nThe scroll-based interaction makes this hero module an absolute eye-catcher for any ocean-related website.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:23:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:612;a:22:{s:2:\"id\";s:3:\"644\";s:5:\"title\";s:22:\"Particle Wave Showcase\";s:5:\"alias\";s:22:\"particle-wave-showcase\";s:3:\"zip\";s:26:\"particle-wave-showcase.zip\";s:3:\"uid\";s:32:\"1c9ac477fd636078d1812d8d98060899\";s:3:\"img\";s:33:\"particle-wave-showcase/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/particle-wave-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:307:\"<span class=\"ttm_content\">Is your website missing that one unique design element to set it apart from your competition? The Particle Wave addon for Slider Revolution enables you to add interactive, 3D particles background animation effects that will amaze your clients!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:9:\"specialfx\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:30:08\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:613;a:22:{s:2:\"id\";s:3:\"645\";s:5:\"title\";s:17:\"Video Hero Header\";s:5:\"alias\";s:17:\"video-hero-header\";s:3:\"zip\";s:21:\"video-hero-header.zip\";s:3:\"uid\";s:32:\"f6a715d4b10e0746f7eb5100836ba1ab\";s:3:\"img\";s:28:\"video-hero-header/slide1.jpg\";s:7:\"preview\";s:61:\"https://www.sliderrevolution.com/templates/video-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">Get ahead with this modern, futuristic video hero header with colorful gradients and a polygon particle wave.<br>\r\nShowcase the highlights of your tech-related business website with a video button that demands to be clicked.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:33:10\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:614;a:22:{s:2:\"id\";s:3:\"646\";s:5:\"title\";s:28:\"Solar System Showcase Slider\";s:5:\"alias\";s:28:\"solar-system-showcase-slider\";s:3:\"zip\";s:32:\"solar-system-showcase-slider.zip\";s:3:\"uid\";s:32:\"40f7b26ea7f8228d40e8e9cf0f34b5e8\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/solar-system-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Want to amaze your users ? Look no further.  Showcase products, images or anything you can think of with this highly capable and easily customisable full screen slider. </span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:360:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:50:27\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:615;a:22:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:26:\"Optic Shop Showcase Slider\";s:5:\"alias\";s:26:\"Optic-shop-showcase-slider\";s:3:\"zip\";s:30:\"Optic-shop-showcase-slider.zip\";s:3:\"uid\";s:32:\"01509228c996ad45c2179d03654f499b\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/optic-shop-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This image slider is the perfect showcase for any optic shop, utilizing the blur effect in a brilliant way. It\'s not just made for your optic showcase but also a great fit for any modern product presentation.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-02-16 16:41:07\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:616;a:22:{s:2:\"id\";s:3:\"648\";s:5:\"title\";s:27:\"WordPress Charts And Graphs\";s:5:\"alias\";s:24:\"charts-template-showcase\";s:3:\"zip\";s:28:\"charts-template-showcase.zip\";s:3:\"uid\";s:32:\"4ae2fe61830f96c6c5b316368c1ad2c6\";s:3:\"img\";s:35:\"charts-template-showcase/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/wordpress-charts-and-graphs/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.17\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">Who says data has to look boring? With our WordPress charts addon, you can create eye-catching sliders and hero sections with interactive and stunning-looking charts.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:341:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-03 15:55:16\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:617;a:25:{s:2:\"id\";s:3:\"649\";s:5:\"title\";s:31:\"Fashion Website Slider Template\";s:5:\"alias\";s:31:\"fashion-website-slider-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"fashion-website-slider-template\";s:3:\"img\";s:35:\"packages/fashion-website-slider.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/fashion-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:00:36\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:618;a:25:{s:2:\"id\";s:3:\"650\";s:5:\"title\";s:22:\"Fashion Website Slider\";s:5:\"alias\";s:22:\"fashion-website-slider\";s:3:\"zip\";s:32:\"packs/fashion-website-slider.zip\";s:3:\"uid\";s:32:\"8fb8379f47346173fa0dd402dda37360\";s:3:\"img\";s:33:\"fashion-website-slider/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/fashion-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:04:56\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:619;a:25:{s:2:\"id\";s:3:\"651\";s:5:\"title\";s:28:\"Fashion Website Slider Modal\";s:5:\"alias\";s:28:\"fashion-website-slider-modal\";s:3:\"zip\";s:38:\"packs/fashion-website-slider-modal.zip\";s:3:\"uid\";s:32:\"788f34043b6a5fcbfa5fc1c3322fb502\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/fashion-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:08:21\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:620;a:22:{s:2:\"id\";s:3:\"652\";s:5:\"title\";s:24:\"Furniture Website Slider\";s:5:\"alias\";s:24:\"furniture-website-slider\";s:3:\"zip\";s:28:\"furniture-website-slider.zip\";s:3:\"uid\";s:32:\"8575493ed5fd1ee2e671e67479fdeccb\";s:3:\"img\";s:35:\"furniture-website-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/furniture-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Promote products or create stunning landing pages with the Furniture Website Slider. Each slide comes with a different layout that can be used as a hero module or on an individual section on your website.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-23 14:05:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:621;a:22:{s:2:\"id\";s:3:\"653\";s:5:\"title\";s:26:\"Fitness Gym Website Slider\";s:5:\"alias\";s:26:\"fitness-gym-website-slider\";s:3:\"zip\";s:30:\"fitness-gym-website-slider.zip\";s:3:\"uid\";s:32:\"86894d98e34a590e80a1d0cd3d7dc819\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/fitness-gym-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">Make your website visitors want to hit the gym once they see this fitness website slider. The background videos and unique, masked slide transitions make this module stand out!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-04-19 11:02:01\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:622;a:25:{s:2:\"id\";s:3:\"654\";s:5:\"title\";s:36:\"Ai & Robotics Webside Slider Package\";s:5:\"alias\";s:35:\"ai--robotics-webside-slider-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:35:\"ai--robotics-webside-slider-package\";s:3:\"img\";s:51:\"packages/ai-and-robotics-website-slider-package.jpg\";s:7:\"preview\";s:74:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:12:25\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;}i:623;a:25:{s:2:\"id\";s:3:\"655\";s:5:\"title\";s:28:\"Ai & Robotics Website Slider\";s:5:\"alias\";s:30:\"ai-and-robotics-website-slider\";s:3:\"zip\";s:40:\"packs/ai-and-robotics-website-slider.zip\";s:3:\"uid\";s:32:\"e40b7296d1519972029e9744a0c09b29\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide1.jpg\";s:7:\"preview\";s:74:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:16:48\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;}i:624;a:25:{s:2:\"id\";s:3:\"656\";s:5:\"title\";s:14:\"AI Video Modal\";s:5:\"alias\";s:14:\"ai-video-modal\";s:3:\"zip\";s:24:\"packs/ai-video-modal.zip\";s:3:\"uid\";s:32:\"aab36a599413b7e66dfdda8f517b47b1\";s:3:\"img\";s:25:\"ai-video-modal/slide1.jpg\";s:7:\"preview\";s:74:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:20:55\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;}i:625;a:23:{s:2:\"id\";s:3:\"657\";s:5:\"title\";s:33:\"Minimal Typography Website Slider\";s:5:\"alias\";s:33:\"minimal-typography-website-slider\";s:3:\"zip\";s:37:\"minimal-typography-website-slider.zip\";s:3:\"uid\";s:32:\"43cf63d6541d33b7d4e59350935d73bf\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide1.jpg\";s:7:\"preview\";s:77:\"https://www.sliderrevolution.com/templates/minimal-typography-website-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">Make the hero section on your website stand out with this minimal, typography-based hero slider, featuring cool parallax bubble effects and fluid slide transitions.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:9:\"specialfx\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-25 14:39:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:626;a:22:{s:2:\"id\";s:3:\"658\";s:5:\"title\";s:19:\"404 Page Collection\";s:5:\"alias\";s:19:\"404-page-collection\";s:3:\"zip\";s:23:\"404-page-collection.zip\";s:3:\"uid\";s:32:\"3f0b25b5e893b170536a498939465a1a\";s:3:\"img\";s:30:\"404-page-collection/slide1.jpg\";s:7:\"preview\";s:63:\"https://www.sliderrevolution.com/templates/404-page-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.21\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:167:\"<span class=\"ttm_content\">Show your lost website visitors a funny and lighthearted message with our 404 page template collection.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-05-04 11:30:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:627;a:22:{s:2:\"id\";s:3:\"659\";s:5:\"title\";s:24:\"eCommerce Product Slider\";s:5:\"alias\";s:21:\"ecommerce-sale-slider\";s:3:\"zip\";s:25:\"ecommerce-sale-slider.zip\";s:3:\"uid\";s:32:\"49ca4743090cddca705ee108eae967c5\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/ecommerce-product-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">So you have an eCommerce shop and are looking for the ultimate sales pitch on your landing page? Trying to convert your precious visitors into more sales? Look no further than our eCommerce Product Slider!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-05-17 14:22:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:628;a:22:{s:2:\"id\";s:3:\"660\";s:5:\"title\";s:19:\"Fashion Shop Slider\";s:5:\"alias\";s:19:\"fashion-shop-slider\";s:3:\"zip\";s:23:\"fashion-shop-slider.zip\";s:3:\"uid\";s:32:\"e488e9126dbe4a34c02c89a1115f4ff9\";s:3:\"img\";s:30:\"fashion-shop-slider/slide1.jpg\";s:7:\"preview\";s:63:\"https://www.sliderrevolution.com/templates/fashion-shop-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">Customize texts, images, and colors in seconds and have this beast of a shop slider running on your own website in no time.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-05-18 13:24:56\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:629;a:23:{s:2:\"id\";s:3:\"661\";s:5:\"title\";s:29:\"Lingerie Store Website Slider\";s:5:\"alias\";s:29:\"lingerie-store-website-slider\";s:3:\"zip\";s:33:\"lingerie-store-website-slider.zip\";s:3:\"uid\";s:32:\"7bdad27521b7c9b171b618dff2fa0315\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/lingerie-store-website-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">This hero slider also includes optional menu navigation and links, in case you want to use it as a standalone landing page.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-05-18 13:28:21\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}}s:6:\"slides\";a:610:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}s:15:\"distortionaddon\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"distortionaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"distortionaddon/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"distortionaddon/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"distortionaddon/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"distortionaddon/slide6.jpg\";}}s:9:\"clubflyer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";}}s:15:\"paintbrushaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"paintbrushaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"paintbrushaddon/slide3.jpg\";}}s:15:\"parallax_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";}}s:16:\"parallax_content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";}}s:15:\"parallax_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";}}s:12:\"le-chef-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";}}s:14:\"le-chef-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"le-chef-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"le-chef-header/slide3.jpg\";}}s:18:\"le-chef-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";}}s:12:\"le-chef-food\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";}}s:16:\"le-chef-la-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";}}s:14:\"le-chef-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";}}s:20:\"news-magazine-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"news-magazine-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"news-magazine-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"news-magazine-slider/slide4.jpg\";}}s:18:\"real-estate-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"real-estate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"real-estate-slider/slide3.jpg\";}}s:14:\"fashion-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fashion-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fashion-header/slide3.jpg\";}}s:13:\"seasonaloffer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";}}s:18:\"barber-shop-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";}}s:23:\"barber-shop-mobile-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";}}s:24:\"barber-shop-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";}}s:17:\"barber-shop-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";}}s:20:\"barber-shop-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";}}s:19:\"barber-shop-barbers\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";}}s:20:\"barber-shop-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";}}s:18:\"barber-shop-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";}}s:21:\"fitness-club-template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"fitness-club-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"fitness-club-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"fitness-club-template/slide4.jpg\";}}s:13:\"soccer-school\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"soccer-school/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"soccer-school/slide3.jpg\";}}s:19:\"music-band-template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"music-band-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"music-band-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"music-band-template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"music-band-template/slide5.jpg\";}}s:15:\"restaurant-menu\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"restaurant-menu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"restaurant-menu/slide3.jpg\";}}s:16:\"cinematic-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"cinematic-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"cinematic-slider/slide3.jpg\";}}s:17:\"3d-parallax-cubes\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide3.jpg\";}}s:13:\"medicare-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";}}s:15:\"medicare-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";}}s:14:\"medicare-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";}}s:18:\"medicare-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";}}s:17:\"medicare-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";}}s:16:\"medicare-doctors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";}}s:17:\"medicare-research\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"medicare-research/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"medicare-research/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"medicare-research/slide4.jpg\";}}s:18:\"medicare-whychoose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";}}s:16:\"medicare-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";}}s:15:\"medicare-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";}}s:11:\"coffee-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";}}s:13:\"coffee-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";}}s:17:\"coffee-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";}}s:12:\"coffee-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";}}s:13:\"coffee-teaser\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";}}s:13:\"coffee-findus\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";}}s:13:\"coffee-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";}}s:17:\"minimal-portfolio\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"minimal-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"minimal-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"minimal-portfolio/slide4.jpg\";}}s:23:\"minimal-portfolio-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide7.jpg\";}}s:11:\"angled-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";}}s:13:\"angled-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";}}s:11:\"angled-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";}}s:15:\"angled-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";}}s:14:\"angled-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";}}s:13:\"angled-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";}}s:20:\"angled-content-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"angled-content-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"angled-content-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"angled-content-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"angled-content-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"angled-content-modal/slide6.jpg\";}}s:13:\"big-bold-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-menu/slide1.jpg\";}}s:15:\"big-bold-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-header/slide1.jpg\";}}s:16:\"big-bold-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"big-bold-content/slide1.jpg\";}}s:13:\"big-bold-blog\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-blog/slide1.jpg\";}}s:18:\"big-bold-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"big-bold-highlight/slide1.jpg\";}}s:15:\"big-bold-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-footer/slide1.jpg\";}}s:7:\"Retouch\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"Retouch/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"Retouch/slide3.jpg\";}}s:11:\"tech-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"tech-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"tech-slider/slide3.jpg\";}}s:11:\"peak-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";}}s:10:\"peak-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";}}s:14:\"peak-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";}}s:11:\"peak-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";}}s:17:\"portfolio-welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";}}s:15:\"portfolio-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";}}s:21:\"portfolio-works-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";}}s:23:\"portfolio-works-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";}}s:18:\"portfolio-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";}}s:18:\"App-Studio-Welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";}}s:19:\"App-Studio-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";}}s:16:\"App-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";}}s:19:\"App-Studio-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";}}s:14:\"cube-animation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cube-animation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cube-animation/slide3.jpg\";}}s:10:\"basic-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";}}s:12:\"basic-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";}}s:13:\"basic-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";}}s:14:\"basic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-carousel/slide5.jpg\";}}s:13:\"basic-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";}}s:10:\"basic-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";}}s:17:\"basic-video-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";}}s:12:\"basic-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";}}s:14:\"basic-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:25:\"basic-lightbox/slide6.jpg\";}}s:13:\"nature-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"nature-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"nature-slider/slide3.jpg\";}}s:11:\"art-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"art-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"art-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"art-gallery/slide4.jpg\";}}s:19:\"Construction-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";}}s:17:\"Construction-Home\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Construction-Home/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Construction-Home/slide3.jpg\";}}s:21:\"Construction-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";}}s:20:\"Construction-History\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";}}s:21:\"Construction-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";}}s:21:\"Construction-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";}}s:21:\"404-Error-Space-Theme\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";}}s:17:\"landing-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";}}s:21:\"landing-page-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";}}s:20:\"landing-page-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";}}s:20:\"landing-page-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";}}s:25:\"landing-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";}}s:27:\"landing-page-call-to-action\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";}}s:17:\"landing-page-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";}}s:19:\"landing-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";}}s:24:\"landing-page-price-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";}}s:18:\"energy-drinks-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"energy-drinks-hero/slide1.jpg\";}}s:19:\"energy-drinks-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-about/slide1.jpg\";}}s:21:\"energy-drinks-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"energy-drinks-product/slide1.jpg\";}}s:23:\"energy-drinks-product-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-2/slide1.jpg\";}}s:23:\"energy-drinks-product-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-3/slide1.jpg\";}}s:19:\"energy-drinks-order\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-order/slide1.jpg\";}}s:20:\"energy-drinks-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"energy-drinks-footer/slide1.jpg\";}}s:19:\"energy-drinks-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-modal/slide1.jpg\";}}s:16:\"Corporate-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";}}s:24:\"Corporate-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";}}s:15:\"Corporate-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";}}s:19:\"Corporate-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";}}s:15:\"Corporate-Chart\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";}}s:14:\"Corporate-News\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:16:\"Corporate-Hiring\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:22:\"Corporate-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide3.jpg\";}}s:15:\"Corporate-Store\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";}}s:17:\"Corporate-Support\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";}}s:14:\"Corporate-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";}}s:33:\"Corporate-Selected-Projects-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";}}s:27:\"Corporate-Selected-Projects\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide7.jpg\";}}s:17:\"Corporate-Clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";}}s:20:\"Corporate-Text-Block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";}}s:20:\"Corporate-Mobile-App\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";}}s:18:\"Corporate-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";}}s:16:\"Corporate-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";}}s:23:\"Corporate-Scroll-To-Top\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";}}s:14:\"geometric-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-menu/slide1.jpg\";}}s:14:\"geometric-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-hero/slide1.jpg\";}}s:14:\"geometric-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-grid/slide1.jpg\";}}s:15:\"geometric-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-about/slide1.jpg\";}}s:15:\"geometric-texts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-texts/slide1.jpg\";}}s:18:\"geometric-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-services/slide1.jpg\";}}s:17:\"geometric-texts-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"geometric-texts-2/slide1.jpg\";}}s:22:\"geometric-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"geometric-testimonials/slide1.jpg\";}}s:16:\"geometric-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"geometric-footer/slide1.jpg\";}}s:18:\"geometric-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"geometric-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"geometric-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"geometric-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"geometric-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"geometric-lightbox/slide6.jpg\";}}s:11:\"brutal-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";}}s:11:\"brutal-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";}}s:12:\"brutal-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";}}s:16:\"brutal-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";}}s:15:\"brutal-projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-projects/slide4.jpg\";}}s:15:\"brutal-services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-services/slide4.jpg\";}}s:14:\"brutal-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";}}s:13:\"brutal-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";}}s:13:\"Church-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";}}s:22:\"Church-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide3.jpg\";}}s:12:\"Church-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";}}s:14:\"Church-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";}}s:20:\"Church-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";}}s:16:\"Church-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";}}s:13:\"Church-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";}}s:15:\"Church-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";}}s:13:\"Church-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";}}s:19:\"Church-Light-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";}}s:28:\"Church-Light-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide3.jpg\";}}s:18:\"Church-Light-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";}}s:20:\"Church-Light-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";}}s:26:\"Church-Light-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";}}s:22:\"Church-Light-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";}}s:19:\"Church-Light-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";}}s:21:\"Church-Light-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";}}s:19:\"Church-Light-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";}}s:13:\"rockable-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";}}s:13:\"rockable-hero\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"rockable-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"rockable-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"rockable-hero/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"rockable-hero/slide5.jpg\";}}s:15:\"rockable-lineup\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";}}s:17:\"rockable-lineup-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";}}s:22:\"rockable-gallery-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";}}s:16:\"rockable-gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"rockable-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"rockable-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"rockable-gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"rockable-gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"rockable-gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"rockable-gallery/slide7.jpg\";}}s:17:\"rockable-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";}}s:15:\"rockable-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";}}s:21:\"rockable-detail-modal\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}}s:23:\"rockable-detail-modal-2\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}}s:27:\"real-estate-showcase-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide3.jpg\";}}s:16:\"isometric-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"isometric-slider/slide3.jpg\";}}s:17:\"E-Commerce-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide3.jpg\";}}s:23:\"E-Commerce-Slider-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide3.jpg\";}}s:27:\"Woo-Commerce-Slider-Dynamic\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide3.jpg\";}}s:15:\"blooming-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";}}s:14:\"blooming-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";}}s:18:\"blooming-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";}}s:22:\"blooming-wedding-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";}}s:25:\"blooming-wedding-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide6.jpg\";}}s:21:\"blooming-wedding-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";}}s:22:\"blooming-parties-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";}}s:25:\"blooming-parties-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide6.jpg\";}}s:21:\"blooming-parties-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";}}s:22:\"blooming-funeral-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";}}s:23:\"blooming-funeral-slider\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide6.jpg\";}}s:21:\"blooming-funeral-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";}}s:16:\"blooming-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";}}s:13:\"particle-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";}}s:17:\"bubble-morph-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";}}s:13:\"parallax-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";}}s:10:\"video-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";}}s:14:\"ken-burns-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";}}s:21:\"basic-hero-collection\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"basic-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"basic-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"basic-hero-collection/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"basic-hero-collection/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"basic-hero-collection/slide6.jpg\";}}s:19:\"launching-very-soon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";}}s:18:\"Under-Construction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";}}s:15:\"Particle-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";}}s:17:\"Particle-Effect-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";}}s:10:\"stark-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";}}s:12:\"stark-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";}}s:13:\"stark-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";}}s:14:\"stark-carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"stark-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"stark-carousel/slide3.jpg\";}}s:15:\"stark-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";}}s:22:\"stark-portfolio-detail\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide6.jpg\";}}s:13:\"stark-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";}}s:12:\"stark-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";}}s:16:\"stark-newsletter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";}}s:15:\"big-summer-sale\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"big-summer-sale/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"big-summer-sale/slide3.jpg\";}}s:18:\"traveller-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"traveller-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"traveller-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"traveller-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"traveller-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"traveller-carousel/slide6.jpg\";}}s:16:\"project-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"project-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"project-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"project-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"project-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"project-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"project-carousel/slide7.jpg\";}}s:13:\"news-carousel\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"news-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"news-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"news-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"news-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:24:\"news-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:24:\"news-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:24:\"news-carousel/slide8.jpg\";}}s:10:\"story-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";}}s:12:\"story-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";}}s:13:\"story-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";}}s:15:\"story-content-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";}}s:13:\"story-block-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";}}s:13:\"story-block-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";}}s:15:\"story-content-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";}}s:13:\"story-block-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";}}s:15:\"story-content-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}s:19:\"Photographer-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";}}s:27:\"Photographer-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";}}s:21:\"Photographer-Showcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";}}s:22:\"Photographer-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";}}s:21:\"Photographer-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";}}s:19:\"Photographer-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";}}s:18:\"Photographer-Modal\";a:1:{i:0;a:2:{s:5:\"title\";s:8:\"Slider 1\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";}}s:25:\"black-friday-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";}}s:12:\"charity-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";}}s:14:\"charity-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"charity-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"charity-header/slide3.jpg\";}}s:15:\"charity-mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";}}s:13:\"charity-funds\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";}}s:15:\"charity-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";}}s:15:\"charity-stories\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";}}s:16:\"charity-worldmap\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";}}s:19:\"charity-large-image\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";}}s:16:\"charity-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";}}s:12:\"charity-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";}}s:14:\"charity-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";}}s:21:\"cinematic-hero-titles\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide3.jpg\";}}s:23:\"design-dna-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";}}s:27:\"food-delivery-lottie-scroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";}}s:20:\"food-recipe-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"food-recipe-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"food-recipe-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"food-recipe-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"food-recipe-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"food-recipe-carousel/slide6.jpg\";}}s:17:\"food-recipe-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"food-recipe-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"food-recipe-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"food-recipe-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"food-recipe-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"food-recipe-modal/slide6.jpg\";}}s:27:\"corporate-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";}}s:18:\"corporate-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-carousel/slide5.jpg\";}}s:18:\"corporate-lightbox\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-lightbox/slide5.jpg\";}}s:23:\"cyber-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";}}s:14:\"cyber-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cyber-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cyber-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"cyber-carousel/slide4.jpg\";}}s:23:\"cyber-carousel-lightbox\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide4.jpg\";}}s:24:\"woocommerce-carousel-one\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";}}s:31:\"woocommerce-carousel-one-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide6.jpg\";}}s:24:\"woocommerce-carousel-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";}}s:31:\"woocommerce-carousel-two-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide6.jpg\";}}s:26:\"woocommerce-feature-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";}}s:33:\"woocommerce-feature-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide6.jpg\";}}s:17:\"woo-liquid-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";}}s:32:\"woocommerce-liquid-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide6.jpg\";}}s:15:\"woo-slider-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";}}s:22:\"woo-slider-pack-static\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";}}s:24:\"creative-hero-collection\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"creative-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"creative-hero-collection/slide3.jpg\";}}s:19:\"photographer-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"photographer-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"photographer-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"photographer-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"photographer-slider/slide5.jpg\";}}s:17:\"realestate-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"realestate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"realestate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"realestate-slider/slide4.jpg\";}}s:19:\"saas-product-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"saas-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"saas-product-slider/slide3.jpg\";}}s:27:\"cinematic-wildlife-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";}}s:25:\"cinematic-wildlife-slider\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide7.jpg\";}}s:24:\"cinematic-wildlife-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide7.jpg\";}}s:32:\"gaming-stats-presentation-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide5.jpg\";}}s:15:\"coffee-flavours\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"coffee-flavors/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"coffee-flavors/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"coffee-flavors/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"coffee-flavors/slide5.jpg\";}}s:15:\"showreel-slider\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"showreel-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"showreel-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"showreel-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"showreel-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"showreel-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"showreel-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:26:\"showreel-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:26:\"showreel-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:27:\"showreel-slider/slide10.jpg\";}}s:16:\"visual-art-forms\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"visual-art-forms/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"visual-art-forms/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"visual-art-forms/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"visual-art-forms/slide5.jpg\";}}s:14:\"bg-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"bg-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"bg-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"bg-effect-hero/slide4.jpg\";}}s:9:\"cyberfunk\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"cyberfunk/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"cyberfunk/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"cyberfunk/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"cyberfunk/slide5.jpg\";}}s:21:\"motion-blur-portfolio\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide8.jpg\";}}s:18:\"portal-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"portal-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"portal-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"portal-effect-hero/slide4.jpg\";}}s:15:\"winery-timeline\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"winery-timeline/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"winery-timeline/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"winery-timeline/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"winery-timeline/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"winery-timeline/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"winery-timeline/slide7.jpg\";}}s:25:\"smart-living-one-pager-v1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";}}s:25:\"smart-living-one-pager-v2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";}}s:25:\"smart-living-one-pager-v3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";}}s:6:\"menu-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";}}s:14:\"onepage-hero-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";}}s:6:\"about1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"about1/slide1.jpg\";}}s:9:\"services1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"services1/slide1.jpg\";}}s:9:\"projects1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"projects1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"projects1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"projects1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"projects1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:20:\"projects1/slide6.jpg\";}}s:8:\"footer-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";}}s:23:\"explainer-block-1-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";}}s:23:\"explainer-block-1-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";}}s:16:\"projects-modal-1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-1/slide6.jpg\";}}s:6:\"menu-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";}}s:6:\"hero-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";}}s:10:\"services-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";}}s:7:\"about-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";}}s:10:\"projects-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"projects-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"projects-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:21:\"projects-2/slide6.jpg\";}}s:7:\"footer2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";}}s:23:\"explainer-block-2-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";}}s:23:\"explainer-block-2-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";}}s:16:\"projects-modal-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-2/slide6.jpg\";}}s:6:\"menu-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";}}s:6:\"hero-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:17:\"hero-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:17:\"hero-3/slide3.jpg\";}}s:7:\"about-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";}}s:10:\"services-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";}}s:10:\"projects-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-3/slide3.jpg\";}}s:8:\"footer-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";}}s:23:\"explainer-block-3-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";}}s:23:\"explainer-block-3-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";}}s:16:\"projects-modal-3\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-3/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-3/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-3/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-3/slide6.jpg\";}}s:25:\"urban-street-skate-slider\";a:12:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide11.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide12.jpg\";}}s:13:\"yummy-burgers\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"yummy-burgers/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"yummy-burgers/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"yummy-burgers/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"yummy-burgers/slide5.jpg\";}}s:37:\"tattoo-event-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";}}s:24:\"tattoo-event-hero-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide3.jpg\";}}s:18:\"tattoo-event-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";}}s:20:\"tattoo-event-artists\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"tattoo-event-artists/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"tattoo-event-artists/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"tattoo-event-artists/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"tattoo-event-artists/slide5.jpg\";}}s:21:\"tattoo-event-schedule\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide3.jpg\";}}s:17:\"tattoo-event-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";}}s:19:\"tattoo-event-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";}}s:24:\"startup-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"packages/startup-website-template.jpg\";}}s:12:\"startup-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";}}s:12:\"startup-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";}}s:13:\"startup-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";}}s:18:\"startup-features-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";}}s:18:\"startup-features-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";}}s:12:\"startup-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";}}s:15:\"startup-reviews\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";}}s:11:\"startup-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";}}s:14:\"startup-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";}}s:19:\"startup-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";}}s:32:\"christmas-gift-card-landing-page\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/christmas-gift-card-landing-page.jpg\";}}s:24:\"christmas-landing-page-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";}}s:24:\"christmas-landing-page-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";}}s:12:\"image-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"image-slider/slide-2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"image-slider/slide-3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"image-slider/slide-4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"image-slider/slide-5.jpg\";}}s:17:\"full-width-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"full-width-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"full-width-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"full-width-slider/slide4.jpg\";}}s:20:\"app-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/app-website-template.jpg\";}}s:16:\"app-website-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";}}s:16:\"app-website-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";}}s:20:\"app-download-buttons\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";}}s:17:\"app-website-about\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"app-website-about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"app-website-about/slide3.jpg\";}}s:20:\"app-website-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";}}s:21:\"app-website-video-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";}}s:23:\"app-website-screenshots\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"app-website-screenshots/slide2.jpg\";}}s:22:\"app-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";}}s:24:\"app-website-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";}}s:16:\"app-website-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";}}s:18:\"app-website-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";}}s:15:\"app-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";}}s:25:\"testimonial-carousel-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/testimonial-carousel-pack.jpg\";}}s:22:\"testimonial-carousel-1\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide4.jpg\";}}s:22:\"testimonial-carousel-2\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide5.jpg\";}}s:22:\"testimonial-carousel-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide3.jpg\";}}s:22:\"testimonial-carousel-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-4/slide1.jpg\";}}s:22:\"testimonial-carousel-5\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide4.jpg\";}}s:9:\"deep-dive\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deep-dive/slide1.jpg\";}}s:22:\"particle-wave-showcase\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"particle-wave-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"particle-wave-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"particle-wave-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"particle-wave-showcase/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"particle-wave-showcase/slide5.jpg\";}}s:17:\"video-hero-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"video-hero-header/slide1.jpg\";}}s:28:\"solar-system-showcase-slider\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide9.jpg\";}}s:26:\"Optic-shop-showcase-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide5.jpg\";}}s:24:\"charts-template-showcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"charts-template-showcase/slide1.jpg\";}}s:31:\"fashion-website-slider-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"packages/fashion-website-slider.jpg\";}}s:22:\"fashion-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fashion-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fashion-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"fashion-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"fashion-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"fashion-website-slider/slide5.jpg\";}}s:28:\"fashion-website-slider-modal\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide5.jpg\";}}s:24:\"furniture-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"furniture-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"furniture-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"furniture-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"furniture-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"furniture-website-slider/slide5.jpg\";}}s:26:\"fitness-gym-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide5.jpg\";}}s:35:\"ai--robotics-webside-slider-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:51:\"packages/ai-and-robotics-website-slider-package.jpg\";}}s:30:\"ai-and-robotics-website-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide4.jpg\";}}s:14:\"ai-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ai-video-modal/slide1.jpg\";}}s:33:\"minimal-typography-website-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide4.jpg\";}}s:19:\"404-page-collection\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"404-page-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"404-page-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"404-page-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"404-page-collection/slide4.jpg\";}}s:21:\"ecommerce-sale-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide4.jpg\";}}s:19:\"fashion-shop-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fashion-shop-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"fashion-shop-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"fashion-shop-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"fashion-shop-slider/slide4.jpg\";}}s:29:\"lingerie-store-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide5.jpg\";}}}}','no'),(140837,'user_registration_admin_notices','a:0:{}','yes'),(357782,'_transient_2ce28ceb7_elements','a:0:{}','yes'),(357783,'_transient_2ce28ceb7_custom_js','','yes'),(357784,'_transient_2ce28ceb7_updated_at','1605059632','yes'),(357785,'_transient_66b3eb4d0_elements','a:0:{}','yes'),(361397,'_transient_f32b69500_elements','a:0:{}','yes'),(361398,'_transient_f32b69500_custom_js','','yes'),(361399,'_transient_f32b69500_updated_at','1605059632','yes'),(635264,'37a6d66e5_updated_at','1618609366','yes'),(1906909,'_transient_timeout_mc4wp_mailchimp_lists','1657512141','no'),(1906910,'_transient_mc4wp_mailchimp_lists','a:0:{}','no'),(357751,'_transient_2ff18c34e_elements','a:0:{}','yes'),(357752,'_transient_2ff18c34e_custom_js','','yes'),(357753,'_transient_2ff18c34e_updated_at','1605059632','yes'),(357762,'_transient_fb910f9ff_elements','a:0:{}','yes'),(357763,'_transient_fb910f9ff_custom_js','','yes'),(357764,'_transient_fb910f9ff_updated_at','1605059632','yes'),(357766,'_transient_bc052ff1d_elements','a:0:{}','yes'),(357767,'_transient_bc052ff1d_custom_js','','yes'),(357768,'_transient_bc052ff1d_updated_at','1605059632','yes'),(357776,'_transient_adbe26916_elements','a:0:{}','yes'),(357777,'_transient_adbe26916_custom_js','','yes'),(357778,'_transient_adbe26916_updated_at','1605059632','yes'),(364088,'wp-smush-hide_upgrade_notice','1','no'),(364045,'ure_role_additional_options_values','a:1:{s:5:\"owner\";a:1:{s:14:\"hide_admin_bar\";i:1;}}','yes');
INSERT INTO `lrwp_options` VALUES (173650,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:53:\"5 Expert Tips To Improve Your Workflow With Elementor\";s:7:\"excerpt\";s:294:\"Our team of Elementor experts got together and came up with a list of features that will improve your workflow and make Elementor even easier to use. In this article, we’ll take a look at where you can access these features and provide you with tips on how to use them the way the experts do.\";s:7:\"created\";i:1654757528;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:124:\"https://elementor.com/blog/tips-to-improve-workflow/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:57:\"Elementor Acquires Strattic To Redefine WordPress Hosting\";s:7:\"excerpt\";s:315:\"Elementor acquires Strattic, the leading WordPress static hosting solution for secure, high-performance websites. This decision strengthens our ability to provide an end-to-end solution to millions of Web Creators by harnessing the power of static hosting technology and marks a significant milestone for Elementor.\";s:7:\"created\";i:1654673051;s:5:\"badge\";s:12:\"Announcement\";s:3:\"url\";s:127:\"https://elementor.com/blog/elementor-acquires-strattic/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:54:\"Email Marketing Strategies: How To Crush Email in 2022\";s:7:\"excerpt\";s:287:\"Email marketing is one of the most profitable marketing channels, but aside from copywriting and visual design, it also requires a strategic mix of testing, measurement, and automation for success. In this article, we\'ll go over all the basics of email marketing to help you get started.\";s:7:\"created\";i:1653910376;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:124:\"https://elementor.com/blog/email-marketing-strategy/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(417140,'_transient_eae880656_custom_js','','yes'),(417141,'_transient_eae880656_updated_at','1605059632','yes'),(417139,'_transient_eae880656_elements','a:0:{}','yes'),(393662,'_transient_dfc7a5b58_elements','a:0:{}','yes'),(393663,'_transient_dfc7a5b58_custom_js','','yes'),(393664,'_transient_dfc7a5b58_updated_at','1605059632','yes'),(510394,'weforms_review_notice_dismiss','yes','yes'),(357816,'_transient_77683d92d_elements','a:0:{}','yes'),(357817,'_transient_77683d92d_custom_js','','yes'),(357818,'_transient_77683d92d_updated_at','1605059632','yes'),(362728,'_transient_a8b7c0f29_elements','a:1:{i:7;s:12:\"creative-btn\";}','yes'),(362729,'_transient_a8b7c0f29_custom_js','','yes'),(362730,'_transient_a8b7c0f29_updated_at','1605059632','yes'),(398608,'_transient_a5c46b63d_elements','a:0:{}','yes'),(398609,'_transient_a5c46b63d_custom_js','','yes'),(398610,'_transient_a5c46b63d_updated_at','1605059632','yes'),(351582,'wp_mail_smtp_version','2.4.0','no'),(351583,'wp_mail_smtp','a:8:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:26:\"contact@lantern-realty.com\";s:9:\"from_name\";s:30:\"Lantern Realty and Development\";s:6:\"mailer\";s:4:\"smtp\";s:11:\"return_path\";b:1;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:1;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;s:4:\"host\";s:23:\"mail.lantern-realty.com\";s:10:\"encryption\";s:3:\"ssl\";s:4:\"port\";i:465;s:4:\"user\";s:26:\"contact@lantern-realty.com\";s:4:\"pass\";s:72:\"sKPe6C3O74WggJdFislvPGUrEVTGevm1FQh8iw1FpKfxrPc45751WFlf1iDgx4vUcLvGDdq1\";}s:7:\"smtpcom\";a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"channel\";s:0:\"\";}s:10:\"sendinblue\";a:1:{s:7:\"api_key\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"sendgrid\";a:1:{s:7:\"api_key\";s:0:\"\";}s:5:\"gmail\";a:2:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:1;}}','no'),(351584,'wp_mail_smtp_activated_time','1602512515','no'),(351585,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1602512515;}','yes'),(351590,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1605056682;s:9:\"dismissed\";b:1;}','yes'),(351587,'wp_mail_smtp_migration_version','4','yes'),(351598,'wp_mail_smtp_debug','a:0:{}','no'),(319046,'elementor_controls_usage','a:2:{s:7:\"wp-page\";a:19:{s:5:\"image\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:7:{s:5:\"image\";i:18;s:5:\"align\";i:15;s:7:\"link_to\";i:18;s:13:\"open_lightbox\";i:15;s:4:\"link\";i:7;s:14:\"caption_source\";i:3;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:119;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:119;s:16:\"content_position\";i:2;s:5:\"align\";i:1;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:46;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:46;s:11:\"header_size\";i:9;s:5:\"align\";i:36;s:4:\"size\";i:31;s:4:\"link\";i:12;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:20:\"typography_font_size\";i:1;s:26:\"typography_text_decoration\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:32;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:23;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:23;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:9;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:85;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:6:\"layout\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:15:\"column_position\";i:1;s:15:\"stretch_section\";i:1;s:3:\"gap\";i:1;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:22;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:32;s:16:\"background_color\";i:31;s:16:\"background_image\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:15;}}}}s:26:\"houzez-property-breadcrumb\";a:2:{s:5:\"count\";i:16;s:8:\"controls\";a:0:{}}s:22:\"houzez_elementor_space\";a:2:{s:5:\"count\";i:39;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:21;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:8:\"progress\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_progress\";a:3:{s:5:\"title\";i:2;s:7:\"percent\";i:2;s:10:\"inner_text\";i:2;}}s:5:\"style\";a:2:{s:22:\"section_progress_style\";a:5:{s:10:\"bar_height\";i:2;s:31:\"bar_inner_typography_typography\";i:2;s:30:\"bar_inner_typography_font_size\";i:2;s:9:\"bar_color\";i:2;s:17:\"bar_border_radius\";i:1;}s:13:\"section_title\";a:7:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}}}s:24:\"wp-widget-weforms_widget\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:30;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:11:\"button_type\";i:30;s:4:\"text\";i:30;s:5:\"align\";i:30;s:4:\"size\";i:28;s:13:\"selected_icon\";i:4;s:4:\"link\";i:30;s:11:\"icon_indent\";i:24;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:12;}}}}s:23:\"houzez_elementor_agents\";a:2:{s:5:\"count\";i:13;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:13;s:7:\"orderby\";i:13;s:11:\"posts_limit\";i:12;s:7:\"columns\";i:12;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:0:{}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:0:{}}}}s:9:\"shortcode\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:7;}}}}s:22:\"wp-widget-sticky-posts\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:25:\"houzez_elementor_icon_box\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"content_section\";a:1:{s:10:\"icon_boxes\";i:2;}s:24:\"content_section_settings\";a:1:{s:9:\"padding_a\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_iconbox_style\";a:4:{s:18:\"icon_primary_color\";i:2;s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;s:15:\"title_spacing_a\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:12;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:12;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:12;s:15:\"icon_self_align\";i:12;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:12;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:12;s:4:\"zoom\";i:12;s:6:\"height\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:20:\"eael-creative-button\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:18;s:30:\"creative_button_secondary_text\";i:18;s:24:\"creative_button_link_url\";i:18;s:29:\"eael_creative_button_icon_new\";i:18;s:32:\"eael_creative_button_icon_indent\";i:18;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:12;s:34:\"eael_creative_button_border_radius\";i:18;s:30:\"eael_creative_button_alignment\";i:18;s:26:\"eael_creative_button_width\";i:18;s:30:\"eael_creative_button_icon_size\";i:18;s:42:\"eael_creative_button_typography_typography\";i:6;s:43:\"eael_creative_button_typography_font_family\";i:6;s:43:\"eael_creative_button_typography_font_weight\";i:6;s:43:\"eael_creative_button_hover_background_color\";i:6;}}}}s:38:\"wp-widget-ihomefinderquicksearchwidget\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}}s:7:\"section\";a:7:{s:7:\"heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:5:\"align\";i:2;s:7:\"link_to\";i:2;s:13:\"open_lightbox\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:8:\"overflow\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:3:\"gap\";i:3;}}}}s:22:\"houzez_elementor_space\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}}}','no'),(348553,'weforms_version','1.6.13','yes'),(348554,'widget_weforms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(351602,'wpuf_general','a:4:{s:16:\"recaptcha_public\";s:40:\"6LfXgNYZAAAAAOBEx0Em2yCeUBlEsFZP8aiFC1g2\";s:17:\"recaptcha_private\";s:40:\"6LfXgNYZAAAAAOsnMaO1YC_KYp-dqH8aR9bu1BJ1\";s:14:\"recaptcha_type\";s:2:\"v2\";s:12:\"email_footer\";b:1;}','yes'),(348498,'erp_email_settings_employee-welcome','a:3:{s:7:\"subject\";s:37:\"Welcome {full_name} to {company_name}\";s:7:\"heading\";s:29:\"Welcome Onboard {first_name}!\";s:4:\"body\";s:1015:\"Dear {full_name},\n\nWelcome aboard as a <strong>{job_title}</strong> in our <strong>{dept_title}</strong> team at <strong>{company_name}</strong>! I am pleased to have you working with us. You were selected for employment due to the attributes that you displayed that appear to match the qualities I look for in an employee.\n\nI’m looking forward to seeing you grow and develop into an outstanding employee that exhibits a high level of care, concern, and compassion for others. I hope that you will find your work to be rewarding, challenging, and meaningful.\n\nYour <strong>{type}</strong> employment will start from <strong>{joined_date}</strong> and you will be reporting to <strong>{reporting_to}</strong>.\n\nPlease take your time and review our yearly goals so that you can know what is expected and make a positive contribution. Again, I look forward to seeing you grow as a professional while enhancing the lives of the clients entrusted in your care.\n\nSincerely,\nManager Name\nCEO, Company Name\n\n{login_info}\";}','yes'),(348499,'erp_email_settings_new-leave-request','a:3:{s:7:\"subject\";s:47:\"New leave request received from {employee_name}\";s:7:\"heading\";s:17:\"New Leave Request\";s:4:\"body\";s:316:\"Hello,\n\nA new leave request has been received from {employee_url}.\n\n<strong>Leave type:</strong> {leave_type}\n<strong>Date:</strong> {date_from} to {date_to}\n<strong>Days:</strong> {no_days}\n<strong>Reason:</strong> {reason}\n\nPlease approve/reject this leave application by going following:\n\n{requests_url}\n\nThanks.\";}','yes'),(348500,'erp_email_settings_approved-leave-request','a:3:{s:7:\"subject\";s:36:\"Your leave request has been approved\";s:7:\"heading\";s:22:\"Leave Request Approved\";s:4:\"body\";s:192:\"Hello {employee_name},\n\nYour <strong>{leave_type}</strong> type leave request for <strong>{no_days} days</strong> from {date_from} to {date_to} has been approved.\n\nRegards\nManager Name\nCompany\";}','yes'),(348501,'erp_email_settings_rejected-leave-request','a:3:{s:7:\"subject\";s:36:\"Your leave request has been rejected\";s:7:\"heading\";s:22:\"Leave Request Rejected\";s:4:\"body\";s:237:\"Hello {employee_name},\n\nYour <strong>{leave_type}</strong> type leave request for <strong>{no_days} days</strong> from {date_from} to {date_to} has been rejected.\n\nThe reason of rejection is: {reject_reason}\n\nRegards\nManager Name\nCompany\";}','yes'),(348502,'erp_email_settings_new-task-assigned','a:3:{s:7:\"subject\";s:33:\"New task has been assigned to you\";s:7:\"heading\";s:17:\"New Task Assigned\";s:4:\"body\";s:157:\"Hello {employee_name},\n\nA new task <strong>{task_title}</strong> has been assigned to you by {created_by}.\nDue Date: {due_date}\n\nRegards\nManager Name\nCompany\";}','yes'),(348503,'erp_email_settings_new-contact-assigned','a:3:{s:7:\"subject\";s:36:\"New contact has been assigned to you\";s:7:\"heading\";s:20:\"New Contact Assigned\";s:4:\"body\";s:141:\"Hello {employee_name},\n\nA new contact <strong>{contact_name}</strong> has been assigned to you by {created_by}.\n\nRegards\nManager Name\nCompany\";}','yes'),(348504,'erp_email_settings_hiring-anniversary-wish','a:3:{s:7:\"subject\";s:40:\"Congratulation for Your Work Anniversary\";s:7:\"heading\";s:51:\"Congratulation for Passing One More Year With Us :)\";s:4:\"body\";s:512:\"Congratulations {full_name}!\n\nYou have been a model employee for {total_year} years now. You are one of my few original employees and have certainly become an asset to this company. I appreciate the selfless service you\'ve given for so many years. Without the loyalty and hard work of experts like you who helped us get things started, we could never have achieved our present stature. I hope the gift I sent will reflect the high esteem I have for you.\n\nMay you enjoy the fruits of your labors for years to come\";}','yes'),(348548,'weforms_installed','1602350605','yes'),(348507,'wp_erp_version','1.6.6','yes'),(348508,'wp_erp_db_version','1.6.6','yes'),(348509,'wp_erp_install_date','1602350148','yes'),(348513,'erp_setup_wizard_ran','1','yes'),(348511,'widget_erp-subscription-from-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(348516,'erp_allow_tracking','no','yes'),(348518,'erp_tracking_skipped','yes','yes'),(348519,'_erp_company','a:9:{s:4:\"logo\";i:0;s:4:\"name\";s:30:\"Lantern Realty and Development\";s:7:\"address\";a:6:{s:9:\"address_1\";s:16:\"Street Address 1\";s:9:\"address_2\";s:14:\"Address Line 2\";s:4:\"city\";s:4:\"City\";s:5:\"state\";s:5:\"State\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:2:\"US\";}s:5:\"phone\";s:0:\"\";s:3:\"fax\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:7:\"website\";s:0:\"\";s:8:\"currency\";s:3:\"USD\";s:13:\"business_type\";s:5:\"Other\";}','yes'),(348520,'erp_settings_general','a:5:{s:19:\"gen_financial_month\";s:1:\"1\";s:13:\"gen_com_start\";s:10:\"2018-01-01\";s:11:\"date_format\";s:5:\"m-d-Y\";s:12:\"erp_currency\";s:3:\"148\";s:14:\"erp_debug_mode\";i:0;}','yes'),(348528,'pm_db_version','2.5','yes'),(1896854,'_transient_houzez_category_count','1','yes'),(1250937,'6b39d183c_eael_updated_at','1656030088','no'),(1252126,'a8b7c0f29_eael_updated_at','1656030088','no'),(1252129,'1af74f4bb_eael_updated_at','1656030088','no'),(416686,'_transient_f102f4301_elements','a:0:{}','yes'),(416687,'_transient_f102f4301_custom_js','','yes'),(416688,'_transient_f102f4301_updated_at','1605059632','yes'),(383171,'_transient_9efaa3a54_elements','a:0:{}','yes'),(383172,'_transient_9efaa3a54_custom_js','','yes'),(383173,'_transient_9efaa3a54_updated_at','1605059632','yes'),(371772,'_transient_106a6c241_elements','a:0:{}','yes'),(371773,'_transient_106a6c241_custom_js','','yes'),(371774,'_transient_106a6c241_updated_at','1605059632','yes'),(381145,'_transient_c79fb8884_elements','a:0:{}','yes'),(381146,'_transient_c79fb8884_custom_js','','yes'),(381147,'_transient_c79fb8884_updated_at','1605059632','yes'),(381149,'_transient_adf0381f0_elements','a:0:{}','yes'),(374830,'_transient_89030d065_elements','a:0:{}','yes'),(374831,'_transient_89030d065_custom_js','','yes'),(374832,'_transient_89030d065_updated_at','1605059632','yes'),(365088,'_transient_e0e620acd_updated_at','1605059632','yes'),(358513,'_transient_5d5629283_elements','a:0:{}','yes'),(358514,'_transient_5d5629283_custom_js','','yes'),(358515,'_transient_5d5629283_updated_at','1605059632','yes'),(357867,'_transient_effb69e52_elements','a:0:{}','yes'),(357868,'_transient_effb69e52_custom_js','','yes'),(357869,'_transient_effb69e52_updated_at','1605059632','yes'),(320498,'disallowed_keys','','no'),(320499,'comment_previously_approved','1','yes'),(320500,'auto_plugin_theme_update_emails','a:0:{}','no'),(184365,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes'),(231109,'widget_a2a_share_save_widget','a:3:{i:2;a:1:{s:5:\"title\";s:15:\"Share This Page\";}i:3;a:1:{s:5:\"title\";s:22:\"Share This With Others\";}s:12:\"_multiwidget\";i:1;}','yes'),(231110,'widget_a2a_follow_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(231115,'addtoany_options','a:37:{s:8:\"position\";s:6:\"bottom\";s:30:\"display_in_posts_on_front_page\";s:2:\"-1\";s:33:\"display_in_posts_on_archive_pages\";s:2:\"-1\";s:19:\"display_in_excerpts\";s:2:\"-1\";s:16:\"display_in_posts\";s:2:\"-1\";s:16:\"display_in_pages\";s:2:\"-1\";s:22:\"display_in_attachments\";s:2:\"-1\";s:15:\"display_in_feed\";s:2:\"-1\";s:7:\"onclick\";s:2:\"-1\";s:9:\"icon_size\";s:2:\"32\";s:7:\"icon_bg\";s:8:\"original\";s:13:\"icon_bg_color\";s:7:\"#2a2a2a\";s:7:\"icon_fg\";s:8:\"original\";s:13:\"icon_fg_color\";s:7:\"#ffffff\";s:6:\"button\";s:10:\"A2A_SVG_32\";s:13:\"button_custom\";s:0:\"\";s:17:\"button_show_count\";s:2:\"-1\";s:6:\"header\";s:0:\"\";s:23:\"additional_js_variables\";s:0:\"\";s:14:\"additional_css\";s:0:\"\";s:12:\"custom_icons\";s:2:\"-1\";s:16:\"custom_icons_url\";s:1:\"/\";s:17:\"custom_icons_type\";s:3:\"png\";s:18:\"custom_icons_width\";s:0:\"\";s:19:\"custom_icons_height\";s:0:\"\";s:5:\"cache\";s:2:\"-1\";s:32:\"display_in_cpt_elementor_library\";s:2:\"-1\";s:23:\"display_in_cpt_property\";s:1:\"1\";s:28:\"display_in_cpt_houzez_agency\";s:2:\"-1\";s:27:\"display_in_cpt_houzez_agent\";s:2:\"-1\";s:11:\"button_text\";s:5:\"Share\";s:24:\"special_facebook_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:25:\"special_pinterest_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:15:\"active_services\";a:8:{i:0;s:8:\"facebook\";i:1;s:18:\"facebook_messenger\";i:2;s:3:\"sms\";i:3;s:9:\"copy_link\";i:4;s:5:\"email\";i:5;s:5:\"print\";i:6;s:9:\"pinterest\";i:7;s:5:\"houzz\";}s:29:\"special_facebook_like_options\";a:2:{s:10:\"show_count\";s:2:\"-1\";s:4:\"verb\";s:4:\"like\";}s:29:\"special_twitter_tweet_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:29:\"special_pinterest_pin_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}}','yes'),(356963,'wp_protect_password_setting_options','{\"ppw_hide_protected_post\":\"false\",\"ppw_hide_selected_post\":[\"ppw_front_page\",\"ppw_category_page\",\"ppw_tag_page\",\"ppw_author_page\",\"ppw_archives_page\",\"ppw_next_previous\",\"ppw_recent_post\",\"ppw_search_results\",\"ppw_feeds\"],\"ppw_hide_protected_page\":\"false\",\"ppw_hide_selected_page\":[\"ppw_front_page\",\"ppw_everywhere_pages\",\"ppw_search_results\"]}','no'),(357000,'pp_basic_settings','','yes'),(357001,'pp_admin_page','','yes'),(357007,'acpwd_settings_options','a:15:{s:10:\"protectway\";s:6:\"cookie\";s:9:\"cookieexp\";s:7:\"7776000\";s:8:\"password\";s:13:\"laJ4MVEfvAJKY\";s:19:\"impacted_categories\";a:1:{i:0;s:2:\"16\";}s:13:\"allowed_users\";a:0:{}s:11:\"only_single\";s:1:\"1\";s:19:\"excerpt_before_pass\";i:0;s:26:\"excerpt_before_pass_length\";s:2:\"25\";s:33:\"excerpt_before_pass_ending_string\";s:6:\" […]\";s:12:\"info_message\";s:66:\"Please enter the team portal password to unlock this announcement.\";s:17:\"input_placeholder\";s:0:\"\";s:13:\"error_message\";s:84:\"Sorry, but this is the wrong password. This password is the same as the team portal.\";s:17:\"valid_button_text\";s:6:\"Unlock\";s:14:\"output_styling\";s:296:\"* Custom css for Access Category Password form */\r\n		.acpwd-container {\r\n		\r\n		}\r\n		\r\n		.acpwd-added-excerpt {\r\n		}\r\n		\r\n		.acpwd-info-message {\r\n		\r\n		}\r\n		\r\n		.acpwd-form {\r\n		\r\n		}\r\n		.acpwd-pass {\r\n		\r\n		}\r\n		\r\n		.acpwd-submit {\r\n		\r\n		}\r\n		\r\n		.acpwd-error-message {\r\n			color: darkred;\r\n		}\";s:14:\"feed_desc_text\";s:68:\"Access to this post restricted, please go to the website to read it.\";}','yes'),(356850,'_transient_9d1693a78_elements','a:0:{}','yes'),(356851,'_transient_9d1693a78_custom_js','','yes'),(356852,'_transient_9d1693a78_updated_at','1605059632','yes'),(364298,'_transient_880fda179_elements','a:0:{}','yes'),(364299,'_transient_880fda179_custom_js','','yes'),(364300,'_transient_880fda179_updated_at','1605059632','yes'),(358630,'_transient_befd17855_custom_js','','yes'),(358631,'_transient_befd17855_updated_at','1605059632','yes'),(356372,'passster_general_settings','a:9:{s:13:\"toggle_cookie\";s:2:\"on\";s:11:\"toggle_ajax\";s:2:\"on\";s:24:\"passster_cookie_duration\";s:1:\"2\";s:10:\"toggle_amp\";s:3:\"off\";s:9:\"toggle_vc\";s:3:\"off\";s:16:\"toggle_elementor\";s:2:\"on\";s:21:\"toggle_beaver_builder\";s:3:\"off\";s:32:\"passster_advanced_delete_options\";s:3:\"off\";s:22:\"third_party_shortcodes\";s:0:\"\";}','yes'),(356373,'passster_advanced_settings','','yes'),(356789,'_transient_c8773739b_custom_js','','yes'),(356790,'_transient_c8773739b_updated_at','1605059632','yes'),(141059,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:30:\"content-protector/inc/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.3\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1651363217;s:11:\"plugin_path\";s:39:\"content-protector/content-protector.php\";}}s:7:\"abspath\";s:32:\"/home/lanternrealty/public_html/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:39:\"content-protector/content-protector.php\";s:8:\"sdk_path\";s:30:\"content-protector/inc/freemius\";s:7:\"version\";s:5:\"2.4.3\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1651363217;}}','yes'),(141060,'fs_debug_mode','','yes'),(141061,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:3:{i:1010;a:3:{s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:79:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages/wp-sheet-editor.php\";}i:1938;a:3:{s:4:\"slug\";s:17:\"content-protector\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:39:\"content-protector/content-protector.php\";}i:1021;a:3:{s:4:\"slug\";s:27:\"bulk-edit-posts-on-frontend\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:47:\"bulk-edit-posts-on-frontend/frontend-editor.php\";}}s:11:\"plugin_data\";a:3:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:79:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages/wp-sheet-editor.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1588345947;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.3.2\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:6:\"2.19.0\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:18:\"lantern-realty.com\";s:9:\"server_ip\";s:12:\"172.72.70.83\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1588345947;s:7:\"version\";s:6:\"2.19.0\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1588345959;s:7:\"version\";s:6:\"2.19.0\";}s:16:\"uninstall_reason\";O:8:\"stdClass\":3:{s:2:\"id\";s:2:\"14\";s:4:\"info\";s:0:\"\";s:12:\"is_anonymous\";b:0;}}s:17:\"content-protector\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:39:\"content-protector/content-protector.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1602794971;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";s:5:\"2.4.2\";s:11:\"sdk_version\";s:5:\"2.4.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:7:\"3.5.5.1\";s:14:\"plugin_version\";s:7:\"3.5.5.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:18:\"lantern-realty.com\";s:9:\"server_ip\";s:13:\"161.69.112.11\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1602794971;s:7:\"version\";s:5:\"3.3.8\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1602794984;s:7:\"version\";s:5:\"3.3.8\";}s:21:\"trial_promotion_shown\";i:1618359079;}s:27:\"bulk-edit-posts-on-frontend\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:47:\"bulk-edit-posts-on-frontend/frontend-editor.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1603035877;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";s:7:\"2.4.0.1\";s:11:\"sdk_version\";s:5:\"2.3.1\";s:16:\"sdk_upgrade_mode\";b:0;s:18:\"sdk_downgrade_mode\";b:1;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"2.3.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:18:\"lantern-realty.com\";s:9:\"server_ip\";s:12:\"172.72.70.83\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1603035877;s:7:\"version\";s:5:\"2.3.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1603035890;s:7:\"version\";s:5:\"2.3.2\";}}}s:13:\"file_slug_map\";a:3:{s:79:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages/wp-sheet-editor.php\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:39:\"content-protector/content-protector.php\";s:17:\"content-protector\";s:47:\"bulk-edit-posts-on-frontend/frontend-editor.php\";s:27:\"bulk-edit-posts-on-frontend\";}s:7:\"plugins\";a:3:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:15:\"WP Sheet Editor\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:12:\"premium_slug\";s:23:\"wp-sheet-editor-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:79:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages/wp-sheet-editor.php\";s:7:\"version\";s:6:\"2.19.0\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_ec1c7da603c0772f1bfe276efb715\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1010\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:17:\"content-protector\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:8:\"Passster\";s:4:\"slug\";s:17:\"content-protector\";s:12:\"premium_slug\";s:25:\"content-protector-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:39:\"content-protector/content-protector.php\";s:7:\"version\";s:7:\"3.5.5.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_9d9d6d17bd34372b199f36e37dd4b\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1938\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:27:\"bulk-edit-posts-on-frontend\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:42:\"WP Sheet Editor - Editable Frontend Tables\";s:4:\"slug\";s:27:\"bulk-edit-posts-on-frontend\";s:12:\"premium_slug\";s:35:\"bulk-edit-posts-on-frontend-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:47:\"bulk-edit-posts-on-frontend/frontend-editor.php\";s:7:\"version\";s:5:\"2.3.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_5c389ae3fec7d724350dcbdd315ed\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1021\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"39a32c68c875e563a1bce8c3380b7320\";s:13:\"admin_notices\";a:3:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:0:{}s:17:\"content-protector\";a:1:{s:15:\"trial_promotion\";a:8:{s:7:\"message\";s:376:\"Hey! How do you like <b>Passster</b> so far? Test all our awesome premium features with a 7-day free trial. No credit card required!  <a style=\"margin-left: 10px; vertical-align: super;\" href=\"https://lantern-realty.com/wp-admin/admin.php?billing_cycle=annual&trial=true&page=passster-pricing\"><button class=\"button button-primary\">Start free trial &nbsp;&#10140;</button></a>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:9:\"promotion\";s:6:\"sticky\";b:1;s:2:\"id\";s:15:\"trial_promotion\";s:10:\"manager_id\";s:17:\"content-protector\";s:6:\"plugin\";s:8:\"Passster\";s:10:\"wp_user_id\";N;}}s:27:\"bulk-edit-posts-on-frontend\";a:0:{}}}','yes'),(141062,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(141063,'fs_api_cache','a:0:{}','no'),(141070,'vgse_user_path','a:1:{i:1;a:14:{i:0;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"open\";s:10:\"eventLabel\";s:21:\"vg_sheet_editor_setup\";s:10:\"eventValue\";s:14:\"20200501151229\";s:8:\"vgStatus\";i:0;}i:1;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"open\";s:10:\"eventLabel\";s:21:\"vg_sheet_editor_setup\";s:10:\"eventValue\";s:14:\"20200501151230\";s:8:\"vgStatus\";i:0;}i:2;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"open\";s:10:\"eventLabel\";s:21:\"vg_sheet_editor_setup\";s:10:\"eventValue\";s:14:\"20200501151240\";s:8:\"vgStatus\";i:0;}i:3;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"open\";s:10:\"eventLabel\";s:21:\"vg_sheet_editor_setup\";s:10:\"eventValue\";s:14:\"20200501151241\";s:8:\"vgStatus\";i:0;}i:4;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:28:\"vgse_save_post_types_setting\";s:10:\"eventValue\";s:14:\"20200501151255\";s:8:\"vgStatus\";i:0;}i:5;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"open\";s:10:\"eventLabel\";s:27:\"vgse-bulk-edit-houzez_agent\";s:10:\"eventValue\";s:14:\"20200501151316\";s:8:\"vgStatus\";i:0;}i:6;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:14:\"vgse_load_data\";s:10:\"eventValue\";s:14:\"20200501151318\";s:8:\"vgStatus\";i:0;}i:7;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:30:\"vgse_update_columns_visibility\";s:10:\"eventValue\";s:14:\"20200501151412\";s:8:\"vgStatus\";i:0;}i:8;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:30:\"vgse_update_columns_visibility\";s:10:\"eventValue\";s:14:\"20200501151416\";s:8:\"vgStatus\";i:0;}i:9;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:30:\"vgse_update_columns_visibility\";s:10:\"eventValue\";s:14:\"20200501151419\";s:8:\"vgStatus\";i:0;}i:10;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:30:\"vgse_update_columns_visibility\";s:10:\"eventValue\";s:14:\"20200501151422\";s:8:\"vgStatus\";i:0;}i:11;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:30:\"vgse_update_columns_visibility\";s:10:\"eventValue\";s:14:\"20200501151426\";s:8:\"vgStatus\";i:0;}i:12;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:27:\"vgse_insert_individual_post\";s:10:\"eventValue\";s:14:\"20200501151504\";s:8:\"vgStatus\";i:0;}i:13;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:17:\"vgse_set_settings\";s:10:\"eventValue\";s:14:\"20200501151545\";s:8:\"vgStatus\";i:0;}}}','yes'),(141066,'vg_sheet_editor','a:32:{s:8:\"last_tab\";N;s:13:\"be_post_types\";a:1:{i:0;s:12:\"houzez_agent\";}s:17:\"be_posts_per_page\";s:2:\"20\";s:23:\"be_load_items_on_scroll\";i:1;s:20:\"be_fix_first_columns\";i:1;s:22:\"be_posts_per_page_save\";s:1:\"4\";s:26:\"be_timeout_between_batches\";s:1:\"6\";s:23:\"be_disable_post_actions\";i:0;s:16:\"export_page_size\";s:3:\"100\";s:17:\"enable_pagination\";b:0;s:33:\"be_disable_automatic_loading_rows\";b:0;s:30:\"be_disable_full_screen_mode_on\";s:1:\"1\";s:16:\"be_columns_limit\";s:3:\"310\";s:27:\"be_taxonomy_terms_separator\";s:1:\",\";s:36:\"be_suspend_object_cache_invalidation\";b:1;s:18:\"be_disable_wpautop\";b:0;s:24:\"be_disable_data_prefetch\";b:0;s:37:\"enable_spreadsheet_views_restrictions\";b:0;s:18:\"enable_simple_mode\";b:0;s:38:\"disable_automatic_formatting_detection\";b:0;s:29:\"be_disable_cells_lazy_loading\";b:0;s:27:\"be_disable_dashboard_widget\";b:0;s:29:\"be_disable_serialized_columns\";b:0;s:20:\"be_disable_heartbeat\";b:0;s:16:\"be_rest_api_only\";b:0;s:29:\"be_enable_fancy_taxonomy_cell\";b:0;s:18:\"be_enable_rest_api\";b:0;s:24:\"show_all_custom_statuses\";b:0;s:18:\"hide_cell_comments\";b:0;s:32:\"manage_taxonomy_columns_term_ids\";b:0;s:22:\"be_initial_rows_offset\";i:0;s:39:\"delete_attached_images_when_post_delete\";b:0;}','yes'),(141067,'vgse_can_edit_cpt_free','1','yes'),(141071,'vgse_columns_visibility','a:1:{s:12:\"houzez_agent\";a:2:{s:7:\"enabled\";a:21:{s:10:\"post_title\";s:5:\"Title\";s:12:\"post_content\";s:7:\"Content\";s:14:\"open_wp_editor\";s:9:\"WP Editor\";s:9:\"view_post\";s:4:\"View\";s:11:\"post_status\";s:6:\"Status\";s:10:\"menu_order\";s:5:\"Order\";s:14:\"agent_category\";s:10:\"Categories\";s:13:\"_thumbnail_id\";s:14:\"Featured Image\";s:28:\"_primary_term_agent_category\";s:27:\"Primary Term Agent Category\";s:17:\"_vc_post_settings\";s:16:\"Vc Post Settings\";s:19:\"fave_agent_agencies\";s:19:\"Fave Agent Agencies\";s:18:\"fave_agent_company\";s:18:\"Fave Agent Company\";s:14:\"fave_agent_des\";s:14:\"Fave Agent Des\";s:16:\"fave_agent_email\";s:16:\"Fave Agent Email\";s:19:\"fave_agent_facebook\";s:19:\"Fave Agent Facebook\";s:18:\"fave_agent_license\";s:18:\"Fave Agent License\";s:15:\"fave_agent_logo\";s:15:\"Fave Agent Logo\";s:17:\"fave_agent_mobile\";s:17:\"Fave Agent Mobile\";s:19:\"fave_agent_position\";s:19:\"Fave Agent Position\";s:18:\"fave_agent_website\";s:18:\"Fave Agent Website\";s:14:\"slide_template\";s:14:\"Slide Template\";}s:8:\"disabled\";a:7:{s:2:\"ID\";s:2:\"ID\";s:9:\"post_name\";s:8:\"URL Slug\";s:9:\"post_date\";s:4:\"Date\";s:13:\"post_modified\";s:13:\"Modified Date\";s:11:\"post_parent\";s:11:\"Page Parent\";s:10:\"agent_city\";s:6:\"Cities\";s:9:\"post_type\";s:9:\"Post type\";}}}','yes'),(141072,'vgse_columns_visibility_migrated','1','yes'),(141073,'vg_sheet_editor-transients','a:3:{s:14:\"changed_values\";a:1:{s:30:\"be_disable_full_screen_mode_on\";b:0;}s:9:\"last_save\";i:1588346146;s:14:\"last_save_mode\";s:6:\"normal\";}','yes'),(141074,'vgse_welcome_redirect','no','yes'),(141075,'vgse_hide_whats_new_2.18.1.5','yes','yes'),(141076,'vgse_disable_quick_setup','1','yes'),(141081,'vgse_hide_extensions_popup','1','yes'),(141086,'vgse_editions_counter','1','yes'),(141087,'vgse_processed_counter','1','yes'),(361603,'tablepress_plugin_options','{\"plugin_options_db_version\":43,\"table_scheme_db_version\":3,\"prev_tablepress_version\":\"1.13\",\"tablepress_version\":\"1.14\",\"first_activation\":1603037703,\"message_plugin_update\":true,\"message_donation_nag\":true,\"use_custom_css\":true,\"use_custom_css_file\":true,\"custom_css\":\"\",\"custom_css_minified\":\"\",\"custom_css_version\":0}','yes'),(364029,'ure_tasks_queue','a:0:{}','yes'),(361606,'tablepress_tables','{\"last_id\":5,\"table_post\":{\"offices\":1206,\"team\":1199}}','yes'),(361542,'widget_lpwtoc_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(361543,'lwptoc_rate_time','1603122877','yes'),(361557,'lwptoc_processingHeadings','a:1:{s:9:\"postTypes\";a:1:{i:0;s:12:\"houzez_agent\";}}','yes'),(360993,'_transient_e9332cec6_elements','a:0:{}','yes'),(360994,'_transient_e9332cec6_custom_js','','yes'),(360995,'_transient_e9332cec6_updated_at','1603149173','yes'),(392559,'_transient_93b3ce2f5_elements','a:0:{}','yes'),(392560,'_transient_93b3ce2f5_custom_js','','yes'),(392561,'_transient_93b3ce2f5_updated_at','1605059632','yes'),(392565,'_transient_4781052f4_elements','a:0:{}','yes'),(392566,'_transient_4781052f4_custom_js','','yes'),(392567,'_transient_4781052f4_updated_at','1605059632','yes'),(392821,'_transient_a3f114b53_custom_js','','yes'),(392822,'_transient_a3f114b53_updated_at','1605059632','yes'),(1251201,'9583082da_eael_updated_at','1656030088','no'),(1252124,'a8b7c0f29_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(419978,'1dcb97ea3_elements','a:0:{}','yes'),(419979,'1dcb97ea3_custom_js','','yes'),(419980,'1dcb97ea3_updated_at','1606787969','yes'),(352369,'jetpack_callables_sync_checksum','a:35:{s:18:\"wp_max_upload_size\";i:1819132959;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:2311601899;s:26:\"main_network_site_wpcom_id\";i:4282793338;s:8:\"site_url\";i:2311601899;s:8:\"home_url\";i:2311601899;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:2903718415;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:2852872489;s:10:\"post_types\";i:3015456133;s:18:\"post_type_features\";i:1004367947;s:10:\"shortcodes\";i:3860646731;s:27:\"rest_api_allowed_post_types\";i:2990871343;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:10:\"wp_version\";i:152294815;s:11:\"get_plugins\";i:1967151545;s:24:\"get_plugins_action_links\";i:1145099015;s:14:\"active_modules\";i:23232160;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:1412896360;s:5:\"roles\";i:4092342287;s:8:\"timezone\";i:3808505409;s:24:\"available_jetpack_blocks\";i:2299092051;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;s:13:\"theme_support\";i:2416712208;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;}','no'),(173645,'elementor_version','3.2.2','yes'),(173647,'houzez_20_db_updated','1','yes'),(173648,'_elementor_installed_time','1590774980','yes'),(173649,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:822:{i:0;a:16:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:16:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:16:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:16:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:16:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:16:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:16:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:16:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:16:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:16:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:16:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:16:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:16:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:16:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:16:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:16:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:16:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:16:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:16:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:16:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/lp/dot-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:16:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:16:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:16:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:16:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/wireframe-courses-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:134;a:16:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:16:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:16:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:16:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:16:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:140;a:16:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"online shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:16:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:16:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:16:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:16:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:16:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:55:\"Fly-In | Team Details Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:16:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:150;a:16:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:52:\"Full Screen | Menu Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:151;a:16:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:51:\"Classic | Discount Popup | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:50:\"Hello Bar | CTA Popup | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:45:\"Classic | Discount Popup | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:16:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:51:\"Bottom Bar | Discount Popup | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:16:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:38:\"Hello Bar | Menu Popup | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:43:\"Full Screen | Booking Popup | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:16:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:40:\"Classic | Discount Popup | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:16:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:40:\"Slide-In | Contact Popup | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:16:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:16:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:35:\"Classic | Cta Popup | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:16:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:46:\"Bottom Bar | Contact Popup | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:38:\"Fly-In | Contact Popup | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:164;a:16:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:37:\"Classic |  Login Popup | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:16:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:42:\"Full Screen | Login Popup | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:16:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:34:\"Classic | Login Popup | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:37:\"Classic | Login Popup | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:16:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:46:\"Classic |  Login Popup | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:16:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:42:\"Fly-In | Contact Popup | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:16:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:42:\"Fly-In | Cta Popup | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:43:\"Full Screen | Contact Popup | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:16:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:45:\"Classic | Contact | Support  Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:16:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:16:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:16:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:16:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:181;a:16:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:183;a:16:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:16:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:16:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/nails-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:186;a:16:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/music-festival-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:187;a:16:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:16:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:16:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:16:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:16:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:192;a:16:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:16:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:195;a:16:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:197;a:16:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:16:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:199;a:16:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:16:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:201;a:16:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:203;a:16:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:204;a:16:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:16:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:206;a:16:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/law-firm-services-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:207;a:16:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:16:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:209;a:16:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photographer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:210;a:16:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:16:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"online shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:212;a:16:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photographer-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Gallery\",\"Photography\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:213;a:16:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:216;a:16:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:16:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:16:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"interior design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:219;a:16:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:220;a:16:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/online-training-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:16:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:222;a:16:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:16:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:16:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:225;a:16:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:16:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"online shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:227;a:16:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:228;a:16:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:229;a:16:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/spa-beauty-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:16:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:16:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:232;a:16:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/insurance-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:16:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:234;a:16:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:235;a:16:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/time-management-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:236;a:16:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/contact-plants-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:16:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:16:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:239;a:16:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dental-care-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:16:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:241;a:16:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:16:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:16:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:244;a:16:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:16:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:246;a:16:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:247;a:16:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:16:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:249;a:16:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:16:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/conference-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:37:\"[\"Conference\",\"Contact\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:16:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:252;a:16:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:16:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/travel-agency-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:16:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:16:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:16:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:257;a:16:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:16:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:16:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/3d-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"creative portfolio\",\"Design\",\"Designer\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:16:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:16:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:16:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/architecture-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"creative portfolio\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:263;a:16:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:264;a:16:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:16:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:16:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:267;a:16:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:268;a:16:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:16:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:270;a:16:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:271;a:16:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:16:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:273;a:16:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:16:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:275;a:16:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:276;a:16:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:16:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:16:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:16:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:16:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/packing-moving-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:16:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:282;a:16:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:283;a:16:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:284;a:16:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/interior-design-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:16:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:16:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:16:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:288;a:16:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:16:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:16:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/hotel-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Contact\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:291;a:16:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:16:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:16:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:16:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:16:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:16:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:16:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:16:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:16:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:16:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:16:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:16:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:16:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:16:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:16:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/restaurant-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:46:\"[\"Contact\",\"Food\",\"form\",\"Google Maps\",\"Info\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:16:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/interior-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:16:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:313;a:16:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:16:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:16:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:316;a:16:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/exhibition-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"creative portfolio\",\"Exhibition\",\"Gallery\",\"portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:16:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:16:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:319;a:16:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:16:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:322;a:16:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:16:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:16:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:16:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:16:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:16:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:16:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:16:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:16:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:16:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:16:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:16:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:16:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:16:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:16:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:16:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:16:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:16:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:16:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:16:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:16:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:16:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:16:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:352;a:16:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:353;a:16:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:16:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/business-consulting-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:16:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"interior design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/construction-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:16:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:359;a:16:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:16:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:362;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:16:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:16:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:16:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:16:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:367;a:16:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:16:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:16:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:16:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:16:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:372;a:16:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:373;a:16:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:16:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:16:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:376;a:16:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:16:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:16:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:16:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:16:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:16:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/birthday-party-invitation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:16:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:16:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:386;a:16:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:16:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:16:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:16:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:16:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:16:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:16:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:397;a:16:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:16:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:16:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:16:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:404;a:16:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:16:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:16:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:16:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:409;a:16:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:410;a:16:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:16:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:412;a:16:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:413;a:16:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:16:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:16:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:416;a:16:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:16:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:418;a:16:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:419;a:16:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:16:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:16:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:16:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:16:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:16:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:16:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:16:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:16:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:16:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:16:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:16:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:16:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:16:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:16:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:434;a:16:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:16:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:436;a:16:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:438;a:16:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:16:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:440;a:16:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:16:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:16:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:16:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:444;a:16:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:16:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:446;a:16:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:16:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:448;a:16:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:16:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:16:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:16:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:16:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:16:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:16:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:16:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:16:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:16:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:16:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:460;a:16:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:16:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:16:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:16:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:464;a:16:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:16:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:16:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:467;a:16:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:16:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:16:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:16:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:16:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:16:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:16:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:16:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:475;a:16:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:16:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:16:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:16:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:16:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:16:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:16:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:16:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:483;a:16:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:16:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:485;a:16:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:16:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:487;a:16:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:16:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:489;a:16:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:16:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:16:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:16:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:16:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:16:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:16:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:16:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:16:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:16:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:16:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:16:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:16:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:16:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:16:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:16:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:16:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:16:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:16:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:509;a:16:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:16:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:16:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:16:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:16:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:16:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:16:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:16:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:16:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:16:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:16:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:16:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:16:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:16:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:16:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:16:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:16:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:16:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:16:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:16:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:16:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:16:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:16:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:16:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:533;a:16:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:16:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:16:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:16:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:16:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:538;a:16:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:16:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:540;a:16:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:16:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:542;a:16:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:543;a:16:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:16:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:545;a:16:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:16:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:547;a:16:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:16:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:549;a:16:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:16:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:16:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:16:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:16:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:16:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:16:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:16:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:16:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:16:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:16:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:16:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:16:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:16:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:16:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:16:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:16:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:16:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:16:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:16:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:16:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:16:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:16:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:16:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:16:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:16:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:16:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:16:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:16:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:16:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:16:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:16:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:16:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:16:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:16:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:16:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:16:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:16:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:16:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:16:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:16:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:16:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:16:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:16:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:16:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:16:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:16:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:16:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:613;a:16:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:615;a:16:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:16:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:16:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:618;a:16:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:16:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:620;a:16:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:16:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:622;a:16:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:16:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:16:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:16:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:16:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:16:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:16:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:16:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:16:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:16:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:16:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:16:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:16:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:16:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:16:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:16:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:16:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:16:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:16:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:16:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:16:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:16:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:16:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:16:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:16:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:16:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:16:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:16:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:16:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:16:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:16:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:16:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:16:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:16:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:16:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:16:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:16:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:16:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:16:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:16:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:16:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:16:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:16:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:16:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:16:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:675;a:16:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:16:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:16:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:16:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:16:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:681;a:16:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:16:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:16:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:16:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:16:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:16:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:16:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:688;a:16:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:16:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:16:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:16:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:16:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:16:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:16:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:16:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:16:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:16:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:16:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:16:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:16:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:16:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:16:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:16:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:16:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:16:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:16:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:16:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:16:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:16:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:16:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:16:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:714;a:16:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:16:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:16:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:16:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:16:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:16:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:16:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:16:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:16:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:16:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:16:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:16:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:16:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:16:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:16:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:16:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:16:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:16:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:16:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:16:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:16:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:16:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:736;a:16:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:16:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:16:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:16:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:16:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:16:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:16:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:16:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:16:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:16:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:16:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:16:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:16:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:16:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:16:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:16:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:16:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:16:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:754;a:16:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:16:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:16:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:16:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:16:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:16:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:16:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:16:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:16:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:16:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:16:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:16:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:766;a:16:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:16:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:16:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:16:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:16:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:16:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:772;a:16:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:16:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:774;a:16:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:16:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:16:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:777;a:16:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:16:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:16:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:16:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:16:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:16:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:783;a:16:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:16:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:16:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:16:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:16:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:16:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:16:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:790;a:16:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:16:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:792;a:16:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:793;a:16:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:794;a:16:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:16:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:796;a:16:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:797;a:16:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:16:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:16:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:800;a:16:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:16:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:16:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:803;a:16:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:804;a:16:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:805;a:16:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:16:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:807;a:16:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:16:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:16:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:810;a:16:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:16:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:16:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:16:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:16:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:16:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:16:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:16:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:16:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:16:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:16:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:16:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(173740,'ihf-virtual-page-title-mortgage-calculator','Mortgage Calculator','yes'),(173741,'ihf-virtual-page-template-mortgage-calculator','template/template-page.php','yes'),(173742,'ihf-virtual-page-permalink-text-mortgage-calculator','mortgage-calculator','yes'),(173743,'ihf-virtual-page-meta-tags-mortgage-calculator','<meta name=\"description\" content=\"\" />','yes'),(357898,'_transient_350bd4d96_elements','a:0:{}','yes'),(357899,'_transient_350bd4d96_custom_js','','yes'),(357900,'_transient_350bd4d96_updated_at','1605059632','yes'),(178722,'revslider-templates-hash','cbe81e48949b38763c15535d330662d5','yes'),(176453,'revslider-update-hash','c51b0d8450c5372d6ba8e2f4e27b2804','yes'),(176454,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(176455,'rs-addons-counter','2','yes'),(357483,'_transient_4fa89cd29_elements','a:0:{}','yes'),(357484,'_transient_4fa89cd29_custom_js','','yes'),(357485,'_transient_4fa89cd29_updated_at','1605059632','yes'),(357487,'_transient_bba3a3921_elements','a:0:{}','yes'),(357488,'_transient_bba3a3921_custom_js','','yes'),(357489,'_transient_bba3a3921_updated_at','1605059632','yes'),(357500,'_transient_6c90b6c76_elements','a:0:{}','yes'),(357501,'_transient_6c90b6c76_custom_js','','yes'),(140984,'houzez_ptype_settings','a:7:{s:18:\"houzez_agents_post\";s:7:\"enabled\";s:20:\"houzez_agencies_post\";s:7:\"enabled\";s:20:\"houzez_packages_post\";s:8:\"disabled\";s:20:\"houzez_invoices_post\";s:8:\"disabled\";s:20:\"houzez_partners_post\";s:7:\"enabled\";s:24:\"houzez_testimonials_post\";s:7:\"enabled\";s:25:\"houzez_packages_info_post\";s:7:\"enabled\";}','yes'),(1251045,'eael_global_settings','a:1:{s:22:\"eael_ext_scroll_to_top\";a:0:{}}','yes'),(1353901,'6b23e887a_eael_updated_at','1650419774','no'),(1471264,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.0.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.0.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.0-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.0\";s:7:\"version\";s:3:\"6.0\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.0.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.0.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.0-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.0\";s:7:\"version\";s:3:\"6.0\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1657487500;s:15:\"version_checked\";s:5:\"5.9.3\";s:12:\"translations\";a:0:{}}','no'),(1546582,'f98544ce5_eael_updated_at','1656030088','no'),(1605632,'elementor_events_db_version','1.0.0','no'),(1546580,'f98544ce5_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(361468,'widget_ezw_tco','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(361469,'ez-toc-settings','a:38:{s:15:\"fragment_prefix\";s:1:\"i\";s:8:\"position\";s:6:\"before\";s:5:\"start\";s:1:\"4\";s:17:\"show_heading_text\";s:1:\"1\";s:12:\"heading_text\";s:17:\"Table of Contents\";s:18:\"enabled_post_types\";a:3:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:12:\"houzez_agent\";s:12:\"houzez_agent\";}s:14:\"show_hierarchy\";s:1:\"1\";s:7:\"counter\";s:7:\"decimal\";s:13:\"smooth_scroll\";s:1:\"1\";s:20:\"smooth_scroll_offset\";s:2:\"30\";s:10:\"visibility\";s:1:\"1\";s:5:\"width\";s:4:\"auto\";s:12:\"width_custom\";s:3:\"275\";s:18:\"width_custom_units\";s:2:\"px\";s:8:\"wrapping\";s:4:\"none\";s:15:\"title_font_size\";s:3:\"120\";s:21:\"title_font_size_units\";s:1:\"%\";s:17:\"title_font_weight\";s:3:\"500\";s:9:\"font_size\";s:2:\"95\";s:15:\"font_size_units\";s:1:\"%\";s:5:\"theme\";s:4:\"grey\";s:24:\"custom_background_colour\";s:4:\"#fff\";s:20:\"custom_border_colour\";s:4:\"#ddd\";s:19:\"custom_title_colour\";s:4:\"#999\";s:18:\"custom_link_colour\";s:7:\"#428bca\";s:24:\"custom_link_hover_colour\";s:7:\"#2a6496\";s:26:\"custom_link_visited_colour\";s:7:\"#428bca\";s:14:\"heading_levels\";a:6:{i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";}s:19:\"css_container_class\";s:0:\"\";s:7:\"exclude\";s:0:\"\";s:27:\"mobile_smooth_scroll_offset\";s:1:\"0\";s:13:\"restrict_path\";s:0:\"\";s:21:\"widget_affix_selector\";s:0:\"\";s:26:\"visibility_hide_by_default\";s:1:\"0\";s:9:\"lowercase\";s:1:\"0\";s:9:\"hyphenate\";s:1:\"0\";s:16:\"include_homepage\";s:1:\"0\";s:11:\"exclude_css\";s:1:\"0\";}','yes'),(361451,'_ninja_tables_settings_migration','1','yes'),(361452,'_ninja_tables_sorting_migration','1','yes'),(361454,'_ninja_tables_plugin_suggest_dismiss','1602689392','yes'),(361457,'_ninja_table_db_settings_owner_id','1','yes'),(141022,'um_core_forms','a:3:{s:8:\"register\";i:655;s:5:\"login\";i:656;s:7:\"profile\";i:657;}','yes'),(141023,'um_core_directories','a:1:{s:7:\"members\";i:658;}','yes'),(141017,'um_last_version_upgrade','2.1.5','yes'),(141018,'um_first_activation_date','1588345590','yes'),(141019,'um_version','2.1.5','yes'),(141020,'__ultimatemember_sitekey','lantern-realty.com-OtHvKOiixjPKqu7EUiW1','yes'),(141021,'um_is_installed','1','yes'),(141024,'um_options','a:164:{s:30:\"restricted_access_post_metabox\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:19:\"uninstall_on_delete\";i:0;s:14:\"permalink_base\";s:10:\"user_login\";s:12:\"display_name\";s:9:\"full_name\";s:18:\"display_name_field\";s:0:\"\";s:15:\"author_redirect\";i:1;s:12:\"members_page\";i:1;s:13:\"use_gravatars\";i:0;s:37:\"use_um_gravatar_default_builtin_image\";s:7:\"default\";s:29:\"use_um_gravatar_default_image\";i:0;s:24:\"reset_require_strongpass\";i:0;s:20:\"account_tab_password\";i:1;s:19:\"account_tab_privacy\";i:1;s:25:\"account_tab_notifications\";i:1;s:18:\"account_tab_delete\";i:1;s:19:\"delete_account_text\";s:150:\"Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account enter your password below\";s:12:\"account_name\";i:1;s:20:\"account_name_disable\";i:0;s:20:\"account_name_require\";i:1;s:13:\"account_email\";i:1;s:24:\"account_general_password\";i:0;s:25:\"account_hide_in_directory\";i:1;s:33:\"account_hide_in_directory_default\";s:2:\"No\";s:26:\"account_require_strongpass\";i:0;s:17:\"photo_thumb_sizes\";a:3:{i:0;i:40;i:1;i:80;i:2;i:190;}s:17:\"cover_thumb_sizes\";a:2:{i:0;i:300;i:1;i:600;}s:10:\"accessible\";i:0;s:15:\"access_redirect\";s:0:\"\";s:19:\"access_exclude_uris\";a:0:{}s:20:\"home_page_accessible\";i:1;s:24:\"category_page_accessible\";i:1;s:25:\"restricted_access_message\";s:0:\"\";s:17:\"restricted_blocks\";i:0;s:13:\"enable_blocks\";i:0;s:24:\"restricted_block_message\";s:0:\"\";s:27:\"enable_reset_password_limit\";i:1;s:27:\"reset_password_limit_number\";i:3;s:14:\"blocked_emails\";s:0:\"\";s:13:\"blocked_words\";s:47:\"admin\r\nadministrator\r\nwebmaster\r\nsupport\r\nstaff\";s:14:\"default_avatar\";s:0:\"\";s:13:\"default_cover\";s:0:\"\";s:28:\"disable_profile_photo_upload\";i:0;s:21:\"profile_show_metaicon\";i:0;s:12:\"profile_menu\";i:1;s:24:\"profile_menu_default_tab\";s:4:\"main\";s:18:\"profile_menu_icons\";i:1;s:13:\"form_asterisk\";i:0;s:13:\"profile_title\";s:28:\"{display_name} | {site_name}\";s:12:\"profile_desc\";s:83:\"{display_name} is on {site_name}. Join {site_name} to view {display_name}\'s profile\";s:11:\"admin_email\";s:20:\"ckeziah127@gmail.com\";s:9:\"mail_from\";s:30:\"Lantern Realty and Development\";s:14:\"mail_from_addr\";s:20:\"ckeziah127@gmail.com\";s:10:\"email_html\";i:1;s:17:\"image_compression\";i:60;s:15:\"image_max_width\";i:1000;s:15:\"cover_min_width\";i:1000;s:22:\"profile_photo_max_size\";i:999999999;s:20:\"cover_photo_max_size\";i:999999999;s:22:\"custom_roles_increment\";i:1;s:28:\"um_profile_object_cache_stop\";i:0;s:16:\"rest_api_version\";s:3:\"2.0\";s:26:\"member_directory_own_table\";i:0;s:21:\"profile_show_html_bio\";i:0;s:16:\"profile_tab_main\";i:1;s:24:\"profile_tab_main_privacy\";i:0;s:22:\"profile_tab_main_roles\";s:0:\"\";s:17:\"profile_tab_posts\";i:1;s:25:\"profile_tab_posts_privacy\";i:0;s:23:\"profile_tab_posts_roles\";s:0:\"\";s:20:\"profile_tab_comments\";i:1;s:28:\"profile_tab_comments_privacy\";i:0;s:26:\"profile_tab_comments_roles\";s:0:\"\";s:16:\"welcome_email_on\";b:1;s:17:\"welcome_email_sub\";s:23:\"Welcome to {site_name}!\";s:13:\"welcome_email\";s:365:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account is now active.<br /><br />To login please visit the following url:<br /><br />{login_url} <br /><br />Your account e-mail: {email} <br />Your account username: {username} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:18:\"checkmail_email_on\";b:0;s:19:\"checkmail_email_sub\";s:28:\"Please activate your account\";s:15:\"checkmail_email\";s:304:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! To activate your account, please click the link below to confirm your email address:<br /><br />{account_activation_link} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks, <br />{site_name}\";s:16:\"pending_email_on\";b:0;s:17:\"pending_email_sub\";s:30:\"[{site_name}] New user account\";s:13:\"pending_email\";s:309:\"Hi {display_name}, <br /><br />Thank you for signing up with {site_name}! Your account is currently being reviewed by a member of our team.<br /><br />Please allow us some time to process your request.<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"approved_email_on\";b:0;s:18:\"approved_email_sub\";s:41:\"Your account at {site_name} is now active\";s:14:\"approved_email\";s:438:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account has been approved and is now active.<br /><br />To login please visit the following url:<br /><br />{login_url}<br /><br />Your account e-mail: {email}<br />Your account username: {username}<br />Set your account password: {password_reset_link}<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"rejected_email_on\";b:0;s:18:\"rejected_email_sub\";s:30:\"Your account has been rejected\";s:14:\"rejected_email\";s:288:\"Hi {display_name},<br /><br />Thank you for applying for membership to {site_name}! We have reviewed your information and unfortunately we are unable to accept you as a member at this moment.<br /><br />Please feel free to apply again at a future date.<br /><br />Thanks,<br />{site_name}\";s:17:\"inactive_email_on\";b:1;s:18:\"inactive_email_sub\";s:33:\"Your account has been deactivated\";s:14:\"inactive_email\";s:250:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deactivated.<br /><br />If you would like your account to be reactivated please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"deletion_email_on\";b:1;s:18:\"deletion_email_sub\";s:29:\"Your account has been deleted\";s:14:\"deletion_email\";s:355:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deleted. All of your personal information has been permanently deleted and you will no longer be able to login to {site_name}.<br /><br />If your account has been deleted by accident please contact us at {admin_email} <br />Thanks,<br />{site_name}\";s:16:\"resetpw_email_on\";b:1;s:17:\"resetpw_email_sub\";s:19:\"Reset your password\";s:13:\"resetpw_email\";s:303:\"Hi {display_name},<br /><br />We received a request to reset the password for your account. If you made this request, click the link below to change your password:<br /><br />{password_reset_link}<br /><br />If you didn\'t make this request, you can ignore this email <br /><br />Thanks,<br />{site_name}\";s:18:\"changedpw_email_on\";b:1;s:19:\"changedpw_email_sub\";s:42:\"Your {site_name} password has been changed\";s:15:\"changedpw_email\";s:307:\"Hi {display_name},<br /><br />You recently changed the password associated with your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:23:\"changedaccount_email_on\";b:1;s:24:\"changedaccount_email_sub\";s:39:\"Your account at {site_name} was updated\";s:20:\"changedaccount_email\";s:278:\"Hi {display_name},<br /><br />You recently updated your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:24:\"notification_new_user_on\";b:1;s:25:\"notification_new_user_sub\";s:30:\"[{site_name}] New user account\";s:21:\"notification_new_user\";s:211:\"{display_name} has just created an account on {site_name}. To view their profile click here:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:22:\"notification_review_on\";b:0;s:23:\"notification_review_sub\";s:38:\"[{site_name}] New user awaiting review\";s:19:\"notification_review\";s:277:\"{display_name} has just applied for membership to {site_name} and is waiting to be reviewed.<br /><br />To review this member please click the following link:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:24:\"notification_deletion_on\";b:0;s:25:\"notification_deletion_sub\";s:29:\"[{site_name}] Account deleted\";s:21:\"notification_deletion\";s:58:\"{display_name} has just deleted their {site_name} account.\";s:9:\"core_user\";s:1:\"2\";s:10:\"core_login\";s:1:\"2\";s:13:\"core_register\";s:1:\"2\";s:12:\"core_members\";s:1:\"2\";s:11:\"core_logout\";s:1:\"2\";s:12:\"core_account\";s:3:\"649\";s:19:\"core_password-reset\";s:1:\"2\";s:17:\"profile_show_name\";i:1;s:25:\"profile_show_social_links\";i:0;s:16:\"profile_show_bio\";i:1;s:20:\"profile_bio_maxchars\";i:180;s:19:\"profile_header_menu\";s:2:\"bc\";s:18:\"profile_empty_text\";i:1;s:22:\"profile_empty_text_emo\";i:1;s:12:\"profile_role\";a:0:{}s:16:\"profile_template\";s:7:\"profile\";s:17:\"profile_max_width\";s:6:\"1000px\";s:22:\"profile_area_max_width\";s:5:\"600px\";s:13:\"profile_align\";s:6:\"center\";s:13:\"profile_icons\";s:5:\"label\";s:28:\"profile_disable_photo_upload\";i:0;s:17:\"profile_photosize\";s:3:\"190\";s:21:\"profile_cover_enabled\";i:1;s:17:\"profile_coversize\";s:8:\"original\";s:19:\"profile_cover_ratio\";s:5:\"2.7:1\";s:19:\"profile_photocorner\";s:1:\"1\";s:17:\"profile_header_bg\";s:0:\"\";s:24:\"profile_primary_btn_word\";s:14:\"Update Profile\";s:21:\"profile_secondary_btn\";s:1:\"1\";s:26:\"profile_secondary_btn_word\";s:6:\"Cancel\";s:13:\"register_role\";s:1:\"0\";s:17:\"register_template\";s:8:\"register\";s:18:\"register_max_width\";s:5:\"450px\";s:14:\"register_align\";s:6:\"center\";s:14:\"register_icons\";s:5:\"label\";s:25:\"register_primary_btn_word\";s:8:\"Register\";s:22:\"register_secondary_btn\";i:1;s:27:\"register_secondary_btn_word\";s:5:\"Login\";s:26:\"register_secondary_btn_url\";s:0:\"\";s:14:\"login_template\";s:5:\"login\";s:15:\"login_max_width\";s:5:\"450px\";s:11:\"login_align\";s:6:\"center\";s:11:\"login_icons\";s:5:\"label\";s:22:\"login_primary_btn_word\";s:5:\"Login\";s:22:\"login_forgot_pass_link\";i:1;s:21:\"login_show_rememberme\";i:1;s:19:\"login_secondary_btn\";i:1;s:24:\"login_secondary_btn_word\";s:8:\"Register\";s:23:\"login_secondary_btn_url\";s:0:\"\";s:18:\"directory_template\";s:7:\"members\";s:16:\"directory_header\";s:21:\"{total_users} Members\";s:23:\"directory_header_single\";s:20:\"{total_users} Member\";s:14:\"pages_settings\";s:1:\"1\";}','yes'),(141025,'um_role_subscriber_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(141026,'um_role_author_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(141027,'um_role_contributor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(141028,'um_role_editor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(141029,'um_role_administrator_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:1;s:24:\"_um_can_not_see_adminbar\";i:0;s:21:\"_um_can_edit_everyone\";i:1;s:23:\"_um_can_delete_everyone\";i:1;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:20:\"_um_default_homepage\";i:1;s:15:\"_um_after_login\";s:14:\"redirect_admin\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:1;s:30:\"_um_can_access_private_profile\";i:1;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(141030,'widget_um_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(141031,'um_cache_userdata_1','a:167:{s:2:\"ID\";i:1;s:10:\"user_login\";s:5:\"admin\";s:9:\"user_pass\";s:34:\"$P$BTCQX/NvDFrHwrT7kO3c.Fvk3bWFG..\";s:13:\"user_nicename\";s:5:\"admin\";s:10:\"user_email\";s:20:\"ckeziah127@gmail.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2018-08-20 00:26:23\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"admin\";s:13:\"administrator\";b:1;s:8:\"wp_roles\";s:13:\"administrator\";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: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:17:\"create_properties\";b:1;s:18:\"publish_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:23:\"read_private_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:22:\"edit_others_properties\";b:1;s:24:\"delete_others_properties\";b:1;s:23:\"edit_private_properties\";b:1;s:19:\"delete_user_package\";b:1;s:20:\"delete_user_packages\";b:1;s:18:\"edit_user_packages\";b:1;s:27:\"delete_others_user_packages\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:18:\"delete_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:19:\"delete_testimonials\";b:1;s:27:\"delete_private_testimonials\";b:1;s:26:\"delete_others_testimonials\";b:1;s:24:\"edit_others_testimonials\";b:1;s:25:\"edit_private_testimonials\";b:1;s:10:\"read_agent\";b:1;s:12:\"delete_agent\";b:1;s:10:\"edit_agent\";b:1;s:13:\"create_agents\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:14:\"publish_agents\";b:1;s:19:\"read_private_agents\";b:1;s:13:\"delete_agents\";b:1;s:21:\"delete_private_agents\";b:1;s:23:\"delete_published_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"edit_private_agents\";b:1;s:21:\"edit_published_agents\";b:1;s:11:\"run_adminer\";b:1;s:24:\"manage_user_registration\";b:1;s:22:\"edit_user_registration\";b:1;s:22:\"read_user_registration\";b:1;s:24:\"delete_user_registration\";b:1;s:23:\"edit_user_registrations\";b:1;s:30:\"edit_others_user_registrations\";b:1;s:26:\"publish_user_registrations\";b:1;s:31:\"read_private_user_registrations\";b:1;s:25:\"delete_user_registrations\";b:1;s:33:\"delete_private_user_registrations\";b:1;s:35:\"delete_published_user_registrations\";b:1;s:32:\"delete_others_user_registrations\";b:1;s:31:\"edit_private_user_registrations\";b:1;s:33:\"edit_published_user_registrations\";b:1;s:30:\"manage_user_registration_terms\";b:1;s:28:\"edit_user_registration_terms\";b:1;s:30:\"delete_user_registration_terms\";b:1;s:30:\"assign_user_registration_terms\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:5:\"admin\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:18:\"show_welcome_panel\";s:1:\"0\";s:39:\"lrwp_dashboard_quick_press_last_post_id\";s:3:\"588\";s:25:\"community-events-location\";s:34:\"a:1:{s:2:\"ip\";s:11:\"172.72.70.0\";}\";s:23:\"jetpack_tracks_wpcom_id\";N;s:22:\"jetpack_tracks_anon_id\";s:32:\"jetpack:x/sjnzYY8tArjzB60B7fetdU\";s:24:\"show_try_gutenberg_panel\";s:1:\"0\";s:14:\"lrwp_r_tru_u_x\";s:46:\"a:2:{s:2:\"id\";i:0;s:7:\"expires\";i:1549742588;}\";s:29:\"autodescription-user-settings\";s:30:\"a:1:{s:12:\"counter_type\";i:0;}\";s:15:\"ur_first_access\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:24:\"um_member_directory_data\";s:137:\"a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"role\";s:13:\"administrator\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:18:\"can_access_wpadmin\";i:1;s:20:\"can_not_see_adminbar\";i:0;s:17:\"can_edit_everyone\";i:1;s:19:\"can_delete_everyone\";i:1;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:16:\"default_homepage\";i:1;s:11:\"after_login\";s:14:\"redirect_admin\";s:12:\"after_logout\";s:13:\"redirect_home\";s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:1;s:26:\"can_access_private_profile\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"super_admin\";i:1;}','no'),(141049,'um_cached_users_queue','0','no'),(141034,'um_cache_fonticons','a:1219:{i:0;s:13:\"um-icon-alert\";i:1;s:21:\"um-icon-alert-circled\";i:2;s:19:\"um-icon-android-add\";i:3;s:26:\"um-icon-android-add-circle\";i:4;s:27:\"um-icon-android-alarm-clock\";i:5;s:21:\"um-icon-android-alert\";i:6;s:20:\"um-icon-android-apps\";i:7;s:23:\"um-icon-android-archive\";i:8;s:26:\"um-icon-android-arrow-back\";i:9;s:26:\"um-icon-android-arrow-down\";i:10;s:30:\"um-icon-android-arrow-dropdown\";i:11;s:37:\"um-icon-android-arrow-dropdown-circle\";i:12;s:30:\"um-icon-android-arrow-dropleft\";i:13;s:37:\"um-icon-android-arrow-dropleft-circle\";i:14;s:31:\"um-icon-android-arrow-dropright\";i:15;s:38:\"um-icon-android-arrow-dropright-circle\";i:16;s:28:\"um-icon-android-arrow-dropup\";i:17;s:35:\"um-icon-android-arrow-dropup-circle\";i:18;s:29:\"um-icon-android-arrow-forward\";i:19;s:24:\"um-icon-android-arrow-up\";i:20;s:22:\"um-icon-android-attach\";i:21;s:19:\"um-icon-android-bar\";i:22;s:23:\"um-icon-android-bicycle\";i:23;s:20:\"um-icon-android-boat\";i:24;s:24:\"um-icon-android-bookmark\";i:25;s:20:\"um-icon-android-bulb\";i:26;s:19:\"um-icon-android-bus\";i:27;s:24:\"um-icon-android-calendar\";i:28;s:20:\"um-icon-android-call\";i:29;s:22:\"um-icon-android-camera\";i:30;s:22:\"um-icon-android-cancel\";i:31;s:19:\"um-icon-android-car\";i:32;s:20:\"um-icon-android-cart\";i:33;s:20:\"um-icon-android-chat\";i:34;s:24:\"um-icon-android-checkbox\";i:35;s:30:\"um-icon-android-checkbox-blank\";i:36;s:32:\"um-icon-android-checkbox-outline\";i:37;s:38:\"um-icon-android-checkbox-outline-blank\";i:38;s:32:\"um-icon-android-checkmark-circle\";i:39;s:25:\"um-icon-android-clipboard\";i:40;s:21:\"um-icon-android-close\";i:41;s:21:\"um-icon-android-cloud\";i:42;s:28:\"um-icon-android-cloud-circle\";i:43;s:26:\"um-icon-android-cloud-done\";i:44;s:29:\"um-icon-android-cloud-outline\";i:45;s:29:\"um-icon-android-color-palette\";i:46;s:23:\"um-icon-android-compass\";i:47;s:23:\"um-icon-android-contact\";i:48;s:24:\"um-icon-android-contacts\";i:49;s:24:\"um-icon-android-contract\";i:50;s:22:\"um-icon-android-create\";i:51;s:22:\"um-icon-android-delete\";i:52;s:23:\"um-icon-android-desktop\";i:53;s:24:\"um-icon-android-document\";i:54;s:20:\"um-icon-android-done\";i:55;s:24:\"um-icon-android-done-all\";i:56;s:24:\"um-icon-android-download\";i:57;s:22:\"um-icon-android-drafts\";i:58;s:20:\"um-icon-android-exit\";i:59;s:22:\"um-icon-android-expand\";i:60;s:24:\"um-icon-android-favorite\";i:61;s:32:\"um-icon-android-favorite-outline\";i:62;s:20:\"um-icon-android-film\";i:63;s:22:\"um-icon-android-folder\";i:64;s:27:\"um-icon-android-folder-open\";i:65;s:22:\"um-icon-android-funnel\";i:66;s:21:\"um-icon-android-globe\";i:67;s:20:\"um-icon-android-hand\";i:68;s:23:\"um-icon-android-hangout\";i:69;s:21:\"um-icon-android-happy\";i:70;s:20:\"um-icon-android-home\";i:71;s:21:\"um-icon-android-image\";i:72;s:22:\"um-icon-android-laptop\";i:73;s:20:\"um-icon-android-list\";i:74;s:22:\"um-icon-android-locate\";i:75;s:20:\"um-icon-android-lock\";i:76;s:20:\"um-icon-android-mail\";i:77;s:19:\"um-icon-android-map\";i:78;s:20:\"um-icon-android-menu\";i:79;s:26:\"um-icon-android-microphone\";i:80;s:30:\"um-icon-android-microphone-off\";i:81;s:31:\"um-icon-android-more-horizontal\";i:82;s:29:\"um-icon-android-more-vertical\";i:83;s:24:\"um-icon-android-navigate\";i:84;s:29:\"um-icon-android-notifications\";i:85;s:34:\"um-icon-android-notifications-none\";i:86;s:33:\"um-icon-android-notifications-off\";i:87;s:20:\"um-icon-android-open\";i:88;s:23:\"um-icon-android-options\";i:89;s:22:\"um-icon-android-people\";i:90;s:22:\"um-icon-android-person\";i:91;s:26:\"um-icon-android-person-add\";i:92;s:31:\"um-icon-android-phone-landscape\";i:93;s:30:\"um-icon-android-phone-portrait\";i:94;s:19:\"um-icon-android-pin\";i:95;s:21:\"um-icon-android-plane\";i:96;s:25:\"um-icon-android-playstore\";i:97;s:21:\"um-icon-android-print\";i:98;s:32:\"um-icon-android-radio-button-off\";i:99;s:31:\"um-icon-android-radio-button-on\";i:100;s:23:\"um-icon-android-refresh\";i:101;s:22:\"um-icon-android-remove\";i:102;s:29:\"um-icon-android-remove-circle\";i:103;s:26:\"um-icon-android-restaurant\";i:104;s:19:\"um-icon-android-sad\";i:105;s:22:\"um-icon-android-search\";i:106;s:20:\"um-icon-android-send\";i:107;s:24:\"um-icon-android-settings\";i:108;s:21:\"um-icon-android-share\";i:109;s:25:\"um-icon-android-share-alt\";i:110;s:20:\"um-icon-android-star\";i:111;s:25:\"um-icon-android-star-half\";i:112;s:28:\"um-icon-android-star-outline\";i:113;s:25:\"um-icon-android-stopwatch\";i:114;s:22:\"um-icon-android-subway\";i:115;s:21:\"um-icon-android-sunny\";i:116;s:20:\"um-icon-android-sync\";i:117;s:23:\"um-icon-android-textsms\";i:118;s:20:\"um-icon-android-time\";i:119;s:21:\"um-icon-android-train\";i:120;s:22:\"um-icon-android-unlock\";i:121;s:22:\"um-icon-android-upload\";i:122;s:27:\"um-icon-android-volume-down\";i:123;s:27:\"um-icon-android-volume-mute\";i:124;s:26:\"um-icon-android-volume-off\";i:125;s:25:\"um-icon-android-volume-up\";i:126;s:20:\"um-icon-android-walk\";i:127;s:23:\"um-icon-android-warning\";i:128;s:21:\"um-icon-android-watch\";i:129;s:20:\"um-icon-android-wifi\";i:130;s:16:\"um-icon-aperture\";i:131;s:15:\"um-icon-archive\";i:132;s:20:\"um-icon-arrow-down-a\";i:133;s:20:\"um-icon-arrow-down-b\";i:134;s:20:\"um-icon-arrow-down-c\";i:135;s:20:\"um-icon-arrow-expand\";i:136;s:29:\"um-icon-arrow-graph-down-left\";i:137;s:30:\"um-icon-arrow-graph-down-right\";i:138;s:27:\"um-icon-arrow-graph-up-left\";i:139;s:28:\"um-icon-arrow-graph-up-right\";i:140;s:20:\"um-icon-arrow-left-a\";i:141;s:20:\"um-icon-arrow-left-b\";i:142;s:20:\"um-icon-arrow-left-c\";i:143;s:18:\"um-icon-arrow-move\";i:144;s:20:\"um-icon-arrow-resize\";i:145;s:25:\"um-icon-arrow-return-left\";i:146;s:26:\"um-icon-arrow-return-right\";i:147;s:21:\"um-icon-arrow-right-a\";i:148;s:21:\"um-icon-arrow-right-b\";i:149;s:21:\"um-icon-arrow-right-c\";i:150;s:20:\"um-icon-arrow-shrink\";i:151;s:18:\"um-icon-arrow-swap\";i:152;s:18:\"um-icon-arrow-up-a\";i:153;s:18:\"um-icon-arrow-up-b\";i:154;s:18:\"um-icon-arrow-up-c\";i:155;s:16:\"um-icon-asterisk\";i:156;s:10:\"um-icon-at\";i:157;s:17:\"um-icon-backspace\";i:158;s:25:\"um-icon-backspace-outline\";i:159;s:11:\"um-icon-bag\";i:160;s:24:\"um-icon-battery-charging\";i:161;s:21:\"um-icon-battery-empty\";i:162;s:20:\"um-icon-battery-full\";i:163;s:20:\"um-icon-battery-half\";i:164;s:19:\"um-icon-battery-low\";i:165;s:14:\"um-icon-beaker\";i:166;s:12:\"um-icon-beer\";i:167;s:17:\"um-icon-bluetooth\";i:168;s:15:\"um-icon-bonfire\";i:169;s:16:\"um-icon-bookmark\";i:170;s:14:\"um-icon-bowtie\";i:171;s:17:\"um-icon-briefcase\";i:172;s:11:\"um-icon-bug\";i:173;s:18:\"um-icon-calculator\";i:174;s:16:\"um-icon-calendar\";i:175;s:14:\"um-icon-camera\";i:176;s:12:\"um-icon-card\";i:177;s:12:\"um-icon-cash\";i:178;s:15:\"um-icon-chatbox\";i:179;s:23:\"um-icon-chatbox-working\";i:180;s:17:\"um-icon-chatboxes\";i:181;s:18:\"um-icon-chatbubble\";i:182;s:26:\"um-icon-chatbubble-working\";i:183;s:19:\"um-icon-chatbubbles\";i:184;s:17:\"um-icon-checkmark\";i:185;s:25:\"um-icon-checkmark-circled\";i:186;s:23:\"um-icon-checkmark-round\";i:187;s:20:\"um-icon-chevron-down\";i:188;s:20:\"um-icon-chevron-left\";i:189;s:21:\"um-icon-chevron-right\";i:190;s:18:\"um-icon-chevron-up\";i:191;s:17:\"um-icon-clipboard\";i:192;s:13:\"um-icon-clock\";i:193;s:13:\"um-icon-close\";i:194;s:21:\"um-icon-close-circled\";i:195;s:19:\"um-icon-close-round\";i:196;s:25:\"um-icon-closed-captioning\";i:197;s:13:\"um-icon-cloud\";i:198;s:12:\"um-icon-code\";i:199;s:21:\"um-icon-code-download\";i:200;s:20:\"um-icon-code-working\";i:201;s:14:\"um-icon-coffee\";i:202;s:15:\"um-icon-compass\";i:203;s:15:\"um-icon-compose\";i:204;s:23:\"um-icon-connection-bars\";i:205;s:16:\"um-icon-contrast\";i:206;s:12:\"um-icon-crop\";i:207;s:12:\"um-icon-cube\";i:208;s:12:\"um-icon-disc\";i:209;s:16:\"um-icon-document\";i:210;s:21:\"um-icon-document-text\";i:211;s:12:\"um-icon-drag\";i:212;s:13:\"um-icon-earth\";i:213;s:13:\"um-icon-easel\";i:214;s:12:\"um-icon-edit\";i:215;s:11:\"um-icon-egg\";i:216;s:13:\"um-icon-eject\";i:217;s:13:\"um-icon-email\";i:218;s:20:\"um-icon-email-unread\";i:219;s:24:\"um-icon-erlenmeyer-flask\";i:220;s:32:\"um-icon-erlenmeyer-flask-bubbles\";i:221;s:11:\"um-icon-eye\";i:222;s:20:\"um-icon-eye-disabled\";i:223;s:14:\"um-icon-female\";i:224;s:14:\"um-icon-filing\";i:225;s:19:\"um-icon-film-marker\";i:226;s:16:\"um-icon-fireball\";i:227;s:12:\"um-icon-flag\";i:228;s:13:\"um-icon-flame\";i:229;s:13:\"um-icon-flash\";i:230;s:17:\"um-icon-flash-off\";i:231;s:14:\"um-icon-folder\";i:232;s:12:\"um-icon-fork\";i:233;s:17:\"um-icon-fork-repo\";i:234;s:15:\"um-icon-forward\";i:235;s:14:\"um-icon-funnel\";i:236;s:14:\"um-icon-gear-a\";i:237;s:14:\"um-icon-gear-b\";i:238;s:12:\"um-icon-grid\";i:239;s:14:\"um-icon-hammer\";i:240;s:13:\"um-icon-happy\";i:241;s:21:\"um-icon-happy-outline\";i:242;s:17:\"um-icon-headphone\";i:243;s:13:\"um-icon-heart\";i:244;s:20:\"um-icon-heart-broken\";i:245;s:12:\"um-icon-help\";i:246;s:17:\"um-icon-help-buoy\";i:247;s:20:\"um-icon-help-circled\";i:248;s:12:\"um-icon-home\";i:249;s:16:\"um-icon-icecream\";i:250;s:13:\"um-icon-image\";i:251;s:14:\"um-icon-images\";i:252;s:19:\"um-icon-information\";i:253;s:27:\"um-icon-information-circled\";i:254;s:13:\"um-icon-ionic\";i:255;s:17:\"um-icon-ios-alarm\";i:256;s:25:\"um-icon-ios-alarm-outline\";i:257;s:18:\"um-icon-ios-albums\";i:258;s:26:\"um-icon-ios-albums-outline\";i:259;s:28:\"um-icon-ios-americanfootball\";i:260;s:36:\"um-icon-ios-americanfootball-outline\";i:261;s:21:\"um-icon-ios-analytics\";i:262;s:29:\"um-icon-ios-analytics-outline\";i:263;s:22:\"um-icon-ios-arrow-back\";i:264;s:22:\"um-icon-ios-arrow-down\";i:265;s:25:\"um-icon-ios-arrow-forward\";i:266;s:22:\"um-icon-ios-arrow-left\";i:267;s:23:\"um-icon-ios-arrow-right\";i:268;s:27:\"um-icon-ios-arrow-thin-down\";i:269;s:27:\"um-icon-ios-arrow-thin-left\";i:270;s:28:\"um-icon-ios-arrow-thin-right\";i:271;s:25:\"um-icon-ios-arrow-thin-up\";i:272;s:20:\"um-icon-ios-arrow-up\";i:273;s:14:\"um-icon-ios-at\";i:274;s:22:\"um-icon-ios-at-outline\";i:275;s:19:\"um-icon-ios-barcode\";i:276;s:27:\"um-icon-ios-barcode-outline\";i:277;s:20:\"um-icon-ios-baseball\";i:278;s:28:\"um-icon-ios-baseball-outline\";i:279;s:22:\"um-icon-ios-basketball\";i:280;s:30:\"um-icon-ios-basketball-outline\";i:281;s:16:\"um-icon-ios-bell\";i:282;s:24:\"um-icon-ios-bell-outline\";i:283;s:16:\"um-icon-ios-body\";i:284;s:24:\"um-icon-ios-body-outline\";i:285;s:16:\"um-icon-ios-bolt\";i:286;s:24:\"um-icon-ios-bolt-outline\";i:287;s:16:\"um-icon-ios-book\";i:288;s:24:\"um-icon-ios-book-outline\";i:289;s:21:\"um-icon-ios-bookmarks\";i:290;s:29:\"um-icon-ios-bookmarks-outline\";i:291;s:15:\"um-icon-ios-box\";i:292;s:23:\"um-icon-ios-box-outline\";i:293;s:21:\"um-icon-ios-briefcase\";i:294;s:29:\"um-icon-ios-briefcase-outline\";i:295;s:20:\"um-icon-ios-browsers\";i:296;s:28:\"um-icon-ios-browsers-outline\";i:297;s:22:\"um-icon-ios-calculator\";i:298;s:30:\"um-icon-ios-calculator-outline\";i:299;s:20:\"um-icon-ios-calendar\";i:300;s:28:\"um-icon-ios-calendar-outline\";i:301;s:18:\"um-icon-ios-camera\";i:302;s:26:\"um-icon-ios-camera-outline\";i:303;s:16:\"um-icon-ios-cart\";i:304;s:24:\"um-icon-ios-cart-outline\";i:305;s:21:\"um-icon-ios-chatboxes\";i:306;s:29:\"um-icon-ios-chatboxes-outline\";i:307;s:22:\"um-icon-ios-chatbubble\";i:308;s:30:\"um-icon-ios-chatbubble-outline\";i:309;s:21:\"um-icon-ios-checkmark\";i:310;s:27:\"um-icon-ios-checkmark-empty\";i:311;s:29:\"um-icon-ios-checkmark-outline\";i:312;s:25:\"um-icon-ios-circle-filled\";i:313;s:26:\"um-icon-ios-circle-outline\";i:314;s:17:\"um-icon-ios-clock\";i:315;s:25:\"um-icon-ios-clock-outline\";i:316;s:17:\"um-icon-ios-close\";i:317;s:23:\"um-icon-ios-close-empty\";i:318;s:25:\"um-icon-ios-close-outline\";i:319;s:17:\"um-icon-ios-cloud\";i:320;s:26:\"um-icon-ios-cloud-download\";i:321;s:34:\"um-icon-ios-cloud-download-outline\";i:322;s:25:\"um-icon-ios-cloud-outline\";i:323;s:24:\"um-icon-ios-cloud-upload\";i:324;s:32:\"um-icon-ios-cloud-upload-outline\";i:325;s:18:\"um-icon-ios-cloudy\";i:326;s:24:\"um-icon-ios-cloudy-night\";i:327;s:32:\"um-icon-ios-cloudy-night-outline\";i:328;s:26:\"um-icon-ios-cloudy-outline\";i:329;s:15:\"um-icon-ios-cog\";i:330;s:23:\"um-icon-ios-cog-outline\";i:331;s:24:\"um-icon-ios-color-filter\";i:332;s:32:\"um-icon-ios-color-filter-outline\";i:333;s:22:\"um-icon-ios-color-wand\";i:334;s:30:\"um-icon-ios-color-wand-outline\";i:335;s:19:\"um-icon-ios-compose\";i:336;s:27:\"um-icon-ios-compose-outline\";i:337;s:19:\"um-icon-ios-contact\";i:338;s:27:\"um-icon-ios-contact-outline\";i:339;s:16:\"um-icon-ios-copy\";i:340;s:24:\"um-icon-ios-copy-outline\";i:341;s:16:\"um-icon-ios-crop\";i:342;s:23:\"um-icon-ios-crop-strong\";i:343;s:20:\"um-icon-ios-download\";i:344;s:28:\"um-icon-ios-download-outline\";i:345;s:16:\"um-icon-ios-drag\";i:346;s:17:\"um-icon-ios-email\";i:347;s:25:\"um-icon-ios-email-outline\";i:348;s:15:\"um-icon-ios-eye\";i:349;s:23:\"um-icon-ios-eye-outline\";i:350;s:23:\"um-icon-ios-fastforward\";i:351;s:31:\"um-icon-ios-fastforward-outline\";i:352;s:18:\"um-icon-ios-filing\";i:353;s:26:\"um-icon-ios-filing-outline\";i:354;s:16:\"um-icon-ios-film\";i:355;s:24:\"um-icon-ios-film-outline\";i:356;s:16:\"um-icon-ios-flag\";i:357;s:24:\"um-icon-ios-flag-outline\";i:358;s:17:\"um-icon-ios-flame\";i:359;s:25:\"um-icon-ios-flame-outline\";i:360;s:17:\"um-icon-ios-flask\";i:361;s:25:\"um-icon-ios-flask-outline\";i:362;s:18:\"um-icon-ios-flower\";i:363;s:26:\"um-icon-ios-flower-outline\";i:364;s:18:\"um-icon-ios-folder\";i:365;s:26:\"um-icon-ios-folder-outline\";i:366;s:20:\"um-icon-ios-football\";i:367;s:28:\"um-icon-ios-football-outline\";i:368;s:29:\"um-icon-ios-game-controller-a\";i:369;s:37:\"um-icon-ios-game-controller-a-outline\";i:370;s:29:\"um-icon-ios-game-controller-b\";i:371;s:37:\"um-icon-ios-game-controller-b-outline\";i:372;s:16:\"um-icon-ios-gear\";i:373;s:24:\"um-icon-ios-gear-outline\";i:374;s:19:\"um-icon-ios-glasses\";i:375;s:27:\"um-icon-ios-glasses-outline\";i:376;s:21:\"um-icon-ios-grid-view\";i:377;s:29:\"um-icon-ios-grid-view-outline\";i:378;s:17:\"um-icon-ios-heart\";i:379;s:25:\"um-icon-ios-heart-outline\";i:380;s:16:\"um-icon-ios-help\";i:381;s:22:\"um-icon-ios-help-empty\";i:382;s:24:\"um-icon-ios-help-outline\";i:383;s:16:\"um-icon-ios-home\";i:384;s:24:\"um-icon-ios-home-outline\";i:385;s:20:\"um-icon-ios-infinite\";i:386;s:28:\"um-icon-ios-infinite-outline\";i:387;s:23:\"um-icon-ios-information\";i:388;s:29:\"um-icon-ios-information-empty\";i:389;s:31:\"um-icon-ios-information-outline\";i:390;s:25:\"um-icon-ios-ionic-outline\";i:391;s:18:\"um-icon-ios-keypad\";i:392;s:26:\"um-icon-ios-keypad-outline\";i:393;s:21:\"um-icon-ios-lightbulb\";i:394;s:29:\"um-icon-ios-lightbulb-outline\";i:395;s:16:\"um-icon-ios-list\";i:396;s:24:\"um-icon-ios-list-outline\";i:397;s:20:\"um-icon-ios-location\";i:398;s:28:\"um-icon-ios-location-outline\";i:399;s:18:\"um-icon-ios-locked\";i:400;s:26:\"um-icon-ios-locked-outline\";i:401;s:16:\"um-icon-ios-loop\";i:402;s:23:\"um-icon-ios-loop-strong\";i:403;s:19:\"um-icon-ios-medical\";i:404;s:27:\"um-icon-ios-medical-outline\";i:405;s:18:\"um-icon-ios-medkit\";i:406;s:26:\"um-icon-ios-medkit-outline\";i:407;s:15:\"um-icon-ios-mic\";i:408;s:19:\"um-icon-ios-mic-off\";i:409;s:23:\"um-icon-ios-mic-outline\";i:410;s:17:\"um-icon-ios-minus\";i:411;s:23:\"um-icon-ios-minus-empty\";i:412;s:25:\"um-icon-ios-minus-outline\";i:413;s:19:\"um-icon-ios-monitor\";i:414;s:27:\"um-icon-ios-monitor-outline\";i:415;s:16:\"um-icon-ios-moon\";i:416;s:24:\"um-icon-ios-moon-outline\";i:417;s:16:\"um-icon-ios-more\";i:418;s:24:\"um-icon-ios-more-outline\";i:419;s:24:\"um-icon-ios-musical-note\";i:420;s:25:\"um-icon-ios-musical-notes\";i:421;s:20:\"um-icon-ios-navigate\";i:422;s:28:\"um-icon-ios-navigate-outline\";i:423;s:21:\"um-icon-ios-nutrition\";i:424;s:29:\"um-icon-ios-nutrition-outline\";i:425;s:17:\"um-icon-ios-paper\";i:426;s:25:\"um-icon-ios-paper-outline\";i:427;s:22:\"um-icon-ios-paperplane\";i:428;s:30:\"um-icon-ios-paperplane-outline\";i:429;s:23:\"um-icon-ios-partlysunny\";i:430;s:31:\"um-icon-ios-partlysunny-outline\";i:431;s:17:\"um-icon-ios-pause\";i:432;s:25:\"um-icon-ios-pause-outline\";i:433;s:15:\"um-icon-ios-paw\";i:434;s:23:\"um-icon-ios-paw-outline\";i:435;s:18:\"um-icon-ios-people\";i:436;s:26:\"um-icon-ios-people-outline\";i:437;s:18:\"um-icon-ios-person\";i:438;s:26:\"um-icon-ios-person-outline\";i:439;s:21:\"um-icon-ios-personadd\";i:440;s:29:\"um-icon-ios-personadd-outline\";i:441;s:18:\"um-icon-ios-photos\";i:442;s:26:\"um-icon-ios-photos-outline\";i:443;s:15:\"um-icon-ios-pie\";i:444;s:23:\"um-icon-ios-pie-outline\";i:445;s:16:\"um-icon-ios-pint\";i:446;s:24:\"um-icon-ios-pint-outline\";i:447;s:16:\"um-icon-ios-play\";i:448;s:24:\"um-icon-ios-play-outline\";i:449;s:16:\"um-icon-ios-plus\";i:450;s:22:\"um-icon-ios-plus-empty\";i:451;s:24:\"um-icon-ios-plus-outline\";i:452;s:20:\"um-icon-ios-pricetag\";i:453;s:28:\"um-icon-ios-pricetag-outline\";i:454;s:21:\"um-icon-ios-pricetags\";i:455;s:29:\"um-icon-ios-pricetags-outline\";i:456;s:19:\"um-icon-ios-printer\";i:457;s:27:\"um-icon-ios-printer-outline\";i:458;s:17:\"um-icon-ios-pulse\";i:459;s:24:\"um-icon-ios-pulse-strong\";i:460;s:17:\"um-icon-ios-rainy\";i:461;s:25:\"um-icon-ios-rainy-outline\";i:462;s:21:\"um-icon-ios-recording\";i:463;s:29:\"um-icon-ios-recording-outline\";i:464;s:16:\"um-icon-ios-redo\";i:465;s:24:\"um-icon-ios-redo-outline\";i:466;s:19:\"um-icon-ios-refresh\";i:467;s:25:\"um-icon-ios-refresh-empty\";i:468;s:27:\"um-icon-ios-refresh-outline\";i:469;s:18:\"um-icon-ios-reload\";i:470;s:26:\"um-icon-ios-reverse-camera\";i:471;s:34:\"um-icon-ios-reverse-camera-outline\";i:472;s:18:\"um-icon-ios-rewind\";i:473;s:26:\"um-icon-ios-rewind-outline\";i:474;s:16:\"um-icon-ios-rose\";i:475;s:24:\"um-icon-ios-rose-outline\";i:476;s:18:\"um-icon-ios-search\";i:477;s:25:\"um-icon-ios-search-strong\";i:478;s:20:\"um-icon-ios-settings\";i:479;s:27:\"um-icon-ios-settings-strong\";i:480;s:19:\"um-icon-ios-shuffle\";i:481;s:26:\"um-icon-ios-shuffle-strong\";i:482;s:24:\"um-icon-ios-skipbackward\";i:483;s:32:\"um-icon-ios-skipbackward-outline\";i:484;s:23:\"um-icon-ios-skipforward\";i:485;s:31:\"um-icon-ios-skipforward-outline\";i:486;s:17:\"um-icon-ios-snowy\";i:487;s:23:\"um-icon-ios-speedometer\";i:488;s:31:\"um-icon-ios-speedometer-outline\";i:489;s:16:\"um-icon-ios-star\";i:490;s:21:\"um-icon-ios-star-half\";i:491;s:24:\"um-icon-ios-star-outline\";i:492;s:21:\"um-icon-ios-stopwatch\";i:493;s:29:\"um-icon-ios-stopwatch-outline\";i:494;s:17:\"um-icon-ios-sunny\";i:495;s:25:\"um-icon-ios-sunny-outline\";i:496;s:21:\"um-icon-ios-telephone\";i:497;s:29:\"um-icon-ios-telephone-outline\";i:498;s:22:\"um-icon-ios-tennisball\";i:499;s:30:\"um-icon-ios-tennisball-outline\";i:500;s:24:\"um-icon-ios-thunderstorm\";i:501;s:32:\"um-icon-ios-thunderstorm-outline\";i:502;s:16:\"um-icon-ios-time\";i:503;s:24:\"um-icon-ios-time-outline\";i:504;s:17:\"um-icon-ios-timer\";i:505;s:25:\"um-icon-ios-timer-outline\";i:506;s:18:\"um-icon-ios-toggle\";i:507;s:26:\"um-icon-ios-toggle-outline\";i:508;s:17:\"um-icon-ios-trash\";i:509;s:25:\"um-icon-ios-trash-outline\";i:510;s:16:\"um-icon-ios-undo\";i:511;s:24:\"um-icon-ios-undo-outline\";i:512;s:20:\"um-icon-ios-unlocked\";i:513;s:28:\"um-icon-ios-unlocked-outline\";i:514;s:18:\"um-icon-ios-upload\";i:515;s:26:\"um-icon-ios-upload-outline\";i:516;s:20:\"um-icon-ios-videocam\";i:517;s:28:\"um-icon-ios-videocam-outline\";i:518;s:23:\"um-icon-ios-volume-high\";i:519;s:22:\"um-icon-ios-volume-low\";i:520;s:21:\"um-icon-ios-wineglass\";i:521;s:29:\"um-icon-ios-wineglass-outline\";i:522;s:17:\"um-icon-ios-world\";i:523;s:25:\"um-icon-ios-world-outline\";i:524;s:12:\"um-icon-ipad\";i:525;s:14:\"um-icon-iphone\";i:526;s:12:\"um-icon-ipod\";i:527;s:11:\"um-icon-jet\";i:528;s:11:\"um-icon-key\";i:529;s:13:\"um-icon-knife\";i:530;s:14:\"um-icon-laptop\";i:531;s:12:\"um-icon-leaf\";i:532;s:14:\"um-icon-levels\";i:533;s:17:\"um-icon-lightbulb\";i:534;s:12:\"um-icon-link\";i:535;s:14:\"um-icon-load-a\";i:536;s:14:\"um-icon-load-b\";i:537;s:14:\"um-icon-load-c\";i:538;s:14:\"um-icon-load-d\";i:539;s:16:\"um-icon-location\";i:540;s:24:\"um-icon-lock-combination\";i:541;s:14:\"um-icon-locked\";i:542;s:14:\"um-icon-log-in\";i:543;s:15:\"um-icon-log-out\";i:544;s:12:\"um-icon-loop\";i:545;s:14:\"um-icon-magnet\";i:546;s:12:\"um-icon-male\";i:547;s:11:\"um-icon-man\";i:548;s:11:\"um-icon-map\";i:549;s:14:\"um-icon-medkit\";i:550;s:13:\"um-icon-merge\";i:551;s:13:\"um-icon-mic-a\";i:552;s:13:\"um-icon-mic-b\";i:553;s:13:\"um-icon-mic-c\";i:554;s:13:\"um-icon-minus\";i:555;s:21:\"um-icon-minus-circled\";i:556;s:19:\"um-icon-minus-round\";i:557;s:15:\"um-icon-model-s\";i:558;s:15:\"um-icon-monitor\";i:559;s:12:\"um-icon-more\";i:560;s:13:\"um-icon-mouse\";i:561;s:18:\"um-icon-music-note\";i:562;s:15:\"um-icon-navicon\";i:563;s:21:\"um-icon-navicon-round\";i:564;s:16:\"um-icon-navigate\";i:565;s:15:\"um-icon-network\";i:566;s:18:\"um-icon-no-smoking\";i:567;s:15:\"um-icon-nuclear\";i:568;s:14:\"um-icon-outlet\";i:569;s:18:\"um-icon-paintbrush\";i:570;s:19:\"um-icon-paintbucket\";i:571;s:22:\"um-icon-paper-airplane\";i:572;s:17:\"um-icon-paperclip\";i:573;s:13:\"um-icon-pause\";i:574;s:14:\"um-icon-person\";i:575;s:18:\"um-icon-person-add\";i:576;s:22:\"um-icon-person-stalker\";i:577;s:17:\"um-icon-pie-graph\";i:578;s:11:\"um-icon-pin\";i:579;s:16:\"um-icon-pinpoint\";i:580;s:13:\"um-icon-pizza\";i:581;s:13:\"um-icon-plane\";i:582;s:14:\"um-icon-planet\";i:583;s:12:\"um-icon-play\";i:584;s:19:\"um-icon-playstation\";i:585;s:12:\"um-icon-plus\";i:586;s:20:\"um-icon-plus-circled\";i:587;s:18:\"um-icon-plus-round\";i:588;s:14:\"um-icon-podium\";i:589;s:13:\"um-icon-pound\";i:590;s:13:\"um-icon-power\";i:591;s:16:\"um-icon-pricetag\";i:592;s:17:\"um-icon-pricetags\";i:593;s:15:\"um-icon-printer\";i:594;s:20:\"um-icon-pull-request\";i:595;s:18:\"um-icon-qr-scanner\";i:596;s:13:\"um-icon-quote\";i:597;s:19:\"um-icon-radio-waves\";i:598;s:14:\"um-icon-record\";i:599;s:15:\"um-icon-refresh\";i:600;s:13:\"um-icon-reply\";i:601;s:17:\"um-icon-reply-all\";i:602;s:16:\"um-icon-ribbon-a\";i:603;s:16:\"um-icon-ribbon-b\";i:604;s:11:\"um-icon-sad\";i:605;s:19:\"um-icon-sad-outline\";i:606;s:16:\"um-icon-scissors\";i:607;s:14:\"um-icon-search\";i:608;s:16:\"um-icon-settings\";i:609;s:13:\"um-icon-share\";i:610;s:15:\"um-icon-shuffle\";i:611;s:21:\"um-icon-skip-backward\";i:612;s:20:\"um-icon-skip-forward\";i:613;s:22:\"um-icon-social-android\";i:614;s:30:\"um-icon-social-android-outline\";i:615;s:22:\"um-icon-social-angular\";i:616;s:30:\"um-icon-social-angular-outline\";i:617;s:20:\"um-icon-social-apple\";i:618;s:28:\"um-icon-social-apple-outline\";i:619;s:22:\"um-icon-social-bitcoin\";i:620;s:30:\"um-icon-social-bitcoin-outline\";i:621;s:21:\"um-icon-social-buffer\";i:622;s:29:\"um-icon-social-buffer-outline\";i:623;s:21:\"um-icon-social-chrome\";i:624;s:29:\"um-icon-social-chrome-outline\";i:625;s:22:\"um-icon-social-codepen\";i:626;s:30:\"um-icon-social-codepen-outline\";i:627;s:19:\"um-icon-social-css3\";i:628;s:27:\"um-icon-social-css3-outline\";i:629;s:27:\"um-icon-social-designernews\";i:630;s:35:\"um-icon-social-designernews-outline\";i:631;s:23:\"um-icon-social-dribbble\";i:632;s:31:\"um-icon-social-dribbble-outline\";i:633;s:22:\"um-icon-social-dropbox\";i:634;s:30:\"um-icon-social-dropbox-outline\";i:635;s:19:\"um-icon-social-euro\";i:636;s:27:\"um-icon-social-euro-outline\";i:637;s:23:\"um-icon-social-facebook\";i:638;s:31:\"um-icon-social-facebook-outline\";i:639;s:25:\"um-icon-social-foursquare\";i:640;s:33:\"um-icon-social-foursquare-outline\";i:641;s:28:\"um-icon-social-freebsd-devil\";i:642;s:21:\"um-icon-social-github\";i:643;s:29:\"um-icon-social-github-outline\";i:644;s:21:\"um-icon-social-google\";i:645;s:29:\"um-icon-social-google-outline\";i:646;s:25:\"um-icon-social-googleplus\";i:647;s:33:\"um-icon-social-googleplus-outline\";i:648;s:25:\"um-icon-social-hackernews\";i:649;s:33:\"um-icon-social-hackernews-outline\";i:650;s:20:\"um-icon-social-html5\";i:651;s:28:\"um-icon-social-html5-outline\";i:652;s:24:\"um-icon-social-instagram\";i:653;s:32:\"um-icon-social-instagram-outline\";i:654;s:25:\"um-icon-social-javascript\";i:655;s:33:\"um-icon-social-javascript-outline\";i:656;s:23:\"um-icon-social-linkedin\";i:657;s:31:\"um-icon-social-linkedin-outline\";i:658;s:23:\"um-icon-social-markdown\";i:659;s:21:\"um-icon-social-nodejs\";i:660;s:22:\"um-icon-social-octocat\";i:661;s:24:\"um-icon-social-pinterest\";i:662;s:32:\"um-icon-social-pinterest-outline\";i:663;s:21:\"um-icon-social-python\";i:664;s:21:\"um-icon-social-reddit\";i:665;s:29:\"um-icon-social-reddit-outline\";i:666;s:18:\"um-icon-social-rss\";i:667;s:26:\"um-icon-social-rss-outline\";i:668;s:19:\"um-icon-social-sass\";i:669;s:20:\"um-icon-social-skype\";i:670;s:28:\"um-icon-social-skype-outline\";i:671;s:23:\"um-icon-social-snapchat\";i:672;s:31:\"um-icon-social-snapchat-outline\";i:673;s:21:\"um-icon-social-tumblr\";i:674;s:29:\"um-icon-social-tumblr-outline\";i:675;s:18:\"um-icon-social-tux\";i:676;s:21:\"um-icon-social-twitch\";i:677;s:29:\"um-icon-social-twitch-outline\";i:678;s:22:\"um-icon-social-twitter\";i:679;s:30:\"um-icon-social-twitter-outline\";i:680;s:18:\"um-icon-social-usd\";i:681;s:26:\"um-icon-social-usd-outline\";i:682;s:20:\"um-icon-social-vimeo\";i:683;s:28:\"um-icon-social-vimeo-outline\";i:684;s:23:\"um-icon-social-whatsapp\";i:685;s:31:\"um-icon-social-whatsapp-outline\";i:686;s:22:\"um-icon-social-windows\";i:687;s:30:\"um-icon-social-windows-outline\";i:688;s:24:\"um-icon-social-wordpress\";i:689;s:32:\"um-icon-social-wordpress-outline\";i:690;s:20:\"um-icon-social-yahoo\";i:691;s:28:\"um-icon-social-yahoo-outline\";i:692;s:18:\"um-icon-social-yen\";i:693;s:26:\"um-icon-social-yen-outline\";i:694;s:22:\"um-icon-social-youtube\";i:695;s:30:\"um-icon-social-youtube-outline\";i:696;s:16:\"um-icon-soup-can\";i:697;s:24:\"um-icon-soup-can-outline\";i:698;s:20:\"um-icon-speakerphone\";i:699;s:19:\"um-icon-speedometer\";i:700;s:13:\"um-icon-spoon\";i:701;s:12:\"um-icon-star\";i:702;s:18:\"um-icon-stats-bars\";i:703;s:13:\"um-icon-steam\";i:704;s:12:\"um-icon-stop\";i:705;s:19:\"um-icon-thermometer\";i:706;s:18:\"um-icon-thumbsdown\";i:707;s:16:\"um-icon-thumbsup\";i:708;s:14:\"um-icon-toggle\";i:709;s:21:\"um-icon-toggle-filled\";i:710;s:19:\"um-icon-transgender\";i:711;s:15:\"um-icon-trash-a\";i:712;s:15:\"um-icon-trash-b\";i:713;s:14:\"um-icon-trophy\";i:714;s:14:\"um-icon-tshirt\";i:715;s:22:\"um-icon-tshirt-outline\";i:716;s:16:\"um-icon-umbrella\";i:717;s:18:\"um-icon-university\";i:718;s:16:\"um-icon-unlocked\";i:719;s:14:\"um-icon-upload\";i:720;s:11:\"um-icon-usb\";i:721;s:19:\"um-icon-videocamera\";i:722;s:19:\"um-icon-volume-high\";i:723;s:18:\"um-icon-volume-low\";i:724;s:21:\"um-icon-volume-medium\";i:725;s:19:\"um-icon-volume-mute\";i:726;s:12:\"um-icon-wand\";i:727;s:17:\"um-icon-waterdrop\";i:728;s:12:\"um-icon-wifi\";i:729;s:17:\"um-icon-wineglass\";i:730;s:13:\"um-icon-woman\";i:731;s:14:\"um-icon-wrench\";i:732;s:12:\"um-icon-xbox\";i:733;s:21:\"um-faicon-sticky-note\";i:734;s:15:\"um-faicon-glass\";i:735;s:15:\"um-faicon-music\";i:736;s:16:\"um-faicon-search\";i:737;s:20:\"um-faicon-envelope-o\";i:738;s:15:\"um-faicon-heart\";i:739;s:14:\"um-faicon-star\";i:740;s:16:\"um-faicon-star-o\";i:741;s:14:\"um-faicon-user\";i:742;s:14:\"um-faicon-film\";i:743;s:18:\"um-faicon-th-large\";i:744;s:12:\"um-faicon-th\";i:745;s:17:\"um-faicon-th-list\";i:746;s:15:\"um-faicon-check\";i:747;s:15:\"um-faicon-times\";i:748;s:21:\"um-faicon-search-plus\";i:749;s:22:\"um-faicon-search-minus\";i:750;s:19:\"um-faicon-power-off\";i:751;s:16:\"um-faicon-signal\";i:752;s:13:\"um-faicon-cog\";i:753;s:17:\"um-faicon-trash-o\";i:754;s:14:\"um-faicon-home\";i:755;s:16:\"um-faicon-file-o\";i:756;s:17:\"um-faicon-clock-o\";i:757;s:14:\"um-faicon-road\";i:758;s:18:\"um-faicon-download\";i:759;s:29:\"um-faicon-arrow-circle-o-down\";i:760;s:27:\"um-faicon-arrow-circle-o-up\";i:761;s:15:\"um-faicon-inbox\";i:762;s:23:\"um-faicon-play-circle-o\";i:763;s:16:\"um-faicon-repeat\";i:764;s:17:\"um-faicon-refresh\";i:765;s:18:\"um-faicon-list-alt\";i:766;s:14:\"um-faicon-lock\";i:767;s:14:\"um-faicon-flag\";i:768;s:20:\"um-faicon-headphones\";i:769;s:20:\"um-faicon-volume-off\";i:770;s:21:\"um-faicon-volume-down\";i:771;s:19:\"um-faicon-volume-up\";i:772;s:16:\"um-faicon-qrcode\";i:773;s:17:\"um-faicon-barcode\";i:774;s:13:\"um-faicon-tag\";i:775;s:14:\"um-faicon-tags\";i:776;s:14:\"um-faicon-book\";i:777;s:18:\"um-faicon-bookmark\";i:778;s:15:\"um-faicon-print\";i:779;s:16:\"um-faicon-camera\";i:780;s:14:\"um-faicon-font\";i:781;s:14:\"um-faicon-bold\";i:782;s:16:\"um-faicon-italic\";i:783;s:21:\"um-faicon-text-height\";i:784;s:20:\"um-faicon-text-width\";i:785;s:20:\"um-faicon-align-left\";i:786;s:22:\"um-faicon-align-center\";i:787;s:21:\"um-faicon-align-right\";i:788;s:23:\"um-faicon-align-justify\";i:789;s:14:\"um-faicon-list\";i:790;s:17:\"um-faicon-outdent\";i:791;s:16:\"um-faicon-indent\";i:792;s:22:\"um-faicon-video-camera\";i:793;s:19:\"um-faicon-picture-o\";i:794;s:16:\"um-faicon-pencil\";i:795;s:20:\"um-faicon-map-marker\";i:796;s:16:\"um-faicon-adjust\";i:797;s:14:\"um-faicon-tint\";i:798;s:25:\"um-faicon-pencil-square-o\";i:799;s:24:\"um-faicon-share-square-o\";i:800;s:24:\"um-faicon-check-square-o\";i:801;s:16:\"um-faicon-arrows\";i:802;s:23:\"um-faicon-step-backward\";i:803;s:23:\"um-faicon-fast-backward\";i:804;s:18:\"um-faicon-backward\";i:805;s:14:\"um-faicon-play\";i:806;s:15:\"um-faicon-pause\";i:807;s:14:\"um-faicon-stop\";i:808;s:17:\"um-faicon-forward\";i:809;s:22:\"um-faicon-fast-forward\";i:810;s:22:\"um-faicon-step-forward\";i:811;s:15:\"um-faicon-eject\";i:812;s:22:\"um-faicon-chevron-left\";i:813;s:23:\"um-faicon-chevron-right\";i:814;s:21:\"um-faicon-plus-circle\";i:815;s:22:\"um-faicon-minus-circle\";i:816;s:22:\"um-faicon-times-circle\";i:817;s:22:\"um-faicon-check-circle\";i:818;s:25:\"um-faicon-question-circle\";i:819;s:21:\"um-faicon-info-circle\";i:820;s:20:\"um-faicon-crosshairs\";i:821;s:24:\"um-faicon-times-circle-o\";i:822;s:24:\"um-faicon-check-circle-o\";i:823;s:13:\"um-faicon-ban\";i:824;s:20:\"um-faicon-arrow-left\";i:825;s:21:\"um-faicon-arrow-right\";i:826;s:18:\"um-faicon-arrow-up\";i:827;s:20:\"um-faicon-arrow-down\";i:828;s:15:\"um-faicon-share\";i:829;s:16:\"um-faicon-expand\";i:830;s:18:\"um-faicon-compress\";i:831;s:14:\"um-faicon-plus\";i:832;s:15:\"um-faicon-minus\";i:833;s:18:\"um-faicon-asterisk\";i:834;s:28:\"um-faicon-exclamation-circle\";i:835;s:14:\"um-faicon-gift\";i:836;s:14:\"um-faicon-leaf\";i:837;s:14:\"um-faicon-fire\";i:838;s:13:\"um-faicon-eye\";i:839;s:19:\"um-faicon-eye-slash\";i:840;s:30:\"um-faicon-exclamation-triangle\";i:841;s:15:\"um-faicon-plane\";i:842;s:18:\"um-faicon-calendar\";i:843;s:16:\"um-faicon-random\";i:844;s:17:\"um-faicon-comment\";i:845;s:16:\"um-faicon-magnet\";i:846;s:20:\"um-faicon-chevron-up\";i:847;s:22:\"um-faicon-chevron-down\";i:848;s:17:\"um-faicon-retweet\";i:849;s:23:\"um-faicon-shopping-cart\";i:850;s:16:\"um-faicon-folder\";i:851;s:21:\"um-faicon-folder-open\";i:852;s:18:\"um-faicon-arrows-v\";i:853;s:18:\"um-faicon-arrows-h\";i:854;s:19:\"um-faicon-bar-chart\";i:855;s:24:\"um-faicon-twitter-square\";i:856;s:25:\"um-faicon-facebook-square\";i:857;s:22:\"um-faicon-camera-retro\";i:858;s:13:\"um-faicon-key\";i:859;s:14:\"um-faicon-cogs\";i:860;s:18:\"um-faicon-comments\";i:861;s:21:\"um-faicon-thumbs-o-up\";i:862;s:23:\"um-faicon-thumbs-o-down\";i:863;s:19:\"um-faicon-star-half\";i:864;s:17:\"um-faicon-heart-o\";i:865;s:18:\"um-faicon-sign-out\";i:866;s:25:\"um-faicon-linkedin-square\";i:867;s:20:\"um-faicon-thumb-tack\";i:868;s:23:\"um-faicon-external-link\";i:869;s:17:\"um-faicon-sign-in\";i:870;s:16:\"um-faicon-trophy\";i:871;s:23:\"um-faicon-github-square\";i:872;s:16:\"um-faicon-upload\";i:873;s:17:\"um-faicon-lemon-o\";i:874;s:15:\"um-faicon-phone\";i:875;s:18:\"um-faicon-square-o\";i:876;s:20:\"um-faicon-bookmark-o\";i:877;s:22:\"um-faicon-phone-square\";i:878;s:17:\"um-faicon-twitter\";i:879;s:18:\"um-faicon-facebook\";i:880;s:16:\"um-faicon-github\";i:881;s:16:\"um-faicon-unlock\";i:882;s:21:\"um-faicon-credit-card\";i:883;s:13:\"um-faicon-rss\";i:884;s:15:\"um-faicon-hdd-o\";i:885;s:18:\"um-faicon-bullhorn\";i:886;s:14:\"um-faicon-bell\";i:887;s:21:\"um-faicon-certificate\";i:888;s:22:\"um-faicon-hand-o-right\";i:889;s:21:\"um-faicon-hand-o-left\";i:890;s:19:\"um-faicon-hand-o-up\";i:891;s:21:\"um-faicon-hand-o-down\";i:892;s:27:\"um-faicon-arrow-circle-left\";i:893;s:28:\"um-faicon-arrow-circle-right\";i:894;s:25:\"um-faicon-arrow-circle-up\";i:895;s:27:\"um-faicon-arrow-circle-down\";i:896;s:15:\"um-faicon-globe\";i:897;s:16:\"um-faicon-wrench\";i:898;s:15:\"um-faicon-tasks\";i:899;s:16:\"um-faicon-filter\";i:900;s:19:\"um-faicon-briefcase\";i:901;s:20:\"um-faicon-arrows-alt\";i:902;s:15:\"um-faicon-users\";i:903;s:14:\"um-faicon-link\";i:904;s:15:\"um-faicon-cloud\";i:905;s:15:\"um-faicon-flask\";i:906;s:18:\"um-faicon-scissors\";i:907;s:17:\"um-faicon-files-o\";i:908;s:19:\"um-faicon-paperclip\";i:909;s:18:\"um-faicon-floppy-o\";i:910;s:16:\"um-faicon-square\";i:911;s:14:\"um-faicon-bars\";i:912;s:17:\"um-faicon-list-ul\";i:913;s:17:\"um-faicon-list-ol\";i:914;s:23:\"um-faicon-strikethrough\";i:915;s:19:\"um-faicon-underline\";i:916;s:15:\"um-faicon-table\";i:917;s:15:\"um-faicon-magic\";i:918;s:15:\"um-faicon-truck\";i:919;s:19:\"um-faicon-pinterest\";i:920;s:26:\"um-faicon-pinterest-square\";i:921;s:28:\"um-faicon-google-plus-square\";i:922;s:21:\"um-faicon-google-plus\";i:923;s:15:\"um-faicon-money\";i:924;s:20:\"um-faicon-caret-down\";i:925;s:18:\"um-faicon-caret-up\";i:926;s:20:\"um-faicon-caret-left\";i:927;s:21:\"um-faicon-caret-right\";i:928;s:17:\"um-faicon-columns\";i:929;s:14:\"um-faicon-sort\";i:930;s:19:\"um-faicon-sort-desc\";i:931;s:18:\"um-faicon-sort-asc\";i:932;s:18:\"um-faicon-envelope\";i:933;s:18:\"um-faicon-linkedin\";i:934;s:14:\"um-faicon-undo\";i:935;s:15:\"um-faicon-gavel\";i:936;s:20:\"um-faicon-tachometer\";i:937;s:19:\"um-faicon-comment-o\";i:938;s:20:\"um-faicon-comments-o\";i:939;s:14:\"um-faicon-bolt\";i:940;s:17:\"um-faicon-sitemap\";i:941;s:18:\"um-faicon-umbrella\";i:942;s:19:\"um-faicon-clipboard\";i:943;s:21:\"um-faicon-lightbulb-o\";i:944;s:18:\"um-faicon-exchange\";i:945;s:24:\"um-faicon-cloud-download\";i:946;s:22:\"um-faicon-cloud-upload\";i:947;s:17:\"um-faicon-user-md\";i:948;s:21:\"um-faicon-stethoscope\";i:949;s:18:\"um-faicon-suitcase\";i:950;s:16:\"um-faicon-bell-o\";i:951;s:16:\"um-faicon-coffee\";i:952;s:17:\"um-faicon-cutlery\";i:953;s:21:\"um-faicon-file-text-o\";i:954;s:20:\"um-faicon-building-o\";i:955;s:20:\"um-faicon-hospital-o\";i:956;s:19:\"um-faicon-ambulance\";i:957;s:16:\"um-faicon-medkit\";i:958;s:21:\"um-faicon-fighter-jet\";i:959;s:14:\"um-faicon-beer\";i:960;s:18:\"um-faicon-h-square\";i:961;s:21:\"um-faicon-plus-square\";i:962;s:27:\"um-faicon-angle-double-left\";i:963;s:28:\"um-faicon-angle-double-right\";i:964;s:25:\"um-faicon-angle-double-up\";i:965;s:27:\"um-faicon-angle-double-down\";i:966;s:20:\"um-faicon-angle-left\";i:967;s:21:\"um-faicon-angle-right\";i:968;s:18:\"um-faicon-angle-up\";i:969;s:20:\"um-faicon-angle-down\";i:970;s:17:\"um-faicon-desktop\";i:971;s:16:\"um-faicon-laptop\";i:972;s:16:\"um-faicon-tablet\";i:973;s:16:\"um-faicon-mobile\";i:974;s:18:\"um-faicon-circle-o\";i:975;s:20:\"um-faicon-quote-left\";i:976;s:21:\"um-faicon-quote-right\";i:977;s:17:\"um-faicon-spinner\";i:978;s:14:\"um-faicon-spin\";i:979;s:16:\"um-faicon-circle\";i:980;s:15:\"um-faicon-reply\";i:981;s:20:\"um-faicon-github-alt\";i:982;s:18:\"um-faicon-folder-o\";i:983;s:23:\"um-faicon-folder-open-o\";i:984;s:17:\"um-faicon-smile-o\";i:985;s:17:\"um-faicon-frown-o\";i:986;s:15:\"um-faicon-meh-o\";i:987;s:17:\"um-faicon-gamepad\";i:988;s:20:\"um-faicon-keyboard-o\";i:989;s:16:\"um-faicon-flag-o\";i:990;s:24:\"um-faicon-flag-checkered\";i:991;s:18:\"um-faicon-terminal\";i:992;s:14:\"um-faicon-code\";i:993;s:19:\"um-faicon-reply-all\";i:994;s:21:\"um-faicon-star-half-o\";i:995;s:24:\"um-faicon-location-arrow\";i:996;s:14:\"um-faicon-crop\";i:997;s:19:\"um-faicon-code-fork\";i:998;s:22:\"um-faicon-chain-broken\";i:999;s:18:\"um-faicon-question\";i:1000;s:14:\"um-faicon-info\";i:1001;s:21:\"um-faicon-exclamation\";i:1002;s:21:\"um-faicon-superscript\";i:1003;s:19:\"um-faicon-subscript\";i:1004;s:16:\"um-faicon-eraser\";i:1005;s:22:\"um-faicon-puzzle-piece\";i:1006;s:20:\"um-faicon-microphone\";i:1007;s:26:\"um-faicon-microphone-slash\";i:1008;s:16:\"um-faicon-shield\";i:1009;s:20:\"um-faicon-calendar-o\";i:1010;s:27:\"um-faicon-fire-extinguisher\";i:1011;s:16:\"um-faicon-rocket\";i:1012;s:16:\"um-faicon-maxcdn\";i:1013;s:29:\"um-faicon-chevron-circle-left\";i:1014;s:30:\"um-faicon-chevron-circle-right\";i:1015;s:27:\"um-faicon-chevron-circle-up\";i:1016;s:29:\"um-faicon-chevron-circle-down\";i:1017;s:15:\"um-faicon-html5\";i:1018;s:14:\"um-faicon-css3\";i:1019;s:16:\"um-faicon-anchor\";i:1020;s:20:\"um-faicon-unlock-alt\";i:1021;s:18:\"um-faicon-bullseye\";i:1022;s:20:\"um-faicon-ellipsis-h\";i:1023;s:20:\"um-faicon-ellipsis-v\";i:1024;s:20:\"um-faicon-rss-square\";i:1025;s:21:\"um-faicon-play-circle\";i:1026;s:16:\"um-faicon-ticket\";i:1027;s:22:\"um-faicon-minus-square\";i:1028;s:24:\"um-faicon-minus-square-o\";i:1029;s:18:\"um-faicon-level-up\";i:1030;s:20:\"um-faicon-level-down\";i:1031;s:22:\"um-faicon-check-square\";i:1032;s:23:\"um-faicon-pencil-square\";i:1033;s:30:\"um-faicon-external-link-square\";i:1034;s:22:\"um-faicon-share-square\";i:1035;s:17:\"um-faicon-compass\";i:1036;s:29:\"um-faicon-caret-square-o-down\";i:1037;s:27:\"um-faicon-caret-square-o-up\";i:1038;s:30:\"um-faicon-caret-square-o-right\";i:1039;s:13:\"um-faicon-eur\";i:1040;s:13:\"um-faicon-gbp\";i:1041;s:13:\"um-faicon-usd\";i:1042;s:13:\"um-faicon-inr\";i:1043;s:13:\"um-faicon-jpy\";i:1044;s:13:\"um-faicon-rub\";i:1045;s:13:\"um-faicon-krw\";i:1046;s:13:\"um-faicon-btc\";i:1047;s:14:\"um-faicon-file\";i:1048;s:19:\"um-faicon-file-text\";i:1049;s:24:\"um-faicon-sort-alpha-asc\";i:1050;s:25:\"um-faicon-sort-alpha-desc\";i:1051;s:25:\"um-faicon-sort-amount-asc\";i:1052;s:26:\"um-faicon-sort-amount-desc\";i:1053;s:26:\"um-faicon-sort-numeric-asc\";i:1054;s:27:\"um-faicon-sort-numeric-desc\";i:1055;s:19:\"um-faicon-thumbs-up\";i:1056;s:21:\"um-faicon-thumbs-down\";i:1057;s:24:\"um-faicon-youtube-square\";i:1058;s:17:\"um-faicon-youtube\";i:1059;s:14:\"um-faicon-xing\";i:1060;s:21:\"um-faicon-xing-square\";i:1061;s:22:\"um-faicon-youtube-play\";i:1062;s:17:\"um-faicon-dropbox\";i:1063;s:24:\"um-faicon-stack-overflow\";i:1064;s:19:\"um-faicon-instagram\";i:1065;s:16:\"um-faicon-flickr\";i:1066;s:13:\"um-faicon-adn\";i:1067;s:19:\"um-faicon-bitbucket\";i:1068;s:26:\"um-faicon-bitbucket-square\";i:1069;s:16:\"um-faicon-tumblr\";i:1070;s:23:\"um-faicon-tumblr-square\";i:1071;s:25:\"um-faicon-long-arrow-down\";i:1072;s:23:\"um-faicon-long-arrow-up\";i:1073;s:25:\"um-faicon-long-arrow-left\";i:1074;s:26:\"um-faicon-long-arrow-right\";i:1075;s:15:\"um-faicon-apple\";i:1076;s:17:\"um-faicon-windows\";i:1077;s:17:\"um-faicon-android\";i:1078;s:15:\"um-faicon-linux\";i:1079;s:18:\"um-faicon-dribbble\";i:1080;s:15:\"um-faicon-skype\";i:1081;s:20:\"um-faicon-foursquare\";i:1082;s:16:\"um-faicon-trello\";i:1083;s:16:\"um-faicon-female\";i:1084;s:14:\"um-faicon-male\";i:1085;s:16:\"um-faicon-gittip\";i:1086;s:15:\"um-faicon-sun-o\";i:1087;s:16:\"um-faicon-moon-o\";i:1088;s:17:\"um-faicon-archive\";i:1089;s:13:\"um-faicon-bug\";i:1090;s:12:\"um-faicon-vk\";i:1091;s:15:\"um-faicon-weibo\";i:1092;s:16:\"um-faicon-renren\";i:1093;s:19:\"um-faicon-pagelines\";i:1094;s:24:\"um-faicon-stack-exchange\";i:1095;s:30:\"um-faicon-arrow-circle-o-right\";i:1096;s:29:\"um-faicon-arrow-circle-o-left\";i:1097;s:29:\"um-faicon-caret-square-o-left\";i:1098;s:22:\"um-faicon-dot-circle-o\";i:1099;s:20:\"um-faicon-wheelchair\";i:1100;s:22:\"um-faicon-vimeo-square\";i:1101;s:13:\"um-faicon-try\";i:1102;s:23:\"um-faicon-plus-square-o\";i:1103;s:23:\"um-faicon-space-shuttle\";i:1104;s:15:\"um-faicon-slack\";i:1105;s:25:\"um-faicon-envelope-square\";i:1106;s:19:\"um-faicon-wordpress\";i:1107;s:16:\"um-faicon-openid\";i:1108;s:20:\"um-faicon-university\";i:1109;s:24:\"um-faicon-graduation-cap\";i:1110;s:15:\"um-faicon-yahoo\";i:1111;s:16:\"um-faicon-google\";i:1112;s:16:\"um-faicon-reddit\";i:1113;s:23:\"um-faicon-reddit-square\";i:1114;s:28:\"um-faicon-stumbleupon-circle\";i:1115;s:21:\"um-faicon-stumbleupon\";i:1116;s:19:\"um-faicon-delicious\";i:1117;s:14:\"um-faicon-digg\";i:1118;s:20:\"um-faicon-pied-piper\";i:1119;s:24:\"um-faicon-pied-piper-alt\";i:1120;s:16:\"um-faicon-drupal\";i:1121;s:16:\"um-faicon-joomla\";i:1122;s:18:\"um-faicon-language\";i:1123;s:13:\"um-faicon-fax\";i:1124;s:18:\"um-faicon-building\";i:1125;s:15:\"um-faicon-child\";i:1126;s:13:\"um-faicon-paw\";i:1127;s:15:\"um-faicon-spoon\";i:1128;s:14:\"um-faicon-cube\";i:1129;s:15:\"um-faicon-cubes\";i:1130;s:17:\"um-faicon-behance\";i:1131;s:24:\"um-faicon-behance-square\";i:1132;s:15:\"um-faicon-steam\";i:1133;s:22:\"um-faicon-steam-square\";i:1134;s:17:\"um-faicon-recycle\";i:1135;s:13:\"um-faicon-car\";i:1136;s:14:\"um-faicon-taxi\";i:1137;s:14:\"um-faicon-tree\";i:1138;s:17:\"um-faicon-spotify\";i:1139;s:20:\"um-faicon-deviantart\";i:1140;s:20:\"um-faicon-soundcloud\";i:1141;s:18:\"um-faicon-database\";i:1142;s:20:\"um-faicon-file-pdf-o\";i:1143;s:21:\"um-faicon-file-word-o\";i:1144;s:22:\"um-faicon-file-excel-o\";i:1145;s:27:\"um-faicon-file-powerpoint-o\";i:1146;s:22:\"um-faicon-file-image-o\";i:1147;s:24:\"um-faicon-file-archive-o\";i:1148;s:22:\"um-faicon-file-audio-o\";i:1149;s:22:\"um-faicon-file-video-o\";i:1150;s:21:\"um-faicon-file-code-o\";i:1151;s:14:\"um-faicon-vine\";i:1152;s:17:\"um-faicon-codepen\";i:1153;s:18:\"um-faicon-jsfiddle\";i:1154;s:19:\"um-faicon-life-ring\";i:1155;s:24:\"um-faicon-circle-o-notch\";i:1156;s:15:\"um-faicon-rebel\";i:1157;s:16:\"um-faicon-empire\";i:1158;s:20:\"um-faicon-git-square\";i:1159;s:13:\"um-faicon-git\";i:1160;s:21:\"um-faicon-hacker-news\";i:1161;s:23:\"um-faicon-tencent-weibo\";i:1162;s:12:\"um-faicon-qq\";i:1163;s:16:\"um-faicon-weixin\";i:1164;s:21:\"um-faicon-paper-plane\";i:1165;s:23:\"um-faicon-paper-plane-o\";i:1166;s:17:\"um-faicon-history\";i:1167;s:21:\"um-faicon-circle-thin\";i:1168;s:16:\"um-faicon-header\";i:1169;s:19:\"um-faicon-paragraph\";i:1170;s:17:\"um-faicon-sliders\";i:1171;s:19:\"um-faicon-share-alt\";i:1172;s:26:\"um-faicon-share-alt-square\";i:1173;s:14:\"um-faicon-bomb\";i:1174;s:18:\"um-faicon-futbol-o\";i:1175;s:13:\"um-faicon-tty\";i:1176;s:20:\"um-faicon-binoculars\";i:1177;s:14:\"um-faicon-plug\";i:1178;s:20:\"um-faicon-slideshare\";i:1179;s:16:\"um-faicon-twitch\";i:1180;s:14:\"um-faicon-yelp\";i:1181;s:21:\"um-faicon-newspaper-o\";i:1182;s:14:\"um-faicon-wifi\";i:1183;s:20:\"um-faicon-calculator\";i:1184;s:16:\"um-faicon-paypal\";i:1185;s:23:\"um-faicon-google-wallet\";i:1186;s:17:\"um-faicon-cc-visa\";i:1187;s:23:\"um-faicon-cc-mastercard\";i:1188;s:21:\"um-faicon-cc-discover\";i:1189;s:17:\"um-faicon-cc-amex\";i:1190;s:19:\"um-faicon-cc-paypal\";i:1191;s:19:\"um-faicon-cc-stripe\";i:1192;s:20:\"um-faicon-bell-slash\";i:1193;s:22:\"um-faicon-bell-slash-o\";i:1194;s:15:\"um-faicon-trash\";i:1195;s:19:\"um-faicon-copyright\";i:1196;s:12:\"um-faicon-at\";i:1197;s:20:\"um-faicon-eyedropper\";i:1198;s:21:\"um-faicon-paint-brush\";i:1199;s:23:\"um-faicon-birthday-cake\";i:1200;s:20:\"um-faicon-area-chart\";i:1201;s:19:\"um-faicon-pie-chart\";i:1202;s:20:\"um-faicon-line-chart\";i:1203;s:16:\"um-faicon-lastfm\";i:1204;s:23:\"um-faicon-lastfm-square\";i:1205;s:20:\"um-faicon-toggle-off\";i:1206;s:19:\"um-faicon-toggle-on\";i:1207;s:17:\"um-faicon-bicycle\";i:1208;s:13:\"um-faicon-bus\";i:1209;s:17:\"um-faicon-ioxhost\";i:1210;s:19:\"um-faicon-angellist\";i:1211;s:12:\"um-faicon-cc\";i:1212;s:13:\"um-faicon-ils\";i:1213;s:18:\"um-faicon-meanpath\";i:1214;s:14:\"um-faicon-spin\";i:1215;s:14:\"um-faicon-spin\";i:1216;s:14:\"um-faicon-spin\";i:1217;s:14:\"um-faicon-spin\";i:1218;s:14:\"um-faicon-spin\";}','yes'),(178723,'rs-templates-counter','0','no'),(381150,'_transient_adf0381f0_custom_js','','yes'),(381151,'_transient_adf0381f0_updated_at','1605059632','yes'),(374159,'_transient_9dd626292_custom_js','','yes'),(374160,'_transient_9dd626292_updated_at','1603149173','yes'),(1293993,'adcaef842_eael_updated_at','1651360580','no'),(399783,'_transient_e05627be6_elements','a:0:{}','yes'),(399784,'_transient_e05627be6_custom_js','','yes'),(399785,'_transient_e05627be6_updated_at','1605059632','yes'),(387053,'_transient_30e044aef_elements','a:0:{}','yes'),(387054,'_transient_30e044aef_custom_js','','yes'),(387055,'_transient_30e044aef_updated_at','1605059632','yes'),(418215,'a4e475ec8_elements','a:0:{}','yes'),(418216,'a4e475ec8_custom_js','','yes'),(418217,'a4e475ec8_updated_at','1618609366','yes'),(418268,'f0d06e05d_elements','a:0:{}','yes'),(418269,'f0d06e05d_custom_js','','yes'),(418270,'f0d06e05d_updated_at','1623201995','yes'),(1251014,'wp_force_deactivated_plugins','a:0:{}','yes'),(383787,'_transient_c10ce2b83_elements','a:0:{}','yes'),(383788,'_transient_c10ce2b83_custom_js','','yes'),(383789,'_transient_c10ce2b83_updated_at','1605059632','yes'),(383364,'_transient_dfcc4860c_elements','a:0:{}','yes'),(383365,'_transient_dfcc4860c_custom_js','','yes'),(383366,'_transient_dfcc4860c_updated_at','1605059632','yes'),(391509,'_transient_a4e475ec8_custom_js','','yes'),(391510,'_transient_a4e475ec8_updated_at','1605059632','yes'),(391539,'_transient_4de584a71_elements','a:0:{}','yes'),(391540,'_transient_4de584a71_custom_js','','yes'),(391541,'_transient_4de584a71_updated_at','1605059632','yes'),(348589,'weforms_dismiss_xnotice_cf7','yes','yes'),(348592,'weforms_allow_tracking','no','yes'),(348593,'weforms_tracking_notice','hide','yes'),(348591,'dnh_dismissed_notices','a:1:{i:0;s:24:\"wrm_9ed381f79cf0394bc396\";}','yes'),(358701,'_transient_5ca089a46_elements','a:0:{}','yes'),(358702,'_transient_5ca089a46_custom_js','','yes'),(358703,'_transient_5ca089a46_updated_at','1605059632','yes'),(358885,'_transient_20a685068_elements','a:0:{}','yes'),(358886,'_transient_20a685068_custom_js','','yes'),(358887,'_transient_20a685068_updated_at','1605059632','yes'),(358908,'_transient_7048c361d_elements','a:0:{}','yes'),(358909,'_transient_7048c361d_custom_js','','yes'),(358910,'_transient_7048c361d_updated_at','1605059632','yes'),(357202,'_transient_e3ea26802_elements','a:0:{}','yes'),(357203,'_transient_e3ea26802_custom_js','','yes'),(357204,'_transient_e3ea26802_updated_at','1605059632','yes'),(357218,'_transient_7e2349df4_elements','a:0:{}','yes'),(357219,'_transient_7e2349df4_custom_js','','yes'),(357220,'_transient_7e2349df4_updated_at','1605059632','yes'),(357231,'_transient_c48e43b4d_elements','a:0:{}','yes'),(357232,'_transient_c48e43b4d_custom_js','','yes'),(357233,'_transient_c48e43b4d_updated_at','1605059632','yes'),(357245,'_transient_fe2715a97_elements','a:0:{}','yes'),(357242,'_transient_a7f8a4f29_elements','a:0:{}','yes'),(357243,'_transient_a7f8a4f29_custom_js','','yes'),(357244,'_transient_a7f8a4f29_updated_at','1605059632','yes'),(357246,'_transient_fe2715a97_custom_js','','yes'),(357247,'_transient_fe2715a97_updated_at','1605059632','yes'),(357249,'_transient_de8718817_elements','a:0:{}','yes'),(357250,'_transient_de8718817_custom_js','','yes'),(357251,'_transient_de8718817_updated_at','1605059632','yes'),(357260,'_transient_221857113_elements','a:0:{}','yes'),(357261,'_transient_221857113_custom_js','','yes'),(357262,'_transient_221857113_updated_at','1605059632','yes'),(357323,'_transient_5c7179c35_elements','a:0:{}','yes'),(422779,'0f0b6552d_updated_at','1623201995','yes'),(447590,'6f3b521a0_elements','a:0:{}','yes'),(447591,'6f3b521a0_custom_js','','yes'),(447592,'6f3b521a0_updated_at','1606787969','yes'),(392405,'_transient_25903d02b_elements','a:0:{}','yes'),(392406,'_transient_25903d02b_custom_js','','yes'),(392407,'_transient_25903d02b_updated_at','1605059632','yes'),(392410,'_transient_ad8567137_elements','a:0:{}','yes'),(392411,'_transient_ad8567137_custom_js','','yes'),(392412,'_transient_ad8567137_updated_at','1605059632','yes'),(391652,'_transient_c06ccb403_elements','a:0:{}','yes'),(391653,'_transient_c06ccb403_custom_js','','yes'),(391654,'_transient_c06ccb403_updated_at','1605059632','yes'),(391669,'_transient_f3b802a93_elements','a:0:{}','yes'),(391670,'_transient_f3b802a93_custom_js','','yes'),(391671,'_transient_f3b802a93_updated_at','1605059632','yes'),(391673,'_transient_826b6ef51_elements','a:0:{}','yes'),(391674,'_transient_826b6ef51_custom_js','','yes'),(391675,'_transient_826b6ef51_updated_at','1605059632','yes'),(1352083,'06a943c59_eael_updated_at','1656030088','no'),(357601,'_transient_7d8ec2300_elements','a:0:{}','yes'),(357602,'_transient_7d8ec2300_custom_js','','yes'),(357603,'_transient_7d8ec2300_updated_at','1605059632','yes'),(360332,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1602987008;}s:5:\"queue\";a:0:{}s:4:\"done\";a:2:{i:0;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1602987008;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1603148857;}i:1;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1603591808;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1605056684;}}}','no'),(356983,'_transient_d2395827e_elements','a:0:{}','yes'),(356984,'_transient_d2395827e_custom_js','','yes'),(356985,'_transient_d2395827e_updated_at','1605059632','yes'),(357722,'_transient_864b10d54_updated_at','1605059632','yes'),(360681,'WpFastestCacheExclude','[{\"prefix\":\"startwith\",\"content\":\"the-lantern-team\\/team-portal\",\"type\":\"page\"}]','yes'),(362699,'_transient_9583082da_custom_js','','yes'),(362700,'_transient_9583082da_updated_at','1605059632','yes'),(362715,'_transient_bac6998bf_elements','a:1:{i:7;s:12:\"creative-btn\";}','yes'),(362716,'_transient_bac6998bf_custom_js','','yes'),(362717,'_transient_bac6998bf_updated_at','1605059632','yes'),(368743,'_transient_b5c646fb3_elements','a:0:{}','yes'),(368744,'_transient_b5c646fb3_custom_js','','yes'),(368745,'_transient_b5c646fb3_updated_at','1605059632','yes'),(367376,'_transient_150f96911_elements','a:0:{}','yes'),(367377,'_transient_150f96911_custom_js','','yes'),(367378,'_transient_150f96911_updated_at','1605059632','yes'),(392316,'_transient_8adc01ba4_elements','a:0:{}','yes'),(392317,'_transient_8adc01ba4_custom_js','','yes'),(392318,'_transient_8adc01ba4_updated_at','1605059632','yes'),(361941,'calendar_feed_children','a:0:{}','yes'),(361942,'calendar_type_children','a:0:{}','yes'),(361943,'simple-calendar_admin_notices','a:0:{}','yes'),(361784,'_transient_f1ceaa13d_elements','a:0:{}','yes'),(361785,'_transient_f1ceaa13d_custom_js','','yes'),(361786,'_transient_f1ceaa13d_updated_at','1605059632','yes'),(230693,'_transient_jetpack_assumed_site_creation_date','2018-08-20 00:26:23','yes'),(659478,'_elementor_global_css','a:6:{s:4:\"time\";i:1651343443;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(361924,'simple-calendar_version','3.1.36','yes'),(361933,'simple-calendar_settings_feeds','a:1:{s:6:\"google\";a:1:{s:7:\"api_key\";s:39:\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\";}}','yes'),(231016,'analyst_accounts_data','s:436:\"O:26:\"Account\\AccountDataFactory\":1:{s:11:\"\0*\0accounts\";a:1:{i:0;O:19:\"Account\\AccountData\":7:{s:5:\"\0*\0id\";s:16:\"ao6grd4ed38kyeqz\";s:9:\"\0*\0secret\";s:40:\"ae93c43c738bdf50f10ef9d4c6d811006b468c74\";s:7:\"\0*\0path\";s:110:\"/home/lanternrealty/public_html/wp-content/plugins/ultimate-social-media-icons/ultimate_social_media_icons.php\";s:14:\"\0*\0isInstalled\";b:0;s:12:\"\0*\0isOptedIn\";b:1;s:11:\"\0*\0isSigned\";b:1;s:20:\"\0*\0isInstallResolved\";b:1;}}}\";','yes'),(231013,'sfsi_pplus_error_reporting_notice_dismissed','1','yes'),(231007,'widget_sfsi-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(352374,'jp_sync_lock_full_sync','1602540922.9681','yes'),(230767,'social_notifications_subscribe','off','yes'),(351599,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1656028699;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(360062,'_transient_2ceb0fa53_elements','a:0:{}','yes'),(360063,'_transient_2ceb0fa53_custom_js','','yes'),(360064,'_transient_2ceb0fa53_updated_at','1602812385','yes'),(356956,'_transient_a9129074b_elements','a:0:{}','yes'),(358633,'_transient_c770c6640_elements','a:0:{}','yes'),(358634,'_transient_c770c6640_custom_js','','yes'),(358635,'_transient_c770c6640_updated_at','1605059632','yes'),(358639,'_transient_40e4f8434_elements','a:0:{}','yes'),(358640,'_transient_40e4f8434_custom_js','','yes'),(358641,'_transient_40e4f8434_updated_at','1605059632','yes'),(358645,'_transient_805f23b92_elements','a:0:{}','yes'),(358646,'_transient_805f23b92_custom_js','','yes'),(358647,'_transient_805f23b92_updated_at','1605059632','yes'),(358648,'_transient_3308184bd_elements','a:0:{}','yes'),(358649,'_transient_3308184bd_custom_js','','yes'),(358650,'_transient_3308184bd_updated_at','1605059632','yes'),(358652,'_transient_4e7a1c7ea_elements','a:0:{}','yes'),(358653,'_transient_4e7a1c7ea_custom_js','','yes'),(358654,'_transient_4e7a1c7ea_updated_at','1605059632','yes'),(358655,'_transient_17aafa3d4_elements','a:0:{}','yes'),(358656,'_transient_17aafa3d4_custom_js','','yes'),(358657,'_transient_17aafa3d4_updated_at','1605059632','yes'),(358658,'_transient_a526777a9_elements','a:0:{}','yes'),(358659,'_transient_a526777a9_custom_js','','yes'),(358660,'_transient_a526777a9_updated_at','1605059632','yes'),(358661,'_transient_b0ff3698b_elements','a:0:{}','yes'),(358662,'_transient_b0ff3698b_custom_js','','yes'),(358663,'_transient_b0ff3698b_updated_at','1605059632','yes'),(358664,'_transient_e618c66d7_elements','a:0:{}','yes'),(358665,'_transient_e618c66d7_custom_js','','yes'),(358666,'_transient_e618c66d7_updated_at','1605059632','yes'),(358673,'_transient_d1691ca49_elements','a:0:{}','yes'),(358669,'_transient_89957ff7e_elements','a:0:{}','yes'),(358670,'_transient_89957ff7e_custom_js','','yes'),(358671,'_transient_89957ff7e_updated_at','1605059632','yes'),(358674,'_transient_d1691ca49_custom_js','','yes'),(358675,'_transient_d1691ca49_updated_at','1605059632','yes'),(358678,'_transient_7d742eaab_elements','a:0:{}','yes'),(358679,'_transient_7d742eaab_custom_js','','yes'),(358680,'_transient_7d742eaab_updated_at','1605059632','yes'),(358448,'_transient_4e74b0140_custom_js','','yes'),(352328,'jetpack_constants_sync_checksum','a:20:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:2119638798;s:14:\"WP_CONTENT_DIR\";i:740604602;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:1646442005;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:481110059;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:2267546353;s:8:\"WP_DEBUG\";i:734881840;}','yes'),(352329,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:5:\"https\";}','yes'),(352330,'jetpack_sync_https_history_site_url','a:2:{i:0;s:5:\"https\";i:1;s:5:\"https\";}','yes'),(352331,'jetpack_sync_https_history_home_url','a:2:{i:0;s:5:\"https\";i:1;s:5:\"https\";}','yes'),(356957,'_transient_a9129074b_custom_js','','yes'),(356958,'_transient_a9129074b_updated_at','1605059632','yes'),(356954,'_transient_06c77cc06_custom_js','','yes'),(356955,'_transient_06c77cc06_updated_at','1605059632','yes'),(356915,'_transient_5203dc641_elements','a:0:{}','yes'),(356903,'_transient_deb76819b_elements','a:0:{}','yes'),(356904,'_transient_deb76819b_custom_js','','yes'),(356905,'_transient_deb76819b_updated_at','1605059632','yes'),(356906,'_transient_9912fbded_elements','a:0:{}','yes'),(356907,'_transient_9912fbded_custom_js','','yes'),(356908,'_transient_9912fbded_updated_at','1605059632','yes'),(356916,'_transient_5203dc641_custom_js','','yes'),(356917,'_transient_5203dc641_updated_at','1605059632','yes'),(356922,'password_protected_version','2.3','yes'),(356953,'_transient_06c77cc06_elements','a:0:{}','yes'),(357721,'_transient_864b10d54_custom_js','','yes'),(356934,'wpins_block_notice','a:1:{s:25:\"essential_adons_elementor\";s:25:\"essential_adons_elementor\";}','yes'),(348497,'erp_acct_new_ledgers','1','yes'),(348547,'weforms_settings','a:6:{s:13:\"email_gateway\";s:9:\"wordpress\";s:6:\"credit\";b:0;s:12:\"email_footer\";b:1;s:9:\"recaptcha\";O:8:\"stdClass\":3:{s:3:\"key\";s:40:\"6LfXgNYZAAAAAOBEx0Em2yCeUBlEsFZP8aiFC1g2\";s:6:\"secret\";s:40:\"6LfXgNYZAAAAAOsnMaO1YC_KYp-dqH8aR9bu1BJ1\";s:4:\"type\";s:2:\"v2\";}s:10:\"permission\";s:14:\"manage_options\";s:8:\"gateways\";O:8:\"stdClass\":3:{s:8:\"sendgrid\";s:0:\"\";s:7:\"mailgun\";s:0:\"\";s:9:\"sparkpost\";s:0:\"\";}}','yes'),(348523,'pm_version','2.4.4','yes'),(348524,'pm_installed','1602350232','yes'),(348527,'include_project_manager','yes','yes'),(348495,'erp_modules','a:3:{s:3:\"hrm\";a:5:{s:5:\"title\";s:13:\"HR Management\";s:4:\"slug\";s:7:\"erp-hrm\";s:11:\"description\";s:25:\"Human Resource Management\";s:8:\"callback\";s:30:\"\\WeDevs\\ERP\\HRM\\Human_Resource\";s:7:\"modules\";a:0:{}}s:3:\"crm\";a:5:{s:5:\"title\";s:13:\"CR Management\";s:4:\"slug\";s:7:\"erp-crm\";s:11:\"description\";s:32:\"Customer Relationship Management\";s:8:\"callback\";s:37:\"\\WeDevs\\ERP\\CRM\\Customer_Relationship\";s:7:\"modules\";a:0:{}}s:10:\"accounting\";a:5:{s:5:\"title\";s:10:\"Accounting\";s:4:\"slug\";s:14:\"erp-accounting\";s:11:\"description\";s:21:\"Accounting Management\";s:8:\"callback\";s:33:\"\\WeDevs\\ERP\\Accounting\\Accounting\";s:7:\"modules\";a:0:{}}}','yes'),(357646,'_transient_b04ed28d2_elements','a:0:{}','yes'),(357647,'_transient_b04ed28d2_custom_js','','yes'),(357648,'_transient_b04ed28d2_updated_at','1605059632','yes'),(357678,'_transient_ca1a7ef6b_elements','a:0:{}','yes'),(357679,'_transient_ca1a7ef6b_custom_js','','yes'),(357680,'_transient_ca1a7ef6b_updated_at','1605059632','yes'),(357720,'_transient_864b10d54_elements','a:0:{}','yes'),(357545,'_transient_fc29b96a2_elements','a:0:{}','yes'),(357546,'_transient_fc29b96a2_custom_js','','yes'),(357547,'_transient_fc29b96a2_updated_at','1605059632','yes'),(357554,'_transient_c4ff536a2_elements','a:0:{}','yes'),(357555,'_transient_c4ff536a2_custom_js','','yes'),(357556,'_transient_c4ff536a2_updated_at','1605059632','yes'),(357502,'_transient_6c90b6c76_updated_at','1603149173','yes'),(357510,'_transient_6f1631f5e_elements','a:0:{}','yes'),(357511,'_transient_6f1631f5e_custom_js','','yes'),(357512,'_transient_6f1631f5e_updated_at','1605059632','yes'),(357522,'_transient_adfeb3ea3_elements','a:0:{}','yes'),(357523,'_transient_adfeb3ea3_custom_js','','yes'),(357524,'_transient_adfeb3ea3_updated_at','1605059632','yes'),(357532,'_transient_86f139116_elements','a:0:{}','yes'),(357533,'_transient_86f139116_custom_js','','yes'),(357534,'_transient_86f139116_updated_at','1605059632','yes'),(363068,'_transient_ac607990c_elements','a:0:{}','yes'),(363069,'_transient_ac607990c_custom_js','','yes'),(363070,'_transient_ac607990c_updated_at','1603074420','yes'),(360044,'_transient_2d067a2d6_elements','a:0:{}','yes'),(360045,'_transient_2d067a2d6_custom_js','','yes'),(360046,'_transient_2d067a2d6_updated_at','1602812385','yes'),(318761,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(318762,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(318763,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(318764,'elementor_active_kit','755','yes'),(318769,'elementor_log','a:32:{s:32:\"3a473c520d147aea5ac6d73fe0b396f6\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:2:\"17\";s:7:\"\0*\0file\";s:70:\"https://lantern-realty.com/wp-admin/post.php?post=753&action=elementor\";s:7:\"\0*\0line\";s:1:\"5\";s:7:\"\0*\0date\";s:19:\"2020-09-19 18:33:52\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:34:\"Unexpected token \\&#039;var\\&#039;\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:109;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2020-10-18 23:13:44\";i:1;s:19:\"2020-10-18 23:13:58\";i:2;s:19:\"2020-10-18 23:14:03\";i:3;s:19:\"2020-10-18 23:14:08\";i:4;s:19:\"2020-10-18 23:14:20\";i:5;s:19:\"2020-10-18 23:14:48\";i:6;s:19:\"2020-10-18 23:15:01\";i:7;s:19:\"2020-10-18 23:15:07\";i:8;s:19:\"2020-10-18 23:15:14\";i:9;s:19:\"2020-10-18 23:46:56\";i:10;s:19:\"2020-10-19 00:04:49\";i:11;s:19:\"2020-10-19 00:58:22\";i:12;s:19:\"2020-10-19 00:58:27\";i:13;s:19:\"2020-10-19 00:58:30\";i:14;s:19:\"2020-10-19 00:58:34\";i:15;s:19:\"2020-10-19 01:00:59\";i:16;s:19:\"2020-10-19 01:04:01\";i:17;s:19:\"2020-10-19 01:05:36\";i:18;s:19:\"2020-10-19 01:05:42\";i:19;s:19:\"2020-10-19 01:05:46\";i:20;s:19:\"2020-10-19 01:08:55\";i:21;s:19:\"2020-10-19 01:10:33\";i:22;s:19:\"2020-10-19 01:10:33\";i:23;s:19:\"2020-10-19 01:10:33\";i:24;s:19:\"2020-10-19 01:10:33\";i:25;s:19:\"2020-10-19 01:10:33\";i:26;s:19:\"2020-10-19 01:10:33\";i:27;s:19:\"2020-10-19 02:17:16\";i:28;s:19:\"2020-10-19 02:17:22\";i:29;s:19:\"2020-10-19 02:20:03\";i:30;s:19:\"2020-10-19 02:20:07\";i:31;s:19:\"2020-10-19 02:20:16\";i:32;s:19:\"2020-10-19 02:20:25\";i:33;s:19:\"2020-10-19 02:20:40\";i:34;s:19:\"2020-10-19 02:20:46\";i:35;s:19:\"2020-11-11 01:52:41\";i:36;s:19:\"2021-02-16 00:51:45\";i:37;s:19:\"2021-02-16 00:51:45\";i:38;s:19:\"2021-02-16 00:51:45\";i:39;s:19:\"2021-02-16 00:51:45\";i:40;s:19:\"2021-02-16 00:51:46\";i:41;s:19:\"2021-02-16 00:51:46\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1600540432\";s:7:\"message\";s:24:\"Unexpected token \\\'var\\\'\";s:3:\"url\";s:70:\"https://lantern-realty.com/wp-admin/post.php?post=753&action=elementor\";s:4:\"line\";s:1:\"5\";s:6:\"column\";s:2:\"17\";}}s:32:\"6dbdf3bfe7551c08fdf981437685cf24\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.0.9\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:28\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.0.9\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"44b0132801f9f7291f65bf819a5169bf\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"7725e9344833c471c889428962e969e3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"51a6a16a5637156e011db3ac3e5d3987\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"fa9cea6c12094c95aca135f35a135fb3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"25059b0e78af06314aef84df0aa84f56\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"f37533978c1fb855857dfb77e23b0024\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:61:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:61:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"a91e6bd2e78a2ca3d41bf65c1e909ecb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"5e32fb7f8ea81ccdc03e78139bd89bc0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"78463f36e8106ebd3ac64f38759bbc4c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:69:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:69:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"370698e891cab41a87a9a7029de05d63\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:73:\"Elementor/Upgrades - _v_3_0_5_re_move_space_between_widgets_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:73:\"Elementor/Upgrades - _v_3_0_5_re_move_space_between_widgets_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"34714cd1fe488335ffc9caa8a16244e2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:75:\"Elementor/Upgrades - _v_3_0_5_re_move_space_between_widgets_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:75:\"Elementor/Upgrades - _v_3_0_5_re_move_space_between_widgets_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"aa064acdd86d89bf09842a8a797c9c2c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.0.9\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.0.9\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"370f378bfed8ed45b82861024e58b755\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"196225\";s:7:\"\0*\0file\";s:79:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js\";s:7:\"\0*\0line\";s:2:\"31\";s:7:\"\0*\0date\";s:19:\"2020-09-20 20:18:17\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:73:\"Elementor panel doesn\\&#039;t have page named \\&#039;page_settings\\&#039;\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2020-09-20 20:18:17\";i:1;s:19:\"2020-09-20 20:18:22\";i:2;s:19:\"2020-09-20 20:18:38\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1600633097\";s:7:\"message\";s:58:\"Elementor panel doesn\\\'t have page named \\\'page_settings\\\'\";s:3:\"url\";s:79:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js\";s:4:\"line\";s:2:\"31\";s:6:\"column\";s:6:\"196225\";}}s:32:\"5b57413389aa43f5f1bf0ca72f9a05aa\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"60285\";s:7:\"\0*\0file\";s:89:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2020-10-11 17:10:47\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:58:\"Cannot read property \\&#039;attributes\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-10-11 17:10:47\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1602436247\";s:7:\"message\";s:48:\"Cannot read property \\\'attributes\\\' of undefined\";s:3:\"url\";s:89:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"60285\";}}s:32:\"81e919f591c8ca98d420eb6e2693b8ab\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"466338\";s:7:\"\0*\0file\";s:79:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2020-10-11 18:49:06\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:52:\"Cannot read property \\&#039;html\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:4;s:14:\"\0*\0times_dates\";a:4:{i:0;s:19:\"2020-10-11 18:49:06\";i:1;s:19:\"2020-10-12 13:31:59\";i:2;s:19:\"2020-10-18 15:18:14\";i:3;s:19:\"2020-10-18 17:42:15\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1602442146\";s:7:\"message\";s:42:\"Cannot read property \\\'html\\\' of undefined\";s:3:\"url\";s:79:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"466338\";}}s:32:\"92b47fcd00c79606f61e99206191d20f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-10-12 22:00:58\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.0.9\";s:2:\"to\";s:6:\"3.0.11\";}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2020-10-12 22:00:58\";i:1;s:19:\"2020-10-12 22:00:58\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.0.9\";s:2:\"to\";s:6:\"3.0.11\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"fcdab03ff8ad5da601bdfe0335ed5853\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"230117\";s:7:\"\0*\0file\";s:104:\"https://lantern-realty.com/wp-content/uploads/essential-addons-elementor/c43766651.min.js?ver=1603033795\";s:7:\"\0*\0line\";s:2:\"10\";s:7:\"\0*\0date\";s:19:\"2020-10-18 15:24:33\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:52:\"Cannot read property \\&#039;cloneNode\\&#039; of null\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-10-18 15:24:33\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1603034673\";s:7:\"message\";s:42:\"Cannot read property \\\'cloneNode\\\' of null\";s:3:\"url\";s:104:\"https://lantern-realty.com/wp-content/uploads/essential-addons-elementor/c43766651.min.js?ver=1603033795\";s:4:\"line\";s:2:\"10\";s:6:\"column\";s:6:\"230117\";}}s:32:\"c5d475c48d805e0cb830d0a976375544\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"465432\";s:7:\"\0*\0file\";s:90:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.0.11\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2020-10-19 00:01:24\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:52:\"Cannot read property \\&#039;menu\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2020-10-19 00:01:24\";i:1;s:19:\"2021-02-24 00:26:58\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1603065684\";s:7:\"message\";s:42:\"Cannot read property \\\'menu\\\' of undefined\";s:3:\"url\";s:90:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.0.11\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"465432\";}}s:32:\"d7976bd332174459bbd23170cda76a5c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-12-01 01:59:13\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.0.11\";s:2:\"to\";s:6:\"3.0.14\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-12-01 01:59:13\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.0.11\";s:2:\"to\";s:6:\"3.0.14\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"0a9a20e5cbb783a46e4a764ca59bd86b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-02-23 23:55:00\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.0.14\";s:2:\"to\";s:5:\"3.1.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-02-23 23:55:00\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.0.14\";s:2:\"to\";s:5:\"3.1.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c68aaf02cf1fcb8a3b4f49abaa59e7cd\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"253674\";s:7:\"\0*\0file\";s:104:\"https://lantern-realty.com/wp-content/uploads/essential-addons-elementor/9224d70ff.min.js?ver=1618359746\";s:7:\"\0*\0line\";s:2:\"10\";s:7:\"\0*\0date\";s:19:\"2021-04-14 00:24:39\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:61:\"Cannot read property \\&#039;querySelector\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2021-04-14 00:24:39\";i:1;s:19:\"2021-04-14 00:24:49\";i:2;s:19:\"2021-04-14 00:24:53\";i:3;s:19:\"2021-04-14 00:24:56\";i:4;s:19:\"2021-04-14 00:25:08\";i:5;s:19:\"2021-04-14 00:26:37\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1618359879\";s:7:\"message\";s:51:\"Cannot read property \\\'querySelector\\\' of undefined\";s:3:\"url\";s:104:\"https://lantern-realty.com/wp-content/uploads/essential-addons-elementor/9224d70ff.min.js?ver=1618359746\";s:4:\"line\";s:2:\"10\";s:6:\"column\";s:6:\"253674\";}}s:32:\"f988327bc57aa3a970608f3cc20cdea7\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"35000\";s:7:\"\0*\0file\";s:97:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=3.1.1\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2021-04-14 00:40:54\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:54:\"Cannot read property \\&#039;global\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:8;s:14:\"\0*\0times_dates\";a:8:{i:0;s:19:\"2021-04-14 00:40:54\";i:1;s:19:\"2021-04-14 00:41:20\";i:2;s:19:\"2021-04-14 00:42:31\";i:3;s:19:\"2021-04-14 00:42:41\";i:4;s:19:\"2021-04-14 00:43:05\";i:5;s:19:\"2021-04-14 00:43:11\";i:6;s:19:\"2021-04-14 00:43:17\";i:7;s:19:\"2021-04-14 00:45:07\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1618360854\";s:7:\"message\";s:44:\"Cannot read property \\\'global\\\' of undefined\";s:3:\"url\";s:97:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=3.1.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"35000\";}}s:32:\"419d0447784070d1c050c67bf592480a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:29\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d790e262da51d5088b4f199231e47631\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:30\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"3b0255b0cc0ff8d13bb18c72c83d0967\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:70:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:30\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:70:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"47505f5d6ba5a80eea320ad038597324\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:72:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:30\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:72:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"497ab457040e68791970ce897978f68c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:30\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"1d2fe2cf29e8773ff2d7b8043ba5ab90\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:32\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:32\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"85290d61da92b16515f24b834f66f5fb\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"251467\";s:7:\"\0*\0file\";s:89:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.5.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-04-20 01:56:05\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:64:\"Cannot read properties of undefined (reading \\&#039;menu\\&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2022-04-20 01:56:05\";i:1;s:19:\"2022-05-26 01:10:14\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1650419765\";s:7:\"message\";s:54:\"Cannot read properties of undefined (reading \\\'menu\\\')\";s:3:\"url\";s:89:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.5.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"251467\";}}s:32:\"de37ef35317ebd119cfa952311f9f251\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:94:\"/home/lanternrealty/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-04-30 16:28:13\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:165249;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2022-07-10 21:17:35\";i:1;s:19:\"2022-07-10 21:18:27\";i:2;s:19:\"2022-07-10 21:22:16\";i:3;s:19:\"2022-07-10 21:24:56\";i:4;s:19:\"2022-07-10 21:27:08\";i:5;s:19:\"2022-07-10 21:29:38\";i:6;s:19:\"2022-07-10 21:30:15\";i:7;s:19:\"2022-07-10 21:31:26\";i:8;s:19:\"2022-07-10 21:35:30\";i:9;s:19:\"2022-07-10 21:35:36\";i:10;s:19:\"2022-07-10 21:37:06\";i:11;s:19:\"2022-07-10 21:38:07\";i:12;s:19:\"2022-07-10 21:38:18\";i:13;s:19:\"2022-07-10 21:40:08\";i:14;s:19:\"2022-07-10 21:41:30\";i:15;s:19:\"2022-07-10 21:44:09\";i:16;s:19:\"2022-07-10 21:44:59\";i:17;s:19:\"2022-07-10 21:45:42\";i:18;s:19:\"2022-07-10 21:47:08\";i:19;s:19:\"2022-07-10 21:48:05\";i:20;s:19:\"2022-07-10 21:48:41\";i:21;s:19:\"2022-07-10 21:51:36\";i:22;s:19:\"2022-07-10 21:51:43\";i:23;s:19:\"2022-07-10 21:52:46\";i:24;s:19:\"2022-07-10 21:54:02\";i:25;s:19:\"2022-07-10 21:55:02\";i:26;s:19:\"2022-07-10 21:58:24\";i:27;s:19:\"2022-07-10 21:58:49\";i:28;s:19:\"2022-07-10 22:00:50\";i:29;s:19:\"2022-07-10 22:02:08\";i:30;s:19:\"2022-07-10 22:02:12\";i:31;s:19:\"2022-07-10 22:02:17\";i:32;s:19:\"2022-07-10 22:02:24\";i:33;s:19:\"2022-07-10 22:02:25\";i:34;s:19:\"2022-07-10 22:02:29\";i:35;s:19:\"2022-07-10 22:02:32\";i:36;s:19:\"2022-07-10 22:02:35\";i:37;s:19:\"2022-07-10 22:02:38\";i:38;s:19:\"2022-07-10 22:04:03\";i:39;s:19:\"2022-07-10 22:06:03\";i:40;s:19:\"2022-07-10 22:07:46\";i:41;s:19:\"2022-07-10 22:07:59\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:94:\"/home/lanternrealty/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}}','no'),(320448,'elementor_install_history','a:5:{s:5:\"3.0.9\";i:1600617929;s:6:\"3.0.11\";i:1602540058;s:6:\"3.0.14\";i:1606787954;s:5:\"3.1.1\";i:1614124500;s:5:\"3.2.2\";i:1619834730;}','yes'),(360604,'mec_custom_msg_display','1','yes'),(360605,'mec_custom_msg_display_option','1','yes'),(360606,'mec_custom_msg_close_option','close','yes'),(552372,'rsssl_upgraded_to_four','1','yes'),(552373,'rsssl_mixed_content_scan_dismissed','1','yes'),(552374,'rsssl_google_analytics_dismissed','1','yes'),(361818,'_transient_842283ec1_elements','a:0:{}','yes'),(361819,'_transient_842283ec1_custom_js','','yes'),(360599,'mec_custom_msg_2_display','1','yes'),(360600,'mec_custom_msg_2_display_option','1','yes'),(360601,'mec_custom_msg_2_close_option','close','yes'),(360602,'mec_saved_message_time','2020-10-18','yes'),(360603,'mec_custom_msg_html','<link rel = \"stylesheet\" type = \"text/css\" href = \"https://webnus.net/modern-events-calendar/addons-api/mec-extra-content/style.css\" /><div class=\"mec-custom-msg-notification-set-box extra\"><div class=\"w-row mec-custom-msg-notification-wrap\"><div class=\"w-col-sm-12\"><div class=\"w-clearfix w-box mec-cmsg-notification-box-wrap mec-new-addons-wrap\"><div class=\"w-box-head\">Announcement<span><i class=\"mec-sl-close\"></i></span></div><div class=\"w-box-content\"><div class=\"mec-addons-notification-box-image\"> <img src=\"https://webnus.net/modern-events-calendar/addons-api/mec-extra-content/divi-single-builder-addon-banner.png\" /></div><div class=\"mec-addons-notification-box-content mec-new-addons\"><div class=\"w-box-content\"><div class=\"mec-addons-notification-title\">Divi Single Builder Addon</div><p>With the help of this add-on, you will be able to create a ready-made template for all your events, add styles that you like to your single events, and change the layout in Divi page builder with a single drag and drop. Also, if there is a widget that you do not like, you can delete it and use other widgets in the single event of your website. You can use all the widgets of the single event separately and create any section that you want with whatever size that you want. You can also set an animation for each widget.</p><strong>Key Features:</strong><div class=\"mec-addons-key-features\"><ul><li>Creating Templates</li><li>Active Alongside Other Page Builders</li><li>Unique Styling</li><li>Activate On MEC Lite</li></ul></div><div style=\"clear:both\"></div><a href=\"https://webnus.net/modern-events-calendar/addons/divi-single-builder/?ref=17\" target=\"_blank\">Read More</a></div></div></div></div></div></div></div>','yes'),(357104,'_transient_d6d5d0d31_custom_js','','yes'),(357105,'_transient_d6d5d0d31_updated_at','1605059632','yes'),(357075,'_transient_fb50644f7_elements','a:0:{}','yes'),(357076,'_transient_fb50644f7_custom_js','','yes'),(357077,'_transient_fb50644f7_updated_at','1605059632','yes'),(357082,'_transient_b119eb73c_elements','a:0:{}','yes'),(357083,'_transient_b119eb73c_custom_js','','yes'),(357084,'_transient_b119eb73c_updated_at','1605059632','yes'),(357085,'_transient_3e7302ede_elements','a:0:{}','yes'),(357086,'_transient_3e7302ede_custom_js','','yes'),(357087,'_transient_3e7302ede_updated_at','1605059632','yes'),(357088,'_transient_40e70554a_elements','a:0:{}','yes'),(357089,'_transient_40e70554a_custom_js','','yes'),(357090,'_transient_40e70554a_updated_at','1605059632','yes'),(357093,'_transient_c362e2ad6_elements','a:0:{}','yes'),(357094,'_transient_c362e2ad6_custom_js','','yes'),(357095,'_transient_c362e2ad6_updated_at','1605059632','yes'),(230684,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(352307,'stats_cache','a:2:{s:32:\"f44ab0452d11817a00e55398a6c656c8\";a:1:{i:1602540883;a:0:{}}s:32:\"8a5324c31ed91b32071fc072c16ad16f\";a:1:{i:1602540883;a:0:{}}}','yes'),(1270094,'06c77cc06_eael_updated_at','1656030088','no'),(1294322,'8e77d97ce_eael_updated_at','1656030088','no'),(552442,'redux-framework_tracking_notice','hide','yes'),(552443,'redux-framework_tracking_skipped','yes','yes'),(360333,'wpmudev_recommended_plugins_registered','a:1:{s:23:\"wp-smushit/wp-smush.php\";a:1:{s:13:\"registered_at\";i:1602987008;}}','no'),(320508,'redux-framework_allow_tracking','no','yes'),(320746,'elementor_disable_typography_schemes','','yes'),(320747,'elementor_notice','','yes'),(320748,'elementor_css_print_method','external','yes'),(320749,'elementor_editor_break_lines','1','yes'),(320750,'elementor_unfiltered_files_upload','','yes'),(320751,'elementor_optimized_dom_output','','yes'),(320752,'elementor_load_fa4_shim','','yes'),(360327,'wp-smush-settings','a:22:{s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:1;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:1;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:1;s:17:\"background_images\";b:1;s:16:\"rest_api_support\";b:0;s:4:\"bulk\";b:0;}','yes'),(360251,'w3tc_state','{\"common.install\":1602982913,\"common.install_version\":\"0.15.1\",\"license.status\":\"no_key\",\"license.next_check\":1603414913,\"license.terms\":\"\",\"minify.hide_minify_help\":true,\"license.community_terms\":\"accept\",\"common.show_note.plugins_updated\":true,\"common.show_note.plugins_updated.timestamp\":1602985952}','no'),(360328,'wp-smush-install-type','existing','no'),(360329,'wp-smush-version','3.9.11','no'),(360265,'w3tc_minify','{\"c7035.js\":[\"wp-includes\\/js\\/jquery\\/jquery.js\"],\"787d0.js\":[\"wp-content\\/plugins\\/add-to-any\\/addtoany.min.js\",\"wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rbtools.min.js\",\"wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rs6.min.js\",\"wp-content\\/plugins\\/content-protector\\/assets\\/public\\/cookie.js\",\"wp-content\\/plugins\\/content-protector\\/assets\\/public\\/captcha.js\"],\"1df76.js\":[\"wp-content\\/plugins\\/content-protector\\/assets\\/public\\/passster-public.min.js\"],\"7ff5b.js\":[\"wp-includes\\/js\\/thickbox\\/thickbox.js\",\"wp-includes\\/js\\/jquery\\/ui\\/core.min.js\",\"wp-includes\\/js\\/jquery\\/ui\\/datepicker.min.js\"],\"5bd71.js\":[\"wp-includes\\/js\\/jquery\\/ui\\/widget.min.js\",\"wp-includes\\/js\\/jquery\\/ui\\/position.min.js\",\"wp-includes\\/js\\/jquery\\/ui\\/menu.min.js\",\"wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js\",\"wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill-fetch.min.js\",\"wp-includes\\/js\\/dist\\/dom-ready.min.js\",\"wp-includes\\/js\\/dist\\/i18n.min.js\"],\"064ea.js\":[\"wp-includes\\/js\\/dist\\/a11y.min.js\"],\"1a319.js\":[\"wp-includes\\/js\\/jquery\\/ui\\/autocomplete.min.js\"],\"f5008.js\":[\"wp-content\\/plugins\\/contact-form-7\\/includes\\/js\\/scripts.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/bootstrap.bundle.min.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/bootstrap-select.min.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/modernizr.custom.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/slideout.min.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/lightbox.min.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/theia-sticky-sidebar.min.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/slick.min.js\",\"wp-includes\\/js\\/jquery\\/ui\\/mouse.min.js\",\"wp-includes\\/js\\/jquery\\/ui\\/slider.min.js\"],\"e1ccd.js\":[\"wp-content\\/themes\\/houzez\\/js\\/custom.js\"],\"e2d4b.js\":[\"wp-includes\\/js\\/wp-embed.min.js\",\"wp-content\\/plugins\\/js_composer\\/assets\\/js\\/dist\\/js_composer_front.min.js\",\"wp-content\\/plugins\\/js_composer\\/assets\\/lib\\/waypoints\\/waypoints.min.js\"],\"55015.css\":[\"wp-includes\\/css\\/dashicons.min.css\",\"wp-includes\\/js\\/thickbox\\/thickbox.css\"],\"88aef.css\":[\"wp-includes\\/css\\/dist\\/block-library\\/style.min.css\",\"wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css\",\"wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css\"],\"799ed.css\":[\"wp-content\\/plugins\\/content-protector\\/assets\\/public\\/passster-public.min.css\",\"wp-content\\/themes\\/houzez\\/css\\/bootstrap.min.css\",\"wp-content\\/themes\\/houzez\\/css\\/bootstrap-select.min.css\",\"wp-content\\/plugins\\/elementor\\/assets\\/lib\\/font-awesome\\/css\\/all.min.css\",\"wp-content\\/themes\\/houzez\\/css\\/icons.css\",\"wp-content\\/themes\\/houzez\\/css\\/slick-min.css\",\"wp-content\\/themes\\/houzez\\/css\\/slick-theme-min.css\",\"wp-content\\/themes\\/houzez\\/css\\/jquery-ui.min.css\",\"wp-content\\/themes\\/houzez\\/css\\/radio-checkbox-min.css\",\"wp-content\\/themes\\/houzez\\/css\\/bootstrap-datepicker.min.css\",\"wp-content\\/themes\\/houzez\\/css\\/main.css\",\"wp-content\\/themes\\/houzez\\/css\\/styling-options.css\",\"wp-content\\/themes\\/houzez\\/style.css\"],\"a03d0.css\":[\"wp-content\\/plugins\\/js_composer\\/assets\\/css\\/js_composer.min.css\",\"wp-content\\/plugins\\/add-to-any\\/addtoany.min.css\"],\"22db3.css\":[\"wp-content\\/plugins\\/simple-real-estate-pack-4\\/css\\/srp.css\",\"wp-content\\/plugins\\/simple-real-estate-pack-4\\/css\\/ui.tabs.css\"],\"b5b04.css\":[\"wp-content\\/plugins\\/js_composer\\/assets\\/lib\\/bower\\/animate-css\\/animate.min.css\"]}','no'),(352039,'wpdocs_options','a:10:{s:21:\"wpdocs_options_update\";s:4:\"true\";s:12:\"allowed_role\";a:0:{}s:9:\"icon_size\";s:0:\"\";s:9:\"font_size\";s:0:\"\";s:11:\"allowed_ext\";s:29:\"doc, docx, png, gif, bmp, jpg\";s:9:\"bootstrap\";s:4:\"true\";s:9:\"searchbox\";s:4:\"true\";s:11:\"thumb_image\";s:4:\"true\";s:12:\"details_type\";s:4:\"true\";s:12:\"details_size\";s:4:\"true\";}','yes'),(352080,'wpdocs_view','a:1:{i:0;s:11:\"detail_view\";}','yes'),(357027,'_transient_e0f760bcc_elements','a:0:{}','yes'),(357028,'_transient_e0f760bcc_custom_js','','yes'),(357029,'_transient_e0f760bcc_updated_at','1605059632','yes'),(401192,'_transient_ae8a55395_elements','a:0:{}','yes'),(401193,'_transient_ae8a55395_custom_js','','yes'),(401194,'_transient_ae8a55395_updated_at','1605059632','yes'),(357786,'_transient_66b3eb4d0_custom_js','','yes'),(357787,'_transient_66b3eb4d0_updated_at','1605059632','yes'),(357791,'_transient_d460f4ec3_elements','a:0:{}','yes'),(357792,'_transient_d460f4ec3_custom_js','','yes'),(357793,'_transient_d460f4ec3_updated_at','1605059632','yes'),(357796,'_transient_6ed4a5664_elements','a:0:{}','yes'),(357797,'_transient_6ed4a5664_custom_js','','yes'),(357798,'_transient_6ed4a5664_updated_at','1605059632','yes'),(357803,'_transient_95bbbf13b_elements','a:0:{}','yes'),(357804,'_transient_95bbbf13b_custom_js','','yes'),(357805,'_transient_95bbbf13b_updated_at','1605059632','yes'),(356788,'_transient_c8773739b_elements','a:0:{}','yes'),(320743,'_elementor_settings_update_time','1651343325','yes'),(320744,'elementor_cpt_support','a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:13:\"houzez_agency\";i:3;s:12:\"houzez_agent\";}','yes'),(320745,'elementor_disable_color_schemes','','yes'),(360337,'smush_global_stats','a:9:{s:11:\"size_before\";i:602942885;s:10:\"size_after\";i:578150000;s:7:\"percent\";d:4.0999999999999996447286321199499070644378662109375;s:5:\"human\";s:7:\"23.6 MB\";s:5:\"bytes\";i:24792885;s:12:\"total_images\";i:2002;s:12:\"resize_count\";i:6;s:14:\"resize_savings\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(360340,'wp-smush-lazy_load','a:9:{s:6:\"format\";a:5:{s:4:\"jpeg\";b:1;s:3:\"png\";b:1;s:3:\"gif\";b:1;s:3:\"svg\";b:1;s:6:\"iframe\";b:1;}s:6:\"output\";a:4:{s:7:\"content\";b:1;s:7:\"widgets\";b:1;s:10:\"thumbnails\";b:1;s:9:\"gravatars\";b:1;}s:9:\"animation\";a:4:{s:8:\"selected\";s:6:\"fadein\";s:6:\"fadein\";a:2:{s:8:\"duration\";i:400;s:5:\"delay\";i:0;}s:7:\"spinner\";a:2:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}}s:11:\"placeholder\";a:3:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}s:5:\"color\";s:7:\"#F3F3F3\";}}s:7:\"include\";a:7:{s:9:\"frontpage\";b:1;s:4:\"home\";b:1;s:4:\"page\";b:1;s:6:\"single\";b:1;s:7:\"archive\";b:1;s:8:\"category\";b:1;s:3:\"tag\";b:1;}s:13:\"exclude-pages\";a:0:{}s:15:\"exclude-classes\";a:0:{}s:6:\"footer\";b:1;s:6:\"native\";b:0;s:8:\"noscript\";b:0;}','yes'),(360339,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";i:0;s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(360341,'skip-smush-setup','1','yes'),(360344,'wp-smush-hide_smush_welcome','1','no'),(360345,'wp-smush-resize_sizes','a:2:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;}','yes'),(361919,'widget_gce_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(360454,'WpFastestCache','{\"wpFastestCachePreload_homepage\":\"on\",\"wpFastestCachePreload_post\":\"on\",\"wpFastestCachePreload_category\":\"on\",\"wpFastestCachePreload_page\":\"on\",\"wpFastestCachePreload_tag\":\"on\",\"wpFastestCachePreload_attachment\":\"on\",\"wpFastestCachePreload_customposttypes\":\"on\",\"wpFastestCachePreload_customTaxonomies\":\"on\",\"wpFastestCachePreload_number\":\"4\",\"wpFastestCachePreload_restart\":\"on\",\"wpFastestCachePreload_order\":\"\",\"wpFastestCacheMobile\":\"on\",\"wpFastestCacheNewPost\":\"on\",\"wpFastestCacheNewPost_type\":\"all\",\"wpFastestCacheUpdatePost\":\"on\",\"wpFastestCacheUpdatePost_type\":\"post\",\"wpFastestCacheLanguage\":\"eng\"}','yes'),(360455,'wpfc-group','','yes'),(360450,'WpFc_api_key','dbfc919b3d9857899f623bacd09b4869','yes'),(356752,'_transient_921d470f8_elements','a:0:{}','yes'),(348457,'wpforms_version','1.6.2.3','yes'),(348496,'erp_settings_erp-crm_subscription','a:8:{s:10:\"is_enabled\";s:3:\"yes\";s:13:\"email_subject\";s:59:\"Confirm your subscription to Lantern Realty and Development\";s:13:\"email_content\";s:293:\"Hello!\n\nThanks so much for signing up for our newsletter.\nWe need you to activate your subscription to the list(s): [contact_groups_to_confirm] by clicking the link below: \n\n[activation_link]Click here to confirm your subscription.[/activation_link]\n\nThank you,\n\nLantern Realty and Development\";s:7:\"page_id\";i:868;s:18:\"confirm_page_title\";s:23:\"You are now subscribed!\";s:20:\"confirm_page_content\";s:63:\"We\'ve added you to our email list. You\'ll hear from us shortly.\";s:17:\"unsubs_page_title\";s:24:\"You are now unsubscribed\";s:19:\"unsubs_page_content\";s:47:\"You are successfully unsubscribed from list(s):\";}','yes'),(422777,'0f0b6552d_elements','a:0:{}','yes'),(422778,'0f0b6552d_custom_js','','yes'),(358694,'_transient_1e602e7fe_elements','a:0:{}','yes'),(358695,'_transient_1e602e7fe_custom_js','','yes'),(358696,'_transient_1e602e7fe_updated_at','1605059632','yes'),(434760,'e661d9210_elements','a:0:{}','yes'),(434761,'e661d9210_custom_js','','yes'),(434762,'e661d9210_updated_at','1606787969','yes'),(356869,'postie-settings','a:74:{s:16:\"input_connection\";s:7:\"sockets\";s:14:\"input_protocol\";s:8:\"imap-ssl\";s:16:\"mail_server_port\";s:3:\"993\";s:11:\"mail_server\";s:23:\"mail.lantern-realty.com\";s:11:\"mail_userid\";s:32:\"announcements@lantern-realty.com\";s:13:\"mail_password\";s:14:\"2020LanternRD!\";s:17:\"ignore_email_date\";s:1:\"1\";s:15:\"use_time_offset\";s:1:\"1\";s:11:\"time_offset\";s:1:\"0\";s:8:\"interval\";s:10:\"tenminutes\";s:9:\"maxemails\";s:1:\"0\";s:28:\"delete_mail_after_processing\";s:1:\"1\";s:16:\"postie_log_error\";s:1:\"1\";s:23:\"postie_log_error_notify\";s:5:\"admin\";s:16:\"postie_log_debug\";s:1:\"1\";s:11:\"role_access\";a:1:{s:6:\"author\";s:1:\"1\";}s:20:\"authorized_addresses\";s:0:\"\";s:14:\"admin_username\";s:5:\"admin\";s:16:\"force_user_login\";s:1:\"0\";s:22:\"turn_authorization_off\";s:1:\"0\";s:16:\"prefer_text_type\";s:4:\"html\";s:19:\"prefer_text_convert\";s:1:\"1\";s:21:\"default_post_category\";s:2:\"16\";s:14:\"category_match\";s:1:\"1\";s:14:\"category_colon\";s:1:\"1\";s:13:\"category_dash\";s:1:\"1\";s:16:\"category_bracket\";s:1:\"1\";s:15:\"category_remove\";s:1:\"1\";s:17:\"default_post_tags\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:11:\"post_format\";s:8:\"standard\";s:9:\"post_type\";s:4:\"post\";s:13:\"default_title\";s:20:\"Lantern Announcement\";s:16:\"reply_as_comment\";s:1:\"1\";s:11:\"strip_reply\";s:1:\"1\";s:21:\"forward_rejected_mail\";s:1:\"1\";s:21:\"allow_subject_in_mail\";s:1:\"1\";s:21:\"allow_html_in_subject\";s:1:\"1\";s:18:\"allow_html_in_body\";s:1:\"1\";s:13:\"message_start\";s:0:\"\";s:11:\"message_end\";s:0:\"\";s:14:\"filternewlines\";s:1:\"1\";s:14:\"convertnewline\";s:1:\"0\";s:16:\"return_to_sender\";s:1:\"0\";s:18:\"confirmation_email\";s:6:\"sender\";s:11:\"converturls\";s:1:\"1\";s:14:\"drop_signature\";s:1:\"1\";s:16:\"sig_pattern_list\";s:29:\"--\\s?[\\r\\n]?\r\n--\\s\r\n--\r\n---\r\n\";s:14:\"featured_image\";s:1:\"0\";s:22:\"include_featured_image\";s:1:\"1\";s:12:\"auto_gallery\";s:1:\"0\";s:17:\"auto_gallery_link\";s:7:\"Default\";s:13:\"images_append\";s:1:\"1\";s:25:\"start_image_count_at_zero\";s:1:\"0\";s:18:\"custom_image_field\";s:1:\"0\";s:12:\"image_resize\";s:1:\"1\";s:17:\"image_placeholder\";s:6:\"#img%#\";s:22:\"selected_imagetemplate\";s:17:\"wordpress_default\";s:13:\"imagetemplate\";s:153:\"<a href=\"{PAGELINK}\"><img src=\"{MEDIUM}\" alt=\"{CAPTION}\" width=\"{MEDIUMWIDTH}\" height=\"{MEDIUMHEIGHT}\" class=\"alignnone size-medium wp-image-{ID}\" /></a>\";s:23:\"selected_video1template\";s:10:\"vshortcode\";s:14:\"video1template\";s:64:\"[video width=\"568\" height=\"320\" {FILETYPE}=\"{FILELINK}\"][/video]\";s:11:\"video1types\";s:56:\"mp4, mpeg4, 3gp, 3gpp, 3gpp2, 3gp2, mov, mpeg, quicktime\";s:23:\"selected_video2template\";s:11:\"simple_link\";s:14:\"video2template\";s:35:\"<a href=\"{FILELINK}\">{FILENAME}</a>\";s:11:\"video2types\";s:5:\"x-flv\";s:22:\"selected_audiotemplate\";s:11:\"simple_link\";s:13:\"audiotemplate\";s:35:\"<a href=\"{FILELINK}\">{FILENAME}</a>\";s:10:\"audiotypes\";s:24:\"m4a, mp3, ogg, wav, mpeg\";s:20:\"supported_file_types\";s:13:\"application\r\n\";s:17:\"banned_files_list\";s:0:\"\";s:8:\"icon_set\";s:5:\"metro\";s:9:\"icon_size\";s:2:\"48\";s:24:\"selected_generaltemplate\";s:14:\"postie_default\";s:15:\"generaltemplate\";s:42:\"<a href=\"{FILELINK}\">{ICON} {FILENAME}</a>\";}','yes'),(320722,'_elementor_editor_upgrade_notice_dismissed','1653526457','yes'),(352108,'_transient_googlesitekit_verification_meta_tags','a:0:{}','yes'),(352105,'googlesitekit_new_site_posts','0','yes'),(352106,'googlesitekit_db_version','1.8.1','yes'),(352107,'googlesitekit_has_connected_admins','1','yes'),(352112,'googlesitekit_credentials','oQe3p8kRjpEtaWs39Xnia3lzc3FaSlhyeUxvcm9OL2NWWE9hNGJ0NGFUYnc4K3plTlpMeEsvSWt3WU5GZmRBdnNIc0lzVVJxNGlFK2RHRFNVQXMvemdPZTZuRkh3RHhKK2VNT1dxQXBwdG1idk9WRUs5Y3JKZTUyeDZZMjhVK2daWHVqVkI2OVUzY3BQamJNNlNyUWc2V0ZOczBGTHFLbEV6Z0lKcFdsOXkrdWVnMU5Xd01Ga1JzeFdXdlR6eVZISzhGMVd4N3B0MEpQMmd2TWprWG9ESk1RZ3NpRk1CVitsSDdBT3ZRRGtVeXpkYWM0c0U3Y1pvYnJzNGFjdU9QN0d6RlpJMDJuekFDMkVkVW5GbEp2N2tYaEdMRkxkTys3N3JyVE5QTjhIYzhUSW5IT2VKZnFPYVFmb0NzMktQMUYwd1Y3SmRiejBRPT0=','yes'),(352113,'googlesitekit_connected_proxy_url','https://lantern-realty.com/','yes'),(352114,'googlesitekit_search-console_settings','a:1:{s:10:\"propertyID\";s:27:\"https://lantern-realty.com/\";}','yes'),(352115,'googlesitekit_owner_id','1','yes'),(352117,'googlesitekit_active_modules','a:2:{i:0;s:9:\"analytics\";i:1;s:18:\"pagespeed-insights\";}','yes'),(352119,'googlesitekit_analytics_settings','a:9:{s:7:\"ownerID\";i:1;s:9:\"accountID\";s:9:\"125820020\";s:13:\"adsenseLinked\";b:0;s:11:\"anonymizeIP\";b:1;s:21:\"internalWebPropertyID\";s:9:\"184453620\";s:9:\"profileID\";s:9:\"181815156\";s:10:\"propertyID\";s:14:\"UA-125820020-1\";s:16:\"trackingDisabled\";a:1:{i:0;s:13:\"loggedinUsers\";}s:10:\"useSnippet\";b:1;}','yes'),(351581,'wp_mail_smtp_initial_version','2.4.0','no'),(351496,'wp_protect_password_misc_options','{\"wpp_use_custom_form_action\":\"true\"}','no'),(351497,'pda-pwd-tbl-version','1.8','yes'),(351505,'wp_protect_password_shortcode_options','{\"wpp_use_shortcode_page_builder\":\"true\"}','no'),(348532,'wedevs-project-manager_allow_tracking','no','yes'),(348534,'wedevs-project-manager_tracking_skipped','yes','yes'),(357136,'_transient_6edae09f5_elements','a:0:{}','yes'),(357137,'_transient_6edae09f5_custom_js','','yes'),(357138,'_transient_6edae09f5_updated_at','1605059632','yes'),(357143,'_transient_8f82431e3_elements','a:0:{}','yes'),(357144,'_transient_8f82431e3_custom_js','','yes'),(357145,'_transient_8f82431e3_updated_at','1605059632','yes'),(357167,'_transient_6999fbcf5_elements','a:0:{}','yes'),(357168,'_transient_6999fbcf5_custom_js','','yes'),(357169,'_transient_6999fbcf5_updated_at','1605059632','yes'),(357183,'_transient_50ab2d314_elements','a:0:{}','yes'),(357184,'_transient_50ab2d314_custom_js','','yes'),(357185,'_transient_50ab2d314_updated_at','1605059632','yes'),(360590,'mec_options','a:5:{s:8:\"settings\";a:7:{s:24:\"multiple_day_show_method\";s:18:\"first_day_listgrid\";s:18:\"google_maps_status\";i:1;s:20:\"export_module_status\";i:1;s:2:\"sn\";a:7:{s:9:\"googlecal\";i:1;s:4:\"ical\";i:1;s:8:\"facebook\";i:1;s:5:\"gplus\";i:1;s:7:\"twitter\";i:1;s:8:\"linkedin\";i:1;s:5:\"email\";i:1;}s:16:\"countdown_status\";i:1;s:21:\"social_network_status\";i:1;s:20:\"default_skin_archive\";s:13:\"full_calendar\";}s:6:\"styles\";a:1:{s:3:\"CSS\";s:0:\"\";}s:8:\"gateways\";a:1:{i:1;a:1:{s:6:\"status\";i:1;}}s:13:\"notifications\";a:7:{s:20:\"booking_notification\";a:3:{s:7:\"subject\";s:25:\"Your booking is received.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:238:\"Hello %%name%%,\r\n\r\n                    Your booking is received. We will check and confirm your booking as soon as possible.\r\n                    Thanks for your patience.\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:18:\"email_verification\";a:3:{s:7:\"subject\";s:27:\"Please verify your booking.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:205:\"Hi %%name%%,\r\n\r\n                    Please verify your booking by clicking on following link:\r\n\r\n                    %%verification_link%%\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:20:\"booking_confirmation\";a:3:{s:7:\"subject\";s:26:\"Your booking is confirmed.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:295:\"Hi %%name%%,\r\n\r\n                    Your booking is confirmed. You should be available at %%book_date%% in %%event_location_address%%.\r\n\r\n                    You can contact to event organizer by calling %%event_organizer_tel%%.\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:25:\"cancellation_notification\";a:7:{s:6:\"status\";s:1:\"0\";s:7:\"subject\";s:25:\"Your booking is canceled.\";s:10:\"recipients\";s:0:\"\";s:13:\"send_to_admin\";s:1:\"1\";s:17:\"send_to_organizer\";s:1:\"0\";s:12:\"send_to_user\";s:1:\"0\";s:7:\"content\";s:187:\"Hi %%name%%,\r\n\r\n                    For your information, your booking for %%event_title%% at %%book_date%% is canceled.\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:18:\"admin_notification\";a:3:{s:7:\"subject\";s:26:\"A new booking is received.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:282:\"Dear Admin,\r\n\r\n                    A new booking is received. Please check and confirm it as soon as possible.\r\n\r\n                    %%admin_link%%\r\n                    \r\n                    %%attendees_full_info%%\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:9:\"new_event\";a:4:{s:6:\"status\";s:1:\"1\";s:7:\"subject\";s:21:\"A new event is added.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:322:\"Hello,\r\n\r\n                    A new event just added. The event title is %%event_title%% and its status is %%event_status%%.\r\n                    The new event may need to be published. Please use this link for managing your website events: %%admin_link%%\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:21:\"user_event_publishing\";a:4:{s:6:\"status\";s:1:\"1\";s:7:\"subject\";s:25:\"Your event gets published\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:224:\"Hello %%name%%,\r\n\r\n                    Your event gets published. You can check it below:\r\n\r\n                    <a href=\"%%event_link%%\">%%event_title%%</a>\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}}s:2:\"ix\";a:4:{s:21:\"google_import_api_key\";s:39:\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\";s:25:\"google_import_calendar_id\";s:52:\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\";s:24:\"google_import_start_date\";s:10:\"2020-09-18\";s:22:\"google_import_end_date\";s:10:\"2021-01-18\";}}','yes'),(351716,'weforms_hide_fortressdb_version','1.4.9','yes'),(360593,'widget_mec_mec_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(360594,'widget_mec_single_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(360595,'mec_gfont','','yes'),(360596,'mec_dyncss','','yes'),(360597,'mec_saved_message_2_time','2020-10-18','yes'),(360598,'mec_custom_msg_2_html','<link rel = \"stylesheet\" type = \"text/css\" href = \"https://webnus.net/modern-events-calendar/addons-api/mec-extra-content/style.css\" /><div class=\"mec-custom-msg-notification-set-box extra\"><div class=\"w-row mec-custom-msg-notification-wrap\"><div class=\"w-col-sm-12\"><div class=\"w-clearfix w-box mec-cmsg-2-notification-box-wrap mec-new-addons-wrap\"><div class=\"w-box-head\">Announcement<span><i class=\"mec-sl-close\"></i></span></div><div class=\"w-box-content\"><div class=\"mec-addons-notification-box-image\"> <img src=\"https://webnus.net/modern-events-calendar/addons-api/mec-extra-content/zoom-integration-addon-banner.png\" /></div><div class=\"mec-addons-notification-box-content mec-new-addons\"><div class=\"w-box-content\"><div class=\"mec-addons-notification-title\">Zoom Integration Addon</div><p>With this add-on you can show your users the information regarding your meetings and webinars. Provide the users with an embedded code of your event link plus username and password. You can choose whether they should be able to see this information after the reservation or be shown to everyone. You can also send this information via email after the reservation is done. Put a badge on shortcodes and single events to make them stand out.</p><strong>Key Features:</strong><div class=\"mec-addons-key-features\"><ul><li>Import/Export Zoom Webinars</li><li>Import/Export Zoom Meetings</li><li>View Embedded</li><li>Email Placeholders</li><li>View In Single Event</li><li>View In Shortcodes</li></ul></div><div style=\"clear:both\"></div><a href=\"https://webnus.net/modern-events-calendar/addons/zoom-integration/?ref=17\" target=\"_blank\">Read More</a></div></div></div></div></div></div></div>','yes'),(348582,'user_registration_ajax_form_submission_on_edit_profile','no','yes'),(348583,'user_registration_disable_logout_confirmation','no','yes'),(398885,'_transient_228c5125d_elements','a:0:{}','yes'),(398886,'_transient_228c5125d_custom_js','','yes'),(398887,'_transient_228c5125d_updated_at','1605059632','yes'),(381766,'_transient_7c47d25a3_elements','a:0:{}','yes'),(381767,'_transient_7c47d25a3_custom_js','','yes'),(381768,'_transient_7c47d25a3_updated_at','1605059632','yes'),(381770,'_transient_c8abb3072_elements','a:0:{}','yes'),(381771,'_transient_c8abb3072_custom_js','','yes'),(381772,'_transient_c8abb3072_updated_at','1605059632','yes'),(362698,'_transient_9583082da_elements','a:1:{i:7;s:12:\"creative-btn\";}','yes'),(362665,'_transient_6a6288fa6_elements','a:1:{i:7;s:12:\"creative-btn\";}','yes'),(362666,'_transient_6a6288fa6_custom_js','','yes'),(362667,'_transient_6a6288fa6_updated_at','1605059632','yes'),(417915,'3bb40134c_elements','a:0:{}','yes'),(417916,'3bb40134c_custom_js','','yes'),(417917,'3bb40134c_updated_at','1606787969','yes'),(1253255,'17aafa3d4_eael_updated_at','1656030088','no'),(417969,'bc052ff1d_elements','a:0:{}','yes'),(417970,'bc052ff1d_custom_js','','yes'),(417971,'bc052ff1d_updated_at','1623201995','yes'),(1253363,'7d742eaab_eael_updated_at','1656030088','no'),(1258212,'2ce28ceb7_eael_updated_at','1656030088','no'),(361820,'_transient_842283ec1_updated_at','1605059632','yes'),(361823,'_transient_45184feba_elements','a:0:{}','yes'),(361824,'_transient_45184feba_custom_js','','yes'),(361825,'_transient_45184feba_updated_at','1605059632','yes'),(1251241,'6a6288fa6_eael_updated_at','1656030088','no'),(635193,'rsssl_current_version','5.3.1','yes'),(621352,'edade4508_elements','a:0:{}','yes'),(621353,'edade4508_custom_js','','yes'),(621354,'edade4508_updated_at','1614130785','yes'),(659247,'https_detection_errors','a:0:{}','yes'),(635262,'37a6d66e5_elements','a:0:{}','yes'),(635263,'37a6d66e5_custom_js','','yes'),(630908,'gdoc_settings','a:2:{s:18:\"datatables_classes\";s:10:\"igsv-table\";s:26:\"datatables_defaults_object\";O:8:\"stdClass\":2:{s:3:\"dom\";s:16:\"B<\'clear\'>lfrtip\";s:7:\"buttons\";a:6:{i:0;s:6:\"colvis\";i:1;s:4:\"copy\";i:2;s:3:\"csv\";i:3;s:5:\"excel\";i:4;s:3:\"pdf\";i:5;s:5:\"print\";}}}','yes'),(443590,'784145965_elements','a:0:{}','yes'),(443591,'784145965_custom_js','','yes'),(443592,'784145965_updated_at','1606787969','yes'),(1303463,'c968779c8_eael_updated_at','1651360580','no'),(418336,'7aca7e306_elements','a:0:{}','yes'),(418337,'7aca7e306_custom_js','','yes'),(418338,'7aca7e306_updated_at','1614130785','yes'),(1252121,'10149ad02_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(1252123,'10149ad02_eael_updated_at','1656030088','no'),(1250945,'ea1d43322_eael_updated_at','1656030088','no'),(1345573,'e2976cf2c_eael_updated_at','1650419774','no'),(391508,'_transient_a4e475ec8_elements','a:0:{}','yes'),(392820,'_transient_a3f114b53_elements','a:0:{}','yes'),(364027,'user_role_editor','a:8:{s:11:\"ure_version\";s:4:\"4.62\";s:15:\"show_admin_role\";s:1:\"1\";s:17:\"ure_caps_readable\";s:1:\"1\";s:24:\"ure_show_deprecated_caps\";s:1:\"1\";s:23:\"ure_confirm_role_update\";s:1:\"1\";s:14:\"edit_user_caps\";s:1:\"1\";s:18:\"caps_columns_quant\";i:1;s:24:\"count_users_without_role\";s:1:\"1\";}','yes'),(364028,'lrwp_backup_user_roles','a:14:{s:13:\"administrator\";a:16:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:137:{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:17:\"create_properties\";b:1;s:18:\"publish_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:23:\"read_private_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:22:\"edit_others_properties\";b:1;s:24:\"delete_others_properties\";b:1;s:23:\"edit_private_properties\";b:1;s:19:\"delete_user_package\";b:1;s:20:\"delete_user_packages\";b:1;s:18:\"edit_user_packages\";b:1;s:27:\"delete_others_user_packages\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:18:\"delete_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:19:\"delete_testimonials\";b:1;s:27:\"delete_private_testimonials\";b:1;s:26:\"delete_others_testimonials\";b:1;s:24:\"edit_others_testimonials\";b:1;s:25:\"edit_private_testimonials\";b:1;s:10:\"read_agent\";b:1;s:12:\"delete_agent\";b:1;s:10:\"edit_agent\";b:1;s:13:\"create_agents\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:14:\"publish_agents\";b:1;s:19:\"read_private_agents\";b:1;s:13:\"delete_agents\";b:1;s:21:\"delete_private_agents\";b:1;s:23:\"delete_published_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"edit_private_agents\";b:1;s:21:\"edit_published_agents\";b:1;s:11:\"run_adminer\";b:1;s:24:\"manage_user_registration\";b:1;s:22:\"edit_user_registration\";b:1;s:22:\"read_user_registration\";b:1;s:24:\"delete_user_registration\";b:1;s:23:\"edit_user_registrations\";b:1;s:30:\"edit_others_user_registrations\";b:1;s:26:\"publish_user_registrations\";b:1;s:31:\"read_private_user_registrations\";b:1;s:25:\"delete_user_registrations\";b:1;s:33:\"delete_private_user_registrations\";b:1;s:35:\"delete_published_user_registrations\";b:1;s:32:\"delete_others_user_registrations\";b:1;s:31:\"edit_private_user_registrations\";b:1;s:33:\"edit_published_user_registrations\";b:1;s:30:\"manage_user_registration_terms\";b:1;s:28:\"edit_user_registration_terms\";b:1;s:30:\"delete_user_registration_terms\";b:1;s:30:\"assign_user_registration_terms\";b:1;s:13:\"config_postie\";b:1;s:15:\"post_via_postie\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;s:23:\"tablepress_edit_options\";b:1;}s:22:\"_um_can_access_wpadmin\";i:1;s:24:\"_um_can_not_see_adminbar\";i:0;s:21:\"_um_can_edit_everyone\";i:1;s:23:\"_um_can_delete_everyone\";i:1;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:20:\"_um_default_homepage\";i:1;s:15:\"_um_after_login\";s:14:\"redirect_admin\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:1;s:30:\"_um_can_access_private_profile\";i:1;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:6:\"editor\";a:16:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:83:{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:17:\"create_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:18:\"publish_properties\";b:1;s:15:\"edit_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:23:\"read_private_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:22:\"edit_others_properties\";b:1;s:24:\"delete_others_properties\";b:1;s:23:\"edit_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:18:\"delete_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:19:\"delete_testimonials\";b:1;s:27:\"delete_private_testimonials\";b:1;s:26:\"delete_others_testimonials\";b:1;s:24:\"edit_others_testimonials\";b:1;s:25:\"edit_private_testimonials\";b:1;s:10:\"read_agent\";b:1;s:12:\"delete_agent\";b:1;s:10:\"edit_agent\";b:1;s:13:\"create_agents\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:14:\"publish_agents\";b:1;s:19:\"read_private_agents\";b:1;s:13:\"delete_agents\";b:1;s:21:\"delete_private_agents\";b:1;s:23:\"delete_published_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"edit_private_agents\";b:1;s:21:\"edit_published_agents\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:6:\"author\";a:16:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:20:{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:15:\"post_via_postie\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:11:\"contributor\";a:16:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:12:{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:17:\"create_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:15:\"edit_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:10:\"subscriber\";a:16:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:14:\"erp_hr_manager\";a:2:{s:4:\"name\";s:10:\"HR Manager\";s:12:\"capabilities\";a:42:{s:4:\"read\";b:1;s:12:\"upload_files\";b:1;s:13:\"erp_view_list\";b:1;s:17:\"erp_list_employee\";b:1;s:19:\"erp_create_employee\";b:1;s:17:\"erp_view_employee\";b:1;s:17:\"erp_edit_employee\";b:1;s:19:\"erp_delete_employee\";b:1;s:17:\"erp_create_review\";b:1;s:17:\"erp_delete_review\";b:1;s:17:\"erp_manage_review\";b:1;s:22:\"erp_crate_announcement\";b:1;s:21:\"erp_view_announcement\";b:1;s:23:\"erp_manage_announcement\";b:1;s:18:\"erp_manage_jobinfo\";b:1;s:16:\"erp_view_jobinfo\";b:1;s:21:\"erp_manage_department\";b:1;s:22:\"erp_manage_designation\";b:1;s:24:\"erp_leave_create_request\";b:1;s:16:\"erp_leave_manage\";b:1;s:22:\"erp_manage_hr_settings\";b:1;s:21:\"erp_create_experience\";b:1;s:19:\"erp_edit_experience\";b:1;s:19:\"erp_view_experience\";b:1;s:21:\"erp_delete_experience\";b:1;s:20:\"erp_create_education\";b:1;s:18:\"erp_edit_education\";b:1;s:18:\"erp_view_education\";b:1;s:20:\"erp_delete_education\";b:1;s:17:\"erp_can_terminate\";b:1;s:20:\"erp_create_dependent\";b:1;s:18:\"erp_edit_dependent\";b:1;s:18:\"erp_view_dependent\";b:1;s:20:\"erp_delete_dependent\";b:1;s:19:\"erp_create_document\";b:1;s:17:\"erp_edit_document\";b:1;s:17:\"erp_view_document\";b:1;s:19:\"erp_delete_document\";b:1;s:21:\"erp_create_attendance\";b:1;s:19:\"erp_edit_attendance\";b:1;s:19:\"erp_view_attendance\";b:1;s:21:\"erp_delete_attendance\";b:1;}}s:8:\"employee\";a:2:{s:4:\"name\";s:8:\"Employee\";s:12:\"capabilities\";a:26:{s:4:\"read\";b:1;s:12:\"upload_files\";b:1;s:13:\"erp_view_list\";b:1;s:17:\"erp_list_employee\";b:1;s:17:\"erp_view_employee\";b:1;s:17:\"erp_edit_employee\";b:1;s:16:\"erp_view_jobinfo\";b:1;s:24:\"erp_leave_create_request\";b:1;s:21:\"erp_view_announcement\";b:1;s:21:\"erp_create_experience\";b:1;s:19:\"erp_edit_experience\";b:1;s:19:\"erp_view_experience\";b:1;s:21:\"erp_delete_experience\";b:1;s:20:\"erp_create_education\";b:1;s:18:\"erp_edit_education\";b:1;s:18:\"erp_view_education\";b:1;s:20:\"erp_delete_education\";b:1;s:20:\"erp_create_dependent\";b:1;s:18:\"erp_edit_dependent\";b:1;s:18:\"erp_view_dependent\";b:1;s:20:\"erp_delete_dependent\";b:1;s:19:\"erp_create_document\";b:1;s:17:\"erp_edit_document\";b:1;s:17:\"erp_view_document\";b:1;s:19:\"erp_delete_document\";b:1;s:19:\"erp_view_attendance\";b:1;}}s:14:\"erp_ac_manager\";a:2:{s:4:\"name\";s:18:\"Accounting Manager\";s:12:\"capabilities\";a:43:{s:4:\"read\";b:1;s:21:\"erp_ac_view_dashboard\";b:1;s:20:\"erp_ac_view_customer\";b:1;s:27:\"erp_ac_view_single_customer\";b:1;s:27:\"erp_ac_view_other_customers\";b:1;s:22:\"erp_ac_create_customer\";b:1;s:20:\"erp_ac_edit_customer\";b:1;s:27:\"erp_ac_edit_other_customers\";b:1;s:22:\"erp_ac_delete_customer\";b:1;s:29:\"erp_ac_delete_other_customers\";b:1;s:18:\"erp_ac_view_vendor\";b:1;s:25:\"erp_ac_view_other_vendors\";b:1;s:20:\"erp_ac_create_vendor\";b:1;s:18:\"erp_ac_edit_vendor\";b:1;s:25:\"erp_ac_edit_other_vendors\";b:1;s:20:\"erp_ac_delete_vendor\";b:1;s:27:\"erp_ac_delete_other_vendors\";b:1;s:16:\"erp_ac_view_sale\";b:1;s:25:\"erp_ac_view_single_vendor\";b:1;s:23:\"erp_ac_view_other_sales\";b:1;s:25:\"erp_ac_view_sales_summary\";b:1;s:27:\"erp_ac_create_sales_payment\";b:1;s:28:\"erp_ac_publish_sales_payment\";b:1;s:27:\"erp_ac_create_sales_invoice\";b:1;s:28:\"erp_ac_publish_sales_invoice\";b:1;s:19:\"erp_ac_view_expense\";b:1;s:26:\"erp_ac_view_other_expenses\";b:1;s:28:\"erp_ac_view_expenses_summary\";b:1;s:30:\"erp_ac_create_expenses_voucher\";b:1;s:31:\"erp_ac_publish_expenses_voucher\";b:1;s:29:\"erp_ac_create_expenses_credit\";b:1;s:30:\"erp_ac_publish_expenses_credit\";b:1;s:25:\"erp_ac_view_account_lists\";b:1;s:26:\"erp_ac_view_single_account\";b:1;s:21:\"erp_ac_create_account\";b:1;s:19:\"erp_ac_edit_account\";b:1;s:21:\"erp_ac_delete_account\";b:1;s:25:\"erp_ac_view_bank_accounts\";b:1;s:27:\"erp_ac_create_bank_transfer\";b:1;s:19:\"erp_ac_view_journal\";b:1;s:26:\"erp_ac_view_other_journals\";b:1;s:21:\"erp_ac_create_journal\";b:1;s:19:\"erp_ac_view_reports\";b:1;}}s:12:\"houzez_buyer\";a:2:{s:4:\"name\";s:5:\"Buyer\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;}}s:13:\"houzez_agency\";a:2:{s:4:\"name\";s:6:\"Agency\";s:12:\"capabilities\";a:21:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:7:\"level_2\";b:1;}}s:12:\"houzez_agent\";a:2:{s:4:\"name\";s:5:\"Agent\";s:12:\"capabilities\";a:21:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:7:\"level_2\";b:1;}}s:13:\"houzez_seller\";a:2:{s:4:\"name\";s:6:\"Seller\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:13:\"read_property\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_2\";b:1;}}s:12:\"houzez_owner\";a:2:{s:4:\"name\";s:5:\"Owner\";s:12:\"capabilities\";a:14:{s:4:\"read\";b:0;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:0;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_2\";b:1;}}s:14:\"houzez_manager\";a:2:{s:4:\"name\";s:7:\"Manager\";s:12:\"capabilities\";a:14:{s:4:\"read\";b:0;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:0;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_5\";b:1;}}}','no'),(1318246,'e9332cec6_eael_updated_at','1656030088','no'),(417188,'eael_editor_updated_at','1656030088','yes'),(1250948,'5b09d4945_eael_updated_at','1656030088','no'),(529213,'dd2bc0d4b_elements','a:0:{}','yes'),(529214,'dd2bc0d4b_custom_js','','yes'),(529215,'dd2bc0d4b_updated_at','1623201995','yes'),(372269,'_transient_15019c66d_elements','a:0:{}','yes'),(365087,'_transient_e0e620acd_custom_js','','yes'),(365086,'_transient_e0e620acd_elements','a:0:{}','yes'),(363578,'_transient_9e7343b9a_elements','a:0:{}','yes'),(363579,'_transient_9e7343b9a_custom_js','','yes'),(363580,'_transient_9e7343b9a_updated_at','1605059632','yes'),(363605,'_transient_cd8752dc7_elements','a:0:{}','yes'),(363606,'_transient_cd8752dc7_custom_js','','yes'),(363607,'_transient_cd8752dc7_updated_at','1605059632','yes'),(1311503,'fc29b96a2_eael_updated_at','1656030088','no'),(383635,'_transient_533f5bf17_elements','a:0:{}','yes'),(383636,'_transient_533f5bf17_custom_js','','yes'),(383637,'_transient_533f5bf17_updated_at','1605059632','yes'),(372943,'_transient_06a943c59_elements','a:0:{}','yes'),(372944,'_transient_06a943c59_custom_js','','yes'),(372945,'_transient_06a943c59_updated_at','1605059632','yes'),(362540,'_transient_6b39d183c_elements','a:0:{}','yes'),(362541,'_transient_6b39d183c_custom_js','','yes'),(362542,'_transient_6b39d183c_updated_at','1605059632','yes'),(374158,'_transient_9dd626292_elements','a:0:{}','yes'),(383263,'_transient_4f0fe9b75_updated_at','1603149173','yes'),(372270,'_transient_15019c66d_custom_js','','yes'),(372271,'_transient_15019c66d_updated_at','1605059632','yes'),(362057,'calendar_category_children','a:0:{}','yes'),(362058,'_transient_f0d06e05d_elements','a:0:{}','yes'),(362059,'_transient_f0d06e05d_custom_js','','yes'),(362060,'_transient_f0d06e05d_updated_at','1605059632','yes'),(362154,'widget_sticky-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(362172,'_transient_1af74f4bb_elements','a:1:{i:7;s:12:\"creative-btn\";}','yes'),(362173,'_transient_1af74f4bb_custom_js','','yes'),(362174,'_transient_1af74f4bb_updated_at','1605059632','yes'),(362301,'_transient_8d9dab511_elements','a:0:{}','yes'),(362302,'_transient_8d9dab511_custom_js','','yes'),(362303,'_transient_8d9dab511_updated_at','1605059632','yes'),(362787,'_transient_1cef1a677_elements','a:0:{}','yes'),(362788,'_transient_1cef1a677_custom_js','','yes'),(362789,'_transient_1cef1a677_updated_at','1605059632','yes'),(383261,'_transient_4f0fe9b75_elements','a:0:{}','yes'),(383262,'_transient_4f0fe9b75_custom_js','','yes'),(1062416,'wpl_version','4.12.1','yes'),(1252130,'bac6998bf_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(1252132,'bac6998bf_eael_updated_at','1656030088','no'),(419717,'86f139116_elements','a:0:{}','yes'),(419718,'86f139116_custom_js','','yes'),(419719,'86f139116_updated_at','1623201995','yes'),(1252127,'1af74f4bb_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(409244,'_transient_9669f2312_elements','a:0:{}','yes'),(409245,'_transient_9669f2312_custom_js','','yes'),(409246,'_transient_9669f2312_updated_at','1605059632','yes'),(1294307,'6ed4a5664_eael_updated_at','1656030088','no'),(1328534,'89ce8d4e2_eael_updated_at','1651360580','no'),(1269513,'a6595b77a_eael_updated_at','1651360580','no'),(859118,'9292705cb_elements','a:0:{}','yes'),(859119,'9292705cb_custom_js','','yes'),(859120,'9292705cb_updated_at','1623201995','yes'),(659269,'elementor_1_elementor_updater_batch_947af4abf573c7c012da0430e68b','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:42:\"_v_3_2_0_migrate_breakpoints_to_new_system\";}}}','no'),(1896846,'_transient_timeout_tsf_sitemap_5_1_en_us','1657719501','no'),(1896847,'_transient_tsf_sitemap_5_1_en_us','<!-- Sitemap is generated on 2022-07-06 13:38:21 GMT -->\n	<url>\n		<loc>https://lantern-realty.com/</loc>\n		<lastmod>2021-12-10T13:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/privacy-policy/</loc>\n		<lastmod>2018-08-25T19:42+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/deana-petty/</loc>\n		<lastmod>2020-10-18T00:09+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-listings/</loc>\n		<lastmod>2018-08-24T17:04+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/the-lantern-team/</loc>\n		<lastmod>2022-06-24T00:21+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/paula-severt/</loc>\n		<lastmod>2020-09-19T20:32+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/annie-boger/</loc>\n		<lastmod>2022-02-18T01:41+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/chris-puckett/</loc>\n		<lastmod>2020-09-19T20:32+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/elizabeth-brown/</loc>\n		<lastmod>2020-09-19T19:18+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/amy-evans/</loc>\n		<lastmod>2020-09-19T19:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/ethan-stillinger/</loc>\n		<lastmod>2020-09-19T20:11+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/recently-sold/</loc>\n		<lastmod>2018-09-02T19:33+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/home-buying-calculators/</loc>\n		<lastmod>2019-11-04T21:30+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jason-overcash/</loc>\n		<lastmod>2020-09-19T19:43+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/homes-for-sale-in-rowan-county/</loc>\n		<lastmod>2018-09-02T19:28+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/contact-lantern/</loc>\n		<lastmod>2018-09-04T23:50+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jeremy-aldridge/</loc>\n		<lastmod>2020-09-19T19:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/crystal-cauble/</loc>\n		<lastmod>2020-09-19T19:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kim-drakulich/</loc>\n		<lastmod>2021-11-22T00:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/melissa-jackling/</loc>\n		<lastmod>2020-09-19T19:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/lynnette-gearing/</loc>\n		<lastmod>2020-09-19T19:31+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/lindsey-mccauley/</loc>\n		<lastmod>2020-09-19T19:40+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sheila-allison/</loc>\n		<lastmod>2020-10-17T23:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/casey-barber/</loc>\n		<lastmod>2020-09-19T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/melissa-lacroix/</loc>\n		<lastmod>2020-09-20T15:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/laura-overcash/</loc>\n		<lastmod>2020-09-19T19:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/rick-rhew/</loc>\n		<lastmod>2020-09-19T20:10+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/john-suther/</loc>\n		<lastmod>2020-09-19T20:11+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/todd-wooley/</loc>\n		<lastmod>2020-09-19T20:12+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/robbie-bendig/</loc>\n		<lastmod>2020-09-19T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jessica-cloward/</loc>\n		<lastmod>2022-02-18T01:29+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/christine-jalynski/</loc>\n		<lastmod>2020-09-19T19:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/helen-matthews/</loc>\n		<lastmod>2021-09-04T01:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/julie-nutter/</loc>\n		<lastmod>2022-02-18T01:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/bret-leonard/</loc>\n		<lastmod>2020-09-19T19:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kelly-keller/</loc>\n		<lastmod>2020-09-19T19:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-partners/</loc>\n		<lastmod>2021-12-10T13:27+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/brenda-brown/</loc>\n		<lastmod>2020-09-20T15:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/toni-benton/</loc>\n		<lastmod>2020-09-19T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/evonne-caudill/</loc>\n		<lastmod>2020-09-19T19:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/yira-garcia/</loc>\n		<lastmod>2020-09-19T19:31+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/cathy-hager/</loc>\n		<lastmod>2020-09-19T19:32+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/hosanna-hill/</loc>\n		<lastmod>2020-09-19T19:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/deanna-miltz/</loc>\n		<lastmod>2020-09-19T19:40+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kimberly-trask/</loc>\n		<lastmod>2020-09-19T20:13+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/brianne-watson/</loc>\n		<lastmod>2022-06-24T00:03+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/april-bird/</loc>\n		<lastmod>2021-02-18T14:12+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/deborah-griffin/</loc>\n		<lastmod>2020-09-19T19:31+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/marguerite-keller/</loc>\n		<lastmod>2022-05-26T01:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/melissa-yates/</loc>\n		<lastmod>2020-09-19T20:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jody-clodfelter/</loc>\n		<lastmod>2020-09-19T19:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/amanda-cody/</loc>\n		<lastmod>2020-10-17T23:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/mike-fullerton/</loc>\n		<lastmod>2020-10-17T23:43+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/susan-starnes/</loc>\n		<lastmod>2020-09-19T20:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/tricia-strickland/</loc>\n		<lastmod>2020-09-19T20:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/min-zhang/</loc>\n		<lastmod>2022-01-06T23:09+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/ashley-ferlauto/</loc>\n		<lastmod>2022-05-26T01:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/my-account/</loc>\n		<lastmod>2020-05-01T13:41+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/registration/</loc>\n		<lastmod>2020-05-01T13:41+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zzlantern-offices/</loc>\n		<lastmod>2020-09-19T18:54+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kim-sadler/</loc>\n		<lastmod>2020-09-19T19:11+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zzlantern-offices-2/</loc>\n		<lastmod>2020-10-19T00:49+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sabine-amoakon/</loc>\n		<lastmod>2020-09-20T13:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/cheryl-baxter/</loc>\n		<lastmod>2020-09-20T14:02+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/dale-bullock/</loc>\n		<lastmod>2021-02-08T00:19+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/emily-chandler/</loc>\n		<lastmod>2020-09-20T14:09+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/tracie-clark/</loc>\n		<lastmod>2020-09-20T14:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/michael-davis/</loc>\n		<lastmod>2020-09-20T14:24+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/australia-dunphy/</loc>\n		<lastmod>2020-09-20T14:30+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/ivonne-erion/</loc>\n		<lastmod>2020-09-20T14:34+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/conard-haywood/</loc>\n		<lastmod>2020-09-20T14:41+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/donna-hiner/</loc>\n		<lastmod>2020-09-20T14:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/cheyenne-kidd/</loc>\n		<lastmod>2020-09-20T14:53+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/dawn-lamb/</loc>\n		<lastmod>2020-09-20T14:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/connie-merrell/</loc>\n		<lastmod>2020-09-20T15:03+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/rachel-monrad/</loc>\n		<lastmod>2020-09-20T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/rodney-queen/</loc>\n		<lastmod>2020-09-20T15:10+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kelly-robinson/</loc>\n		<lastmod>2020-09-20T15:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/hayley-rogers/</loc>\n		<lastmod>2020-09-20T15:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sarah-romesburg/</loc>\n		<lastmod>2020-09-20T15:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/chelsi-sherin/</loc>\n		<lastmod>2020-09-20T15:23+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/holden-sides/</loc>\n		<lastmod>2022-02-18T03:08+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/rick-wilson/</loc>\n		<lastmod>2021-02-18T14:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/crm/</loc>\n		<lastmod>2020-10-10T18:22+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-kannapolis/</loc>\n		<lastmod>2020-10-19T00:52+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/</loc>\n		<lastmod>2022-05-26T00:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-salisbury/</loc>\n		<lastmod>2020-10-19T01:01+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-harrisburg/</loc>\n		<lastmod>2020-10-19T01:04+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-albemarle/</loc>\n		<lastmod>2020-10-19T01:08+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-mooresville/</loc>\n		<lastmod>2020-11-11T01:53+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/new-homepage/</loc>\n		<lastmod>2020-10-19T02:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jenna-cook/</loc>\n		<lastmod>2020-11-11T01:34+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/liz-hallman/</loc>\n		<lastmod>2020-11-11T01:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/amanda-lambert/</loc>\n		<lastmod>2021-02-18T14:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sherri-wiles-argabright/</loc>\n		<lastmod>2020-11-11T01:51+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/courtney-sloan-holshouser/</loc>\n		<lastmod>2020-12-01T01:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/paige-wiser/</loc>\n		<lastmod>2021-01-28T00:52+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/taylor-david-mcclure/</loc>\n		<lastmod>2021-01-28T00:52+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/maranda-allen/</loc>\n		<lastmod>2021-01-28T00:51+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/brenda-sue-bingham/</loc>\n		<lastmod>2021-02-18T14:29+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/janice-cannon/</loc>\n		<lastmod>2021-01-29T00:59+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/michele-tichnor/</loc>\n		<lastmod>2021-02-08T00:30+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/dominique-walter/</loc>\n		<lastmod>2021-02-08T00:33+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/ivan-henrickson/</loc>\n		<lastmod>2022-02-18T01:50+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/alicia-love-hammel/</loc>\n		<lastmod>2021-02-08T00:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-asheville/</loc>\n		<lastmod>2021-02-24T01:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/pam-lambert/</loc>\n		<lastmod>2021-02-24T01:49+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/ashley-uttecht/</loc>\n		<lastmod>2021-02-24T01:11+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/michael-farlow/</loc>\n		<lastmod>2021-08-01T21:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/katherine-lawing/</loc>\n		<lastmod>2022-02-18T01:43+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/tammy-fox/</loc>\n		<lastmod>2021-02-24T02:00+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/viviana-martinez-campos/</loc>\n		<lastmod>2021-03-14T22:24+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/taina-shaw/</loc>\n		<lastmod>2021-03-14T22:28+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/wendell-rummage/</loc>\n		<lastmod>2022-06-24T01:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/dawn-wetherbee/</loc>\n		<lastmod>2021-08-01T21:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/julie-arader/</loc>\n		<lastmod>2021-11-22T00:28+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/chelsea-trexler/</loc>\n		<lastmod>2021-08-01T21:34+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sandra-bean/</loc>\n		<lastmod>2021-06-09T01:00+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/katie-abell/</loc>\n		<lastmod>2021-06-09T01:03+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/rochelle-shanae-ogburn/</loc>\n		<lastmod>2021-06-09T01:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/david-g-cannon/</loc>\n		<lastmod>2021-08-01T21:43+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/karie-sturdevant/</loc>\n		<lastmod>2021-09-04T01:51+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/amber-tsumas/</loc>\n		<lastmod>2021-08-01T22:01+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/doreen-shaughnessy/</loc>\n		<lastmod>2021-08-01T22:21+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kathy-gurney/</loc>\n		<lastmod>2021-08-01T22:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/claire-sonnier/</loc>\n		<lastmod>2021-08-01T22:31+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/dawn-fisher/</loc>\n		<lastmod>2022-06-24T00:44+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/iiona-kenrick/</loc>\n		<lastmod>2021-09-04T01:59+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/casey-paige-maness/</loc>\n		<lastmod>2021-09-04T02:02+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/cecilia-maria-ferrari/</loc>\n		<lastmod>2021-09-04T02:04+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jenna-stoll/</loc>\n		<lastmod>2021-09-04T02:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/misty-lynn-moss/</loc>\n		<lastmod>2021-09-04T02:10+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/properties/</loc>\n		<lastmod>2021-11-05T20:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/for-sale/</loc>\n		<lastmod>2021-11-05T20:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/for-rent/</loc>\n		<lastmod>2021-11-05T20:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/vacation-rental/</loc>\n		<lastmod>2021-11-05T20:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/stephanie-e-morgan/</loc>\n		<lastmod>2021-11-22T00:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/evelin-lisseth-hernandez/</loc>\n		<lastmod>2021-11-22T00:50+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/lezli-rae-leath/</loc>\n		<lastmod>2021-11-22T00:52+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/tan-crawford/</loc>\n		<lastmod>2021-11-22T00:54+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/erin-hyman/</loc>\n		<lastmod>2021-11-22T00:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/carmady-king-kruger/</loc>\n		<lastmod>2021-11-22T01:24+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/brittney-steele/</loc>\n		<lastmod>2022-02-18T02:10+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/aaron-forsyth/</loc>\n		<lastmod>2022-02-18T02:22+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/charity-k-meachum/</loc>\n		<lastmod>2022-02-18T02:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/amy-bundy/</loc>\n		<lastmod>2022-02-18T03:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/chad-rothlin/</loc>\n		<lastmod>2022-02-18T02:18+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jamie-stewart/</loc>\n		<lastmod>2022-02-18T02:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/melissa-shannon-morefield-valley/</loc>\n		<lastmod>2022-05-26T01:53+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/stephanie-knight/</loc>\n		<lastmod>2022-02-18T02:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/benjamin-allen-surratt/</loc>\n		<lastmod>2022-02-18T02:41+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/colleen-crane/</loc>\n		<lastmod>2022-04-30T22:09+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sarah-grace-horn/</loc>\n		<lastmod>2022-02-18T02:49+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-lexington/</loc>\n		<lastmod>2022-04-20T02:01+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/the-lantern-team-new/</loc>\n		<lastmod>2022-04-30T23:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-tennessee/</loc>\n		<lastmod>2022-05-26T01:12+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jessica-eudy/</loc>\n		<lastmod>2022-06-24T00:29+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/melinda-r-mesimerr/</loc>\n		<lastmod>2022-06-24T00:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/megan-owens/</loc>\n		<lastmod>2022-06-24T00:40+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/colleen-viteri/</loc>\n		<lastmod>2022-06-24T00:50+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/alexis-devine-smith/</loc>\n		<lastmod>2022-06-24T00:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/mitzi-mcdaniel-smith/</loc>\n		<lastmod>2022-06-24T01:02+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/andrew-jason-wetherbee/</loc>\n		<lastmod>2022-06-24T01:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-53/</loc>\n		<lastmod>2022-07-06T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-zoom-link-team-meeting-what-is-a-2-1-buydown-w-terry-whitesell-of-fairway-mortgage-wednesday-july-6-at-11am/</loc>\n		<lastmod>2022-07-05T13:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/buffini-mid-year-update-2022-predictions/</loc>\n		<lastmod>2022-06-23T15:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-52/</loc>\n		<lastmod>2022-06-20T19:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/warning-warning/</loc>\n		<lastmod>2022-06-10T12:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-51/</loc>\n		<lastmod>2022-06-08T20:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/last-weeks-classes/</loc>\n		<lastmod>2022-06-07T20:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-zoom-meeting-dotloop-thursday-jun-2-2022-0900-am/</loc>\n		<lastmod>2022-06-01T15:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-zoom-meeting-client-care-w-sarah-romesburg-wednesday-jun-1-2022-1100-am/</loc>\n		<lastmod>2022-05-31T19:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-50/</loc>\n		<lastmod>2022-05-27T18:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-link-for-lantern-realty-airbnb-class-with-emily-and-chris-wednesday-may-25-2022-1000-am/</loc>\n		<lastmod>2022-05-24T14:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-49/</loc>\n		<lastmod>2022-05-18T18:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-real-estate-investor-syndication-meeting-at-4pm/</loc>\n		<lastmod>2022-05-17T12:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-48/</loc>\n		<lastmod>2022-05-16T15:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-47/</loc>\n		<lastmod>2022-05-09T14:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/class-deposits-terminations-disputes-05-03-2022/</loc>\n		<lastmod>2022-05-04T16:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-team-meeting-05-04-2022/</loc>\n		<lastmod>2022-05-04T16:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-meeting-zoom-invite-with-ryan-ivory-arc-mortgage-and-rates-these-days/</loc>\n		<lastmod>2022-05-03T18:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-part-2-2/</loc>\n		<lastmod>2022-05-03T16:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/deposits-terminations-disputes-class/</loc>\n		<lastmod>2022-05-03T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-invite-deposits-terminations-disputes-may-3-at-3/</loc>\n		<lastmod>2022-05-02T16:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/videos-of-this-weeks-classes/</loc>\n		<lastmod>2022-04-29T21:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-loves/</loc>\n		<lastmod>2022-04-29T12:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-loves-zoom-link-april-28-at-10-am/</loc>\n		<lastmod>2022-04-27T22:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-zoom-link-for-commercial-basics-buyer-clients-with-chris-puckett-april-28-at-9-am/</loc>\n		<lastmod>2022-04-27T22:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-zoom-invite-build-on-your-land-w-true-homes-wednesday-apr-27-2022-0900-am/</loc>\n		<lastmod>2022-04-26T21:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-46/</loc>\n		<lastmod>2022-04-25T16:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-raleigh/</loc>\n		<lastmod>2022-04-20T01:19+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-tennessee/</loc>\n		<lastmod>2022-05-26T00:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-45/</loc>\n		<lastmod>2022-04-18T19:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-44/</loc>\n		<lastmod>2022-04-18T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-43/</loc>\n		<lastmod>2022-04-18T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/house-flipping-101/</loc>\n		<lastmod>2022-04-14T17:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-zoom-meeting-invite-house-flipping-101-apr-14-2022-1100-am/</loc>\n		<lastmod>2022-04-14T13:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/land-class-amanda-lambert/</loc>\n		<lastmod>2022-04-12T12:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-lunch-n-learn-zoom-link-thursday-april-7-at-11-am/</loc>\n		<lastmod>2022-04-06T16:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-42/</loc>\n		<lastmod>2022-04-06T01:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-team-meeting-zoom-invite-wednesday-april-6-at-1100-am/</loc>\n		<lastmod>2022-04-06T00:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-41/</loc>\n		<lastmod>2022-04-04T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/triad-mls-billing/</loc>\n		<lastmod>2022-03-31T12:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/basics-of-commercial-real-estate-class-3-30-22/</loc>\n		<lastmod>2022-03-30T14:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-link-basics-of-commercial-re-w-chris-puckett-wednesday-mar-30-2022-0900-am/</loc>\n		<lastmod>2022-03-29T21:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/nc-coastal-mls-2/</loc>\n		<lastmod>2022-03-29T20:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/realtor-mental-healtgh/</loc>\n		<lastmod>2022-03-29T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/contracts-to-close-class-3-24-22-by-sarah-romesburg/</loc>\n		<lastmod>2022-03-26T15:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/nc-coastal-mls/</loc>\n		<lastmod>2022-03-25T14:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-link-for-contracts-to-closing-w-sarah-romesburg-thurs-mar-24-2022-1000-am/</loc>\n		<lastmod>2022-03-24T00:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-sewer-allocation-discussion/</loc>\n		<lastmod>2022-03-22T18:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-meeting-invite-for-sewer-allocation-tuesday-mar-22-2022-1100-am/</loc>\n		<lastmod>2022-03-21T15:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/education-calendar-2/</loc>\n		<lastmod>2022-03-09T20:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-building-should-i-join-a-team-class-3-1-22/</loc>\n		<lastmod>2022-03-07T16:59+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/homebot-class/</loc>\n		<lastmod>2022-03-07T16:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/updated-independent-contractor-agreement-terms/</loc>\n		<lastmod>2022-02-28T15:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/free-genup-in-march/</loc>\n		<lastmod>2022-02-24T15:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/homebot-for-lantern-you-do-not-want-to-miss-this/</loc>\n		<lastmod>2022-02-23T23:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-lexington/</loc>\n		<lastmod>2022-04-20T01:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/1099-updates/</loc>\n		<lastmod>2022-02-15T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-link-for-ribbon-training-class-feb-16-2022-1000-am/</loc>\n		<lastmod>2022-02-15T13:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-announcements/</loc>\n		<lastmod>2022-02-14T18:28+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/1031-exchange-class/</loc>\n		<lastmod>2022-02-09T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/1031-exchange-zoom-link-tuesday-feb-8-at-900-am/</loc>\n		<lastmod>2022-02-07T17:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-team-meeting-guaranteed-rate-crm-class-wednesday-feb-2nd-at-1100-am/</loc>\n		<lastmod>2022-02-02T01:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-14/</loc>\n		<lastmod>2022-01-31T17:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-13/</loc>\n		<lastmod>2022-01-31T14:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-40/</loc>\n		<lastmod>2022-01-24T19:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/renovation-loan-video-class/</loc>\n		<lastmod>2022-01-20T17:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-39/</loc>\n		<lastmod>2022-01-18T22:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-38/</loc>\n		<lastmod>2022-01-17T16:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-37/</loc>\n		<lastmod>2022-01-15T16:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/upcoming-lantern-realty-classes-and-education-calendar-for-january-2022/</loc>\n		<lastmod>2022-01-13T19:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/cma-zoom-only-class-invite-for-thursday-jan-13-at-1000-am-until/</loc>\n		<lastmod>2022-01-12T19:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/tuesday-morning-think-tank-meetings-3/</loc>\n		<lastmod>2022-01-12T16:49+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/tuesday-morning-think-tank-meetings/</loc>\n		<lastmod>2022-01-12T16:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/tuesday-morning-think-tank-meetings-2/</loc>\n		<lastmod>2022-01-12T16:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fwd-new-home-construction-class-for-lantern-realty/</loc>\n		<lastmod>2022-01-11T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-ribbon-zoom-class-thursday-jan-6-at-900-am-2/</loc>\n		<lastmod>2022-01-06T02:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-ribbon-zoom-class-thursday-jan-6-at-900-am/</loc>\n		<lastmod>2022-01-05T17:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-team-meeting-2/</loc>\n		<lastmod>2022-01-05T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-only-team-safety-meeting-with-wendell-wednesday-jan-5-2022-1100-am/</loc>\n		<lastmod>2022-01-04T21:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/2022-marketing-planning-meeting/</loc>\n		<lastmod>2021-12-13T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/venue-change-2022-marketing-meeting/</loc>\n		<lastmod>2021-12-10T17:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/december-14th-marketing-meeting/</loc>\n		<lastmod>2021-12-07T21:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/thursday-dec-2nd/</loc>\n		<lastmod>2021-12-02T01:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/classes-on-youtube/</loc>\n		<lastmod>2021-12-01T21:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-team-meeting-zoom-link-wednesday-december-dec-1-2021-1100-am/</loc>\n		<lastmod>2021-12-01T00:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-36/</loc>\n		<lastmod>2021-11-30T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-35/</loc>\n		<lastmod>2021-11-22T15:00+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-invite-to-dont-do-stupid-nov-9-2021-1100-am/</loc>\n		<lastmod>2021-11-08T21:00+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-34/</loc>\n		<lastmod>2021-11-08T13:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/here-is-a-link-to-todays-ncrec-class/</loc>\n		<lastmod>2021-11-03T20:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-ncrec-guest-zoom-team-meeting-wednesday-november-3-at-11-am/</loc>\n		<lastmod>2021-11-02T13:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-33/</loc>\n		<lastmod>2021-11-01T13:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/ninja-selling-course/</loc>\n		<lastmod>2021-10-28T20:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-32/</loc>\n		<lastmod>2021-10-25T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/you-tube-video-social-media-class-w-larry-laughter/</loc>\n		<lastmod>2021-10-21T20:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/marketing-online-w-larry-laughter-zoom-only-oct-21-at-1000-am/</loc>\n		<lastmod>2021-10-20T16:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-how-to-work-w-sellers/</loc>\n		<lastmod>2021-10-14T18:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-invite-for-kindle-how-to-work-with-sellers-thursday-october-14-at-10-a-m/</loc>\n		<lastmod>2021-10-13T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-31/</loc>\n		<lastmod>2021-10-13T15:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-30/</loc>\n		<lastmod>2021-10-11T12:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/2022-goal-planning-class/</loc>\n		<lastmod>2021-10-07T21:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-working-w-buyers-w-cathy-hager/</loc>\n		<lastmod>2021-10-07T20:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-meeting-invite-for-kindle-working-with-buyers-oct-7-at-10-a-m/</loc>\n		<lastmod>2021-10-06T21:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-part-2/</loc>\n		<lastmod>2021-10-04T18:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-29/</loc>\n		<lastmod>2021-10-04T15:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/october-2021-team-meeting-rudy-king-fairway-mortgage-reverse-mortgages/</loc>\n		<lastmod>2021-09-28T20:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-marketing-your-business-2/</loc>\n		<lastmod>2021-09-28T20:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-28/</loc>\n		<lastmod>2021-09-28T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-marketing-your-business/</loc>\n		<lastmod>2021-09-23T13:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-27/</loc>\n		<lastmod>2021-09-22T14:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-26/</loc>\n		<lastmod>2021-09-17T21:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-lead-generation-zoom-in-person-thursday-septemeber-16-at-10-am/</loc>\n		<lastmod>2021-09-15T17:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-25/</loc>\n		<lastmod>2021-09-08T20:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-team-meeting-w-rudy-king-fairway-mortgage-reverse-mortgage/</loc>\n		<lastmod>2021-08-31T16:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-24/</loc>\n		<lastmod>2021-08-30T12:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-23/</loc>\n		<lastmod>2021-08-24T22:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-22/</loc>\n		<lastmod>2021-08-16T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/contractor-and-handy-man/</loc>\n		<lastmod>2021-08-10T12:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-for-the-weekend-2/</loc>\n		<lastmod>2021-08-09T17:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-for-the-weekend/</loc>\n		<lastmod>2021-08-07T13:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/is-forbearance-a-material-fact/</loc>\n		<lastmod>2021-08-05T12:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-team-meeting-invite-wednesday-august-4-at-1130-a-m/</loc>\n		<lastmod>2021-08-03T17:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-21/</loc>\n		<lastmod>2021-08-02T18:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-12/</loc>\n		<lastmod>2021-07-30T20:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-11/</loc>\n		<lastmod>2021-07-30T17:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-20/</loc>\n		<lastmod>2021-07-26T19:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/venmo-quarterly-dues-2/</loc>\n		<lastmod>2021-07-25T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/2021-2022-ncar-doc-changes-class-link/</loc>\n		<lastmod>2021-07-23T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/coaching-event/</loc>\n		<lastmod>2021-07-22T18:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/venmo-quarterly-dues/</loc>\n		<lastmod>2021-07-22T12:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/announcement-sending-dues-payments-by-venmo-2/</loc>\n		<lastmod>2021-07-21T17:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/announcement-sending-dues-payments-by-venmo/</loc>\n		<lastmod>2021-07-21T13:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/dotloop-training-opportunities/</loc>\n		<lastmod>2021-07-20T12:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-10/</loc>\n		<lastmod>2021-07-19T19:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-9/</loc>\n		<lastmod>2021-07-19T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lunch-n-learn-postponed-lantern-news-notes/</loc>\n		<lastmod>2021-07-14T22:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/rsvp-request-lantern-news-notes/</loc>\n		<lastmod>2021-07-14T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/broker-qa-and-team-meeting-zoom-links/</loc>\n		<lastmod>2021-07-14T00:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-8/</loc>\n		<lastmod>2021-07-08T18:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-zoom-class-for-new-forms-change-4/</loc>\n		<lastmod>2021-07-07T18:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-zoom-class-for-new-forms-change-2/</loc>\n		<lastmod>2021-07-07T17:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-zoom-class-for-new-forms-change-3/</loc>\n		<lastmod>2021-07-07T17:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-zoom-class-for-new-forms-change/</loc>\n		<lastmod>2021-07-07T15:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lead-generation-class/</loc>\n		<lastmod>2021-07-06T15:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-7/</loc>\n		<lastmod>2021-07-05T12:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/new-2021-2022-docs-from-ncar/</loc>\n		<lastmod>2021-07-01T15:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lead-generation-reminder-tuesday-june-22-at-1130-a-m-zoom-link/</loc>\n		<lastmod>2021-06-21T18:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/ribbon-agent-dashboard-info/</loc>\n		<lastmod>2021-06-15T12:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/sales-production-class-with-fairway-mortgage-tuesday-june-15-11-a-m-2/</loc>\n		<lastmod>2021-06-14T16:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/sales-production-class-with-fairway-mortgage-tuesday-june-15-11-a-m/</loc>\n		<lastmod>2021-06-11T16:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/dotloop-updates/</loc>\n		<lastmod>2021-06-11T15:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/trio-class/</loc>\n		<lastmod>2021-06-10T15:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/ribbon-class-link/</loc>\n		<lastmod>2021-06-09T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-ribbon-class-tuesday-june-8-at-945-a-m-lantern-realty/</loc>\n		<lastmod>2021-06-07T20:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-19/</loc>\n		<lastmod>2021-06-07T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/class-invite-for-broker-qa-for-thursday-june-3-at-10-am/</loc>\n		<lastmod>2021-06-02T19:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-link-for-lantern-realty-team-meeting-wednesday-june-2/</loc>\n		<lastmod>2021-06-01T13:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-18/</loc>\n		<lastmod>2021-06-01T13:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-invite-for-lease-to-own-class-thursday-may-27-at-6-pm/</loc>\n		<lastmod>2021-05-26T13:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-17/</loc>\n		<lastmod>2021-05-24T20:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-meeting-invite-for-client-care-class-tuesday-10-am-may-25/</loc>\n		<lastmod>2021-05-24T20:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/cma-class-postponed/</loc>\n		<lastmod>2021-05-18T13:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/mock-home-inspection-wednesday-may-19-4-pm/</loc>\n		<lastmod>2021-05-17T19:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-16/</loc>\n		<lastmod>2021-05-15T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/land-prep-class-link/</loc>\n		<lastmod>2021-05-12T14:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/law-enforcement-week/</loc>\n		<lastmod>2021-05-12T12:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-mentorship-program/</loc>\n		<lastmod>2021-05-11T13:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-invite-for-land-prep-class-for-may-11-at-10-am/</loc>\n		<lastmod>2021-05-10T19:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-15/</loc>\n		<lastmod>2021-05-08T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fwd-double-closings-assignments-ethics-opinion/</loc>\n		<lastmod>2021-05-05T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-5-5-11am-update-2/</loc>\n		<lastmod>2021-05-04T14:18+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-5-5-11am-update/</loc>\n		<lastmod>2021-05-03T17:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-6/</loc>\n		<lastmod>2021-05-03T15:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/broker-q-a-link/</loc>\n		<lastmod>2021-04-29T17:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-invite-for-broker-qa-w-liz-hallman-april-29-at-10-a-m/</loc>\n		<lastmod>2021-04-28T15:47+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/class-sign-up-link-for-mock-home-inspections-2/</loc>\n		<lastmod>2021-04-26T20:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/class-sign-up-link-for-mock-home-inspections/</loc>\n		<lastmod>2021-04-23T16:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/tomorrows-men-of-lantern-event/</loc>\n		<lastmod>2021-04-21T22:27+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-13/</loc>\n		<lastmod>2021-04-19T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-14/</loc>\n		<lastmod>2021-04-19T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/deeds-permits-class/</loc>\n		<lastmod>2021-04-16T12:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fwd-new-training-resources/</loc>\n		<lastmod>2021-04-13T12:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-5/</loc>\n		<lastmod>2021-04-12T17:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/forms-class-youtube-link/</loc>\n		<lastmod>2021-04-07T16:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/escalator-clauses/</loc>\n		<lastmod>2021-04-03T13:08+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-12/</loc>\n		<lastmod>2021-04-02T12:49+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-4/</loc>\n		<lastmod>2021-03-29T20:47+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fwd-zoom-link-for-tuesday-classes-march-23-contracts-to-close-10-am-and-new-construction-1pm/</loc>\n		<lastmod>2021-03-25T13:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/important-news/</loc>\n		<lastmod>2021-03-24T16:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-11/</loc>\n		<lastmod>2021-03-21T13:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-10/</loc>\n		<lastmod>2021-03-11T14:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/link-to-power-notes-class-by-laura-overcash/</loc>\n		<lastmod>2021-03-09T19:51+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-video/</loc>\n		<lastmod>2021-03-03T22:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-3-3-11am/</loc>\n		<lastmod>2021-03-01T14:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-9/</loc>\n		<lastmod>2021-02-26T16:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-asheville/</loc>\n		<lastmod>2021-02-24T00:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-marketing/</loc>\n		<lastmod>2021-02-22T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/class-thur-2-18-1pm-how-to-help-your-client-buy-land/</loc>\n		<lastmod>2021-02-17T22:28+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fair-housing-professional-standards/</loc>\n		<lastmod>2021-02-17T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/forms-class-today-1pm/</loc>\n		<lastmod>2021-02-16T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-8/</loc>\n		<lastmod>2021-02-14T13:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/instagram-class-video/</loc>\n		<lastmod>2021-02-11T15:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-negotiation-link/</loc>\n		<lastmod>2021-02-09T19:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/canva-com-class-link/</loc>\n		<lastmod>2021-02-09T18:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-9-9-1pm-the-art-of-negotiations/</loc>\n		<lastmod>2021-02-08T18:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/9-9-canva-com-class-presented-by-jenna-cook-930am/</loc>\n		<lastmod>2021-02-08T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-7/</loc>\n		<lastmod>2021-02-06T14:50+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-pricing-cma-link/</loc>\n		<lastmod>2021-02-02T23:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-team-meeting-2-3-1130am/</loc>\n		<lastmod>2021-02-02T19:47+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-3/</loc>\n		<lastmod>2021-01-25T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-how-to-work-w-buyers-10am-1-19/</loc>\n		<lastmod>2021-01-18T18:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-2/</loc>\n		<lastmod>2021-01-17T15:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/q1-dues/</loc>\n		<lastmod>2021-01-15T15:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/upcoming-classes/</loc>\n		<lastmod>2021-01-13T16:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-6/</loc>\n		<lastmod>2021-01-11T15:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/1099s/</loc>\n		<lastmod>2021-01-08T13:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-1-6/</loc>\n		<lastmod>2021-01-05T16:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/education-calendar/</loc>\n		<lastmod>2021-01-05T16:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-lead-generation-data-base/</loc>\n		<lastmod>2021-01-04T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fwd-zoom/</loc>\n		<lastmod>2021-01-04T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-2021-edition/</loc>\n		<lastmod>2021-01-02T14:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/call-time-meeting/</loc>\n		<lastmod>2020-12-29T14:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-education-committee-meeting/</loc>\n		<lastmod>2020-12-29T14:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/merry-christmas-news-notes/</loc>\n		<lastmod>2020-12-24T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-team-meeting/</loc>\n		<lastmod>2020-12-16T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-team-meeting-12-16-1130am/</loc>\n		<lastmod>2020-12-15T20:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/canva-instagram-classes-cancelled/</loc>\n		<lastmod>2020-12-15T13:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/canva-com-class-w-jenna-cook-invite-jan-15th-10am/</loc>\n		<lastmod>2020-12-14T16:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes/</loc>\n		<lastmod>2020-12-12T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-team-meeting-cancelled/</loc>\n		<lastmod>2020-12-02T14:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/dec-3rd-130pm-class-accounting-for-real-estate-agents-w-mark-dalton/</loc>\n		<lastmod>2020-12-01T14:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-5/</loc>\n		<lastmod>2020-12-01T13:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/sarah-romesburgs-listing-class-tuesday-at-10am/</loc>\n		<lastmod>2020-11-30T17:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/nc-mask-mandate/</loc>\n		<lastmod>2020-11-24T21:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-4/</loc>\n		<lastmod>2020-11-21T19:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/instagram-class-2/</loc>\n		<lastmod>2020-11-18T14:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/nar-code-of-ethics-change/</loc>\n		<lastmod>2020-11-17T13:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-3/</loc>\n		<lastmod>2020-11-16T14:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/instagram-class/</loc>\n		<lastmod>2020-11-16T14:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/miracle-morning-discussion-3/</loc>\n		<lastmod>2020-11-12T15:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/dotloop-training-2/</loc>\n		<lastmod>2020-11-11T18:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/miracle-morning-discussion-2/</loc>\n		<lastmod>2020-11-11T16:19+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/miracle-morning-discussion/</loc>\n		<lastmod>2020-11-11T16:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-team-meeting-invite-11-19-9am/</loc>\n		<lastmod>2020-11-11T15:19+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/dotloop-training/</loc>\n		<lastmod>2020-11-11T14:47+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-11-7-20/</loc>\n		<lastmod>2020-11-07T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/classes-on-11-5/</loc>\n		<lastmod>2020-11-04T19:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/important-announcement/</loc>\n		<lastmod>2020-11-04T19:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-today-at-11am/</loc>\n		<lastmod>2020-11-04T14:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/accountability-group-meeting-invite/</loc>\n		<lastmod>2020-11-02T16:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-accountability-meeting-invote/</loc>\n		<lastmod>2020-11-02T16:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-team-meeting-11-4-11am/</loc>\n		<lastmod>2020-11-02T15:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-w-o-11-2/</loc>\n		<lastmod>2020-11-02T15:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-10-28-2020/</loc>\n		<lastmod>2020-10-28T12:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/foreclosure-class/</loc>\n		<lastmod>2020-10-26T12:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/friday-october-23rd-news-notes/</loc>\n		<lastmod>2020-10-23T20:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/further-info-regarding-our-sc-firm-license/</loc>\n		<lastmod>2020-10-22T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/this-week/</loc>\n		<lastmod>2020-10-18T17:34+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-2/</loc>\n		<lastmod>2020-10-18T17:34+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes/</loc>\n		<lastmod>2020-10-16T01:22+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-mooresville/</loc>\n		<lastmod>2020-11-11T01:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-albemarle/</loc>\n		<lastmod>2022-02-18T03:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-harrisburg/</loc>\n		<lastmod>2022-02-18T03:13+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-salisbury/</loc>\n		<lastmod>2020-09-19T18:43+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-realty-and-development/</loc>\n		<lastmod>2020-10-18T19:27+00:00</lastmod>\n	</url>\n','no'),(1913018,'_transient_timeout_ihf_cache_89f743ad4343aecd36a45d71495301a8','1657493140','no'),(1913019,'_transient_ihf_cache_89f743ad4343aecd36a45d71495301a8','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";s:29:\"Sun, 10 Jul 2022 21:45:40 GMT\";s:12:\"content-type\";s:22:\"text/xml;charset=UTF-8\";s:16:\"content-language\";s:2:\"en\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:3:\"p3p\";s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901893102; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:45:40 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NzYzMzVkYzYtZGVlMy00ZWQ1LWJlMmItMmUxMWFiMjk2ZmRl; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=p1GLQTcvJDI4XVzEocacw1dFHsxbUaZBvrNyVK5C3JU-1657489540-0-AY5DboPd9dYFWBR42LpG88mkg6eGrXauHcZggjC8SPm6mijINRva1gi/XpCJ4USJSZuBxHs/jc7Pd/0WDuXeujE=; path=/; expires=Sun, 10-Jul-22 22:15:40 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";s:7:\"DYNAMIC\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"728c7cd8ebea7d74-LAX\";s:16:\"content-encoding\";s:2:\"br\";}}s:4:\"body\";s:915:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901893102</leadCaptureId> <ihfSessionId>76335dc6-dee3-4ed5-be2b-2e11ab296fde</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657444950354</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657444950354</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657444950354</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:3:{i:0;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901893102\";s:7:\"expires\";i:1689025540;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:1;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NzYzMzVkYzYtZGVlMy00ZWQ1LWJlMmItMmUxMWFiMjk2ZmRl\";s:7:\"expires\";N;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:2;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"p1GLQTcvJDI4XVzEocacw1dFHsxbUaZBvrNyVK5C3JU-1657489540-0-AY5DboPd9dYFWBR42LpG88mkg6eGrXauHcZggjC8SPm6mijINRva1gi/XpCJ4USJSZuBxHs/jc7Pd/0WDuXeujE=\";s:7:\"expires\";i:1657491340;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:11:\"idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:0;}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:915:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901893102</leadCaptureId> <ihfSessionId>76335dc6-dee3-4ed5-be2b-2e11ab296fde</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657444950354</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657444950354</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657444950354</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:3:\"raw\";s:1889:\"HTTP/1.1 200 OK\r\nDate: Sun, 10 Jul 2022 21:45:40 GMT\r\nContent-Type: text/xml;charset=UTF-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nContent-Language: en\r\nVary: Accept-Encoding\r\nP3P: CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\r\nSet-Cookie: cuser123710=8901893102; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:45:40 GMT; Path=/; SameSite=None; Secure\r\nCF-Cache-Status: DYNAMIC\r\nExpect-CT: max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\r\nSet-Cookie: SESSION=NzYzMzVkYzYtZGVlMy00ZWQ1LWJlMmItMmUxMWFiMjk2ZmRl; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\r\nSet-Cookie: __cf_bm=p1GLQTcvJDI4XVzEocacw1dFHsxbUaZBvrNyVK5C3JU-1657489540-0-AY5DboPd9dYFWBR42LpG88mkg6eGrXauHcZggjC8SPm6mijINRva1gi/XpCJ4USJSZuBxHs/jc7Pd/0WDuXeujE=; path=/; expires=Sun, 10-Jul-22 22:15:40 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\r\nServer: cloudflare\r\nCF-RAY: 728c7cd8ebea7d74-LAX\r\nContent-Encoding: br\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901893102</leadCaptureId> <ihfSessionId>76335dc6-dee3-4ed5-be2b-2e11ab296fde</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657444950354</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657444950354</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657444950354</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";a:1:{i:0;s:29:\"Sun, 10 Jul 2022 21:45:40 GMT\";}s:12:\"content-type\";a:1:{i:0;s:22:\"text/xml;charset=UTF-8\";}s:16:\"content-language\";a:1:{i:0;s:2:\"en\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:3:\"p3p\";a:1:{i:0;s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";}s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901893102; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:45:40 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NzYzMzVkYzYtZGVlMy00ZWQ1LWJlMmItMmUxMWFiMjk2ZmRl; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=p1GLQTcvJDI4XVzEocacw1dFHsxbUaZBvrNyVK5C3JU-1657489540-0-AY5DboPd9dYFWBR42LpG88mkg6eGrXauHcZggjC8SPm6mijINRva1gi/XpCJ4USJSZuBxHs/jc7Pd/0WDuXeujE=; path=/; expires=Sun, 10-Jul-22 22:15:40 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";a:1:{i:0;s:7:\"DYNAMIC\";}s:9:\"expect-ct\";a:1:{i:0;s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";}s:6:\"server\";a:1:{i:0;s:10:\"cloudflare\";}s:6:\"cf-ray\";a:1:{i:0;s:20:\"728c7cd8ebea7d74-LAX\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:172:\"https://www.idxhome.com/service/wordpress?requestType=resources&authenticationToken=57ba1f9b-a303-4b2e-90eb-792602d7dc93&version=7.1.0&leadCaptureSupport=true&phpStyle=true\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:3:{s:11:\"cuser123710\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901893102\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"max-age\";i:1689025540;s:7:\"expires\";i:1689025540;s:4:\"path\";s:1:\"/\";s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489540;s:11:\"last-access\";i:1657489540;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657489540;}s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NzYzMzVkYzYtZGVlMy00ZWQ1LWJlMmItMmUxMWFiMjk2ZmRl\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:5:{s:4:\"path\";s:1:\"/\";s:8:\"httponly\";b:1;s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489540;s:11:\"last-access\";i:1657489540;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657489540;}s:7:\"__cf_bm\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"p1GLQTcvJDI4XVzEocacw1dFHsxbUaZBvrNyVK5C3JU-1657489540-0-AY5DboPd9dYFWBR42LpG88mkg6eGrXauHcZggjC8SPm6mijINRva1gi/XpCJ4USJSZuBxHs/jc7Pd/0WDuXeujE=\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:4:\"path\";s:1:\"/\";s:7:\"expires\";i:1657491340;s:6:\"domain\";s:11:\"idxhome.com\";s:8:\"httponly\";b:1;s:6:\"secure\";b:1;s:8:\"samesite\";s:4:\"None\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489540;s:11:\"last-access\";i:1657489540;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1657489540;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(1911813,'_transient_timeout_feed_334bd520c90de38df62edc8d2011fe48','1657504980','no'),(1911814,'_transient_feed_334bd520c90de38df62edc8d2011fe48','a:3:{s:3:\"url\";s:42:\"http://www.kannapolisnc.gov/Community/News\";s:8:\"feed_url\";s:113:\"http://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/Rss.aspx?TabID=95&ModuleID=428&MaxCount=25\";s:5:\"build\";s:14:\"20220218033513\";}','no'),(1911815,'_transient_timeout_feed_mod_334bd520c90de38df62edc8d2011fe48','1657504980','no'),(1911816,'_transient_feed_mod_334bd520c90de38df62edc8d2011fe48','1657461780','no'),(1913084,'_transient_timeout_global_styles_svg_filters_houzez','1657490925','no'),(1913085,'_transient_global_styles_svg_filters_houzez','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(1736286,'e3330068e_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(1736288,'e3330068e_eael_updated_at','1656030088','no'),(1607358,'da0131a90_eael_updated_at','1656030088','no'),(1605778,'eael_admin_menu_notice','2','no'),(1605749,'a6d6d9cfb_eael_updated_at','1651341761','no'),(1606174,'elementor_experiment-e_optimized_css_loading','default','yes'),(1522630,'extendifysdk_sitesettings','{\"state\":{\"enabled\":true},\"version\":0}','yes'),(1522602,'mc4wp','a:6:{s:19:\"grecaptcha_site_key\";s:0:\"\";s:21:\"grecaptcha_secret_key\";s:0:\"\";s:7:\"api_key\";s:0:\"\";s:20:\"allow_usage_tracking\";i:0;s:15:\"debug_log_level\";s:7:\"warning\";s:18:\"first_activated_on\";i:1650035874;}','yes'),(1912935,'_site_transient_timeout_theme_roots','1657489301','no'),(1912936,'_site_transient_theme_roots','a:5:{s:6:\"houzez\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";s:8:\"zzhouzez\";s:7:\"/themes\";}','no'),(1253252,'40e4f8434_eael_updated_at','1656030088','no'),(705487,'rsssl_upgraded_to_four_dismissed','1','yes'),(705493,'rsssl_secure_cookies_set_dismissed','1','yes'),(1062419,'widget_wpl_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1062420,'widget_wpl_carousel_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1062421,'widget_wpl_agents_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1062422,'widget_wpl_googlemap_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1266887,'f32b69500_eael_updated_at','1656030088','no'),(1266899,'78a4b0d3e_eael_updated_at','1656030088','no'),(1266902,'wp_mail_smtp_lite_sent_email_counter','308','yes'),(1266903,'wp_mail_smtp_lite_weekly_sent_email_counter','a:12:{i:16;i:9;i:17;i:10;i:18;i:20;i:19;i:8;i:20;i:15;i:21;i:10;i:22;i:7;i:23;i:8;i:24;i:2;i:25;i:129;i:26;i:1;i:27;i:10;}','yes'),(1261016,'d6d5d0d31_eael_updated_at','1656030088','no'),(1261020,'e55de3805_eael_updated_at','1656030088','no'),(1261023,'5beef87a4_eael_updated_at','1656030088','no'),(1529282,'_site_transient_ai1wm_last_check_for_updates','1653527803','no'),(1308577,'379c0f897_eael_updated_at','1651360580','no'),(1529283,'ai1wm_updater','a:0:{}','yes'),(1272756,'wp_calendar_block_has_published_posts','1','yes'),(1250967,'wp-smush-show_upgrade_modal','1','no'),(1250975,'5203dc641_eael_updated_at','1656030088','no'),(1250978,'0e09a8794_eael_updated_at','1656030088','no'),(1250998,'wp_mail_smtp_mail_key','ZwVOGoQD8UTS4LKY04kdcJ/raPr/VTfCA4BVQZp0aKs=','yes'),(1250999,'wp_mail_smtp_debug_events_db_version','1','yes'),(1259779,'ac607990c_eael_updated_at','1653527524','no'),(1250986,'66b3eb4d0_eael_updated_at','1656030088','no'),(1912937,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1657487502;s:7:\"checked\";a:5:{s:6:\"houzez\";s:5:\"2.3.7\";s:12:\"twentytwenty\";s:3:\"1.2\";s:15:\"twentytwentyone\";s:3:\"1.1\";s:15:\"twentytwentytwo\";s:3:\"1.0\";s:8:\"zzhouzez\";s:5:\"2.2.4\";}s:8:\"response\";a:3:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.0.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.6.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.2.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(1912938,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1657487502;s:8:\"response\";a:13:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.62\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.62.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2746234\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2746234\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:6:\"5.2.17\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"5.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.7\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:49:\"w.org/plugins/essential-addons-for-elementor-lite\";s:4:\"slug\";s:35:\"essential-addons-for-elementor-lite\";s:6:\"plugin\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:11:\"new_version\";s:5:\"5.1.8\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.png?rev=2598498\";s:2:\"1x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.png?rev=2598498\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.gif?rev=2731640\";s:2:\"1x\";s:90:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.gif?rev=2731640\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:30:\"optima-express/iHomefinder.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/optima-express\";s:4:\"slug\";s:14:\"optima-express\";s:6:\"plugin\";s:30:\"optima-express/iHomefinder.php\";s:11:\"new_version\";s:5:\"7.3.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/optima-express/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/optima-express.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/optima-express/assets/icon-256x256.png?rev=2288316\";s:2:\"1x\";s:67:\"https://ps.w.org/optima-express/assets/icon-128x128.png?rev=2288316\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/optima-express/assets/banner-1544x500.png?rev=2288675\";s:2:\"1x\";s:69:\"https://ps.w.org/optima-express/assets/banner-772x250.png?rev=2288312\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.2.0\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;s:14:\"upgrade_notice\";s:40:\"<ul>\n<li>Version 10 bug fixes</li>\n</ul>\";}s:17:\"postie/postie.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:20:\"w.org/plugins/postie\";s:4:\"slug\";s:6:\"postie\";s:6:\"plugin\";s:17:\"postie/postie.php\";s:11:\"new_version\";s:6:\"1.9.61\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/postie/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/postie.1.9.61.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:58:\"https://ps.w.org/postie/assets/icon-256x256.png?rev=970083\";s:2:\"1x\";s:58:\"https://ps.w.org/postie/assets/icon-128x128.png?rev=970083\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/postie/assets/banner-1544x500.png?rev=651473\";s:2:\"1x\";s:60:\"https://ps.w.org/postie/assets/banner-772x250.png?rev=651473\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.3\";}s:35:\"google-site-kit/google-site-kit.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/google-site-kit\";s:4:\"slug\";s:15:\"google-site-kit\";s:6:\"plugin\";s:35:\"google-site-kit/google-site-kit.php\";s:11:\"new_version\";s:6:\"1.78.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/google-site-kit/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/google-site-kit.1.78.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=2181376\";s:2:\"1x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=2181376\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=2513620\";s:2:\"1x\";s:70:\"https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=2513620\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:6:\"3.10.2\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-smushit.3.10.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.png?rev=2746115\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.png?rev=2746115\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=2624292\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=2624292\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:35:\"redux-framework/redux-framework.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/redux-framework\";s:4:\"slug\";s:15:\"redux-framework\";s:6:\"plugin\";s:35:\"redux-framework/redux-framework.php\";s:11:\"new_version\";s:6:\"4.3.15\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/redux-framework/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/redux-framework.4.3.15.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/redux-framework/assets/icon-256x256.png?rev=2671465\";s:2:\"1x\";s:68:\"https://ps.w.org/redux-framework/assets/icon-128x128.png?rev=2671465\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/redux-framework/assets/banner-1544x500.png?rev=2671465\";s:2:\"1x\";s:70:\"https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2671465\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.1\";}s:35:\"autodescription/autodescription.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/autodescription\";s:4:\"slug\";s:15:\"autodescription\";s:6:\"plugin\";s:35:\"autodescription/autodescription.php\";s:11:\"new_version\";s:5:\"4.2.5\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/autodescription/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/autodescription.4.2.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/autodescription/assets/icon-256x256.png?rev=2153256\";s:2:\"1x\";s:60:\"https://ps.w.org/autodescription/assets/icon.svg?rev=2153256\";s:3:\"svg\";s:60:\"https://ps.w.org/autodescription/assets/icon.svg?rev=2153256\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/autodescription/assets/banner-1544x500.png?rev=2157443\";s:2:\"1x\";s:70:\"https://ps.w.org/autodescription/assets/banner-772x250.png?rev=2157443\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/autodescription/assets/banner-1544x500-rtl.png?rev=2157443\";s:2:\"1x\";s:74:\"https://ps.w.org/autodescription/assets/banner-772x250-rtl.png?rev=2157443\";}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:5:\"7.2.0\";}s:17:\"wp-docs/index.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/wp-docs\";s:4:\"slug\";s:7:\"wp-docs\";s:6:\"plugin\";s:17:\"wp-docs/index.php\";s:11:\"new_version\";s:5:\"1.9.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/wp-docs/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/wp-docs.1.9.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/wp-docs/assets/icon-256x256.gif?rev=2286794\";s:2:\"1x\";s:60:\"https://ps.w.org/wp-docs/assets/icon-128x128.gif?rev=2272769\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-docs/assets/banner-1544x500.png?rev=2539073\";s:2:\"1x\";s:62:\"https://ps.w.org/wp-docs/assets/banner-772x250.png?rev=2539073\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.0\";s:14:\"upgrade_notice\";s:41:\"<p>Fix: Detail view sortable columns.</p>\";}s:35:\"wp-fastest-cache/wpFastestCache.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/wp-fastest-cache\";s:4:\"slug\";s:16:\"wp-fastest-cache\";s:6:\"plugin\";s:35:\"wp-fastest-cache/wpFastestCache.php\";s:11:\"new_version\";s:5:\"1.0.2\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wp-fastest-cache/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wp-fastest-cache/assets/icon-256x256.png?rev=2064586\";s:2:\"1x\";s:69:\"https://ps.w.org/wp-fastest-cache/assets/icon-128x128.png?rev=1068904\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/wp-fastest-cache/assets/banner-772x250.jpg?rev=1064099\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:5:\"6.9.0\";s:3:\"url\";s:0:\"\";s:7:\"package\";b:0;s:4:\"name\";s:21:\"WPBakery Page Builder\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:15:{s:53:\"access-category-password/access-category-password.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/access-category-password\";s:4:\"slug\";s:24:\"access-category-password\";s:6:\"plugin\";s:53:\"access-category-password/access-category-password.php\";s:11:\"new_version\";s:5:\"1.5.1\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/access-category-password/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/access-category-password.1.5.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:75:\"https://s.w.org/plugins/geopattern-icon/access-category-password_e0e4e7.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/access-category-password/assets/banner-772x250.png?rev=996162\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:25:\"add-to-any/add-to-any.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/add-to-any\";s:4:\"slug\";s:10:\"add-to-any\";s:6:\"plugin\";s:25:\"add-to-any/add-to-any.php\";s:11:\"new_version\";s:5:\"1.8.4\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/add-to-any/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/add-to-any.1.8.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/add-to-any/assets/icon-256x256.png?rev=972738\";s:2:\"1x\";s:54:\"https://ps.w.org/add-to-any/assets/icon.svg?rev=972738\";s:3:\"svg\";s:54:\"https://ps.w.org/add-to-any/assets/icon.svg?rev=972738\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/add-to-any/assets/banner-1544x500.png?rev=2167358\";s:2:\"1x\";s:65:\"https://ps.w.org/add-to-any/assets/banner-772x250.png?rev=2167357\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";}s:56:\"inline-google-spreadsheet-viewer/inline-gdocs-viewer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:46:\"w.org/plugins/inline-google-spreadsheet-viewer\";s:4:\"slug\";s:32:\"inline-google-spreadsheet-viewer\";s:6:\"plugin\";s:56:\"inline-google-spreadsheet-viewer/inline-gdocs-viewer.php\";s:11:\"new_version\";s:6:\"0.13.2\";s:3:\"url\";s:63:\"https://wordpress.org/plugins/inline-google-spreadsheet-viewer/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/inline-google-spreadsheet-viewer.0.13.2.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:85:\"https://ps.w.org/inline-google-spreadsheet-viewer/assets/icon-128x128.png?rev=1107476\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/mailchimp-for-wp\";s:4:\"slug\";s:16:\"mailchimp-for-wp\";s:6:\"plugin\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:11:\"new_version\";s:5:\"4.8.7\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mailchimp-for-wp/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577\";s:2:\"1x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:39:\"content-protector/content-protector.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/content-protector\";s:4:\"slug\";s:17:\"content-protector\";s:6:\"plugin\";s:39:\"content-protector/content-protector.php\";s:11:\"new_version\";s:7:\"3.5.5.2\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/content-protector/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/content-protector.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/content-protector/assets/icon-256x256.png?rev=2206760\";s:2:\"1x\";s:70:\"https://ps.w.org/content-protector/assets/icon-128x128.png?rev=2206760\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/content-protector/assets/banner-1544x500.png?rev=2206760\";s:2:\"1x\";s:72:\"https://ps.w.org/content-protector/assets/banner-772x250.png?rev=2206760\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/really-simple-ssl\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:6:\"plugin\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:11:\"new_version\";s:5:\"5.3.2\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/really-simple-ssl/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/really-simple-ssl.5.3.2.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=1782452\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/really-simple-ssl/assets/banner-1544x500.png?rev=2594863\";s:2:\"1x\";s:72:\"https://ps.w.org/really-simple-ssl/assets/banner-772x250.png?rev=2594863\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:65:\"responsive-mortgage-calculator/responsive-mortgage-calculator.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"w.org/plugins/responsive-mortgage-calculator\";s:4:\"slug\";s:30:\"responsive-mortgage-calculator\";s:6:\"plugin\";s:65:\"responsive-mortgage-calculator/responsive-mortgage-calculator.php\";s:11:\"new_version\";s:5:\"2.4.3\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/responsive-mortgage-calculator/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/responsive-mortgage-calculator.2.4.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/responsive-mortgage-calculator/assets/icon-256x256.png?rev=1920811\";s:2:\"1x\";s:83:\"https://ps.w.org/responsive-mortgage-calculator/assets/icon-256x256.png?rev=1920811\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:85:\"https://ps.w.org/responsive-mortgage-calculator/assets/banner-772x250.png?rev=2045118\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:49:\"google-calendar-events/google-calendar-events.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/google-calendar-events\";s:4:\"slug\";s:22:\"google-calendar-events\";s:6:\"plugin\";s:49:\"google-calendar-events/google-calendar-events.php\";s:11:\"new_version\";s:6:\"3.1.36\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/google-calendar-events/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/google-calendar-events.3.1.36.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/google-calendar-events/assets/icon-256x256.png?rev=1263960\";s:2:\"1x\";s:75:\"https://ps.w.org/google-calendar-events/assets/icon-128x128.png?rev=1263960\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/google-calendar-events/assets/banner-1544x500.png?rev=1263982\";s:2:\"1x\";s:77:\"https://ps.w.org/google-calendar-events/assets/banner-772x250.png?rev=1263982\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";}s:25:\"tablepress/tablepress.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/tablepress\";s:4:\"slug\";s:10:\"tablepress\";s:6:\"plugin\";s:25:\"tablepress/tablepress.php\";s:11:\"new_version\";s:4:\"1.14\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/tablepress/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/tablepress.1.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/tablepress/assets/icon-256x256.png?rev=1064192\";s:2:\"1x\";s:63:\"https://ps.w.org/tablepress/assets/icon-128x128.png?rev=1064192\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/tablepress/assets/banner-1544x500.png?rev=1275767\";s:2:\"1x\";s:65:\"https://ps.w.org/tablepress/assets/banner-772x250.png?rev=1275767\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/tablepress/assets/banner-1544x500-rtl.png?rev=1275767\";s:2:\"1x\";s:69:\"https://ps.w.org/tablepress/assets/banner-772x250-rtl.png?rev=1275767\";}s:8:\"requires\";s:3:\"5.6\";}s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/ultimate-posts-widget\";s:4:\"slug\";s:21:\"ultimate-posts-widget\";s:6:\"plugin\";s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";s:11:\"new_version\";s:5:\"2.2.1\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/ultimate-posts-widget/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/ultimate-posts-widget.2.2.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:72:\"https://s.w.org/plugins/geopattern-icon/ultimate-posts-widget_5b9f2b.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/ultimate-posts-widget/assets/banner-772x250.png?rev=960451\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";}s:37:\"user-role-editor/user-role-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/user-role-editor\";s:4:\"slug\";s:16:\"user-role-editor\";s:6:\"plugin\";s:37:\"user-role-editor/user-role-editor.php\";s:11:\"new_version\";s:4:\"4.62\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/user-role-editor/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/user-role-editor.4.62.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/user-role-editor/assets/icon-256x256.jpg?rev=1020390\";s:2:\"1x\";s:69:\"https://ps.w.org/user-role-editor/assets/icon-128x128.jpg?rev=1020390\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/user-role-editor/assets/banner-772x250.png?rev=1263116\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:19:\"weforms/weforms.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/weforms\";s:4:\"slug\";s:7:\"weforms\";s:6:\"plugin\";s:19:\"weforms/weforms.php\";s:11:\"new_version\";s:6:\"1.6.13\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/weforms.1.6.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/weforms/assets/icon-256x256.png?rev=1978687\";s:2:\"1x\";s:60:\"https://ps.w.org/weforms/assets/icon-128x128.png?rev=1978687\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/weforms/assets/banner-1544x500.png?rev=2243402\";s:2:\"1x\";s:62:\"https://ps.w.org/weforms/assets/banner-772x250.png?rev=2243402\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:40:\"real-estate-listing-realtyna-wpl/WPL.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:46:\"w.org/plugins/real-estate-listing-realtyna-wpl\";s:4:\"slug\";s:32:\"real-estate-listing-realtyna-wpl\";s:6:\"plugin\";s:40:\"real-estate-listing-realtyna-wpl/WPL.php\";s:11:\"new_version\";s:6:\"4.12.1\";s:3:\"url\";s:63:\"https://wordpress.org/plugins/real-estate-listing-realtyna-wpl/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/real-estate-listing-realtyna-wpl.4.12.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/real-estate-listing-realtyna-wpl/assets/icon-256x256.png?rev=2106080\";s:2:\"1x\";s:85:\"https://ps.w.org/real-estate-listing-realtyna-wpl/assets/icon-128x128.png?rev=2106080\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/real-estate-listing-realtyna-wpl/assets/banner-1544x500.png?rev=2176905\";s:2:\"1x\";s:87:\"https://ps.w.org/real-estate-listing-realtyna-wpl/assets/banner-772x250.png?rev=2176905\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.0.0\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"3.4.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.3.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=2468655\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=2468655\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:27:\"wps-cleaner/wps-cleaner.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wps-cleaner\";s:4:\"slug\";s:11:\"wps-cleaner\";s:6:\"plugin\";s:27:\"wps-cleaner/wps-cleaner.php\";s:11:\"new_version\";s:5:\"1.6.8\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wps-cleaner/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wps-cleaner.1.6.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wps-cleaner/assets/icon-256x256.jpg?rev=1880502\";s:2:\"1x\";s:64:\"https://ps.w.org/wps-cleaner/assets/icon-128x128.jpg?rev=1880502\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wps-cleaner/assets/banner-1544x500.jpg?rev=1880502\";s:2:\"1x\";s:66:\"https://ps.w.org/wps-cleaner/assets/banner-772x250.jpg?rev=1880502\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";}}}','no'),(1251012,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1251018,'can_compress_scripts','0','no'),(1256485,'45184feba_eael_updated_at','1653527524','no'),(1252027,'1cef1a677_eael_updated_at','1656030088','no'),(1551649,'googlesitekitpersistent_remote_features','a:10:{s:14:\"adsenseSetupV2\";a:1:{s:7:\"enabled\";b:0;}s:8:\"ga4setup\";a:1:{s:7:\"enabled\";b:1;}s:14:\"helpVisibility\";a:1:{s:7:\"enabled\";b:1;}s:13:\"ideaHubModule\";a:1:{s:7:\"enabled\";b:0;}s:14:\"serviceSetupV2\";a:1:{s:7:\"enabled\";b:1;}s:16:\"unifiedDashboard\";a:1:{s:7:\"enabled\";b:1;}s:12:\"userFeedback\";a:1:{s:7:\"enabled\";b:1;}s:17:\"widgets.dashboard\";a:1:{s:7:\"enabled\";b:1;}s:21:\"widgets.pageDashboard\";a:1:{s:7:\"enabled\";b:1;}s:14:\"zeroDataStates\";a:1:{s:7:\"enabled\";b:1;}}','yes'),(1893784,'_site_transient_timeout_php_check_3a6f2a803f99347534e67553ed67d1ad','1657654838','no'),(1893785,'_site_transient_php_check_3a6f2a803f99347534e67553ed67d1ad','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'),(1551633,'RealtynaMlsSyncDashboard_realtyna_scheduler_RealtynaMlsSyncDashboard::setStatusSignalScheduler','1650503630','yes'),(1787435,'_transient_timeout_feed_31cf07fc8144de8a7ff49e57a683f0de','1657504980','no'),(1787436,'_transient_feed_31cf07fc8144de8a7ff49e57a683f0de','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:6:\"\n    \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:70:\"\n         \n         \n         \n         \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"City of Kannapolis | City of Kannapolis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://www.kannapolisnc.gov\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"RSS feeds for City of Kannapolis | City of Kannapolis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:3:\"ttl\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"60\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:25:{i:0;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://www.kannapolisnc.gov/Community/News/ID/2053/Kannapolis-Announces-Winners-of-Chalk-Art-Contest#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Kannapolis Announces Winners of Chalk Art Contest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://www.kannapolisnc.gov/Community/News/ID/2053/Kannapolis-Announces-Winners-of-Chalk-Art-Contest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:802:\"Congratulations to the winners of our Chalk Art Contest honoring Parks and Recreation Month! Artists displayed their talent last weekend on sidewalks of the North Carolina Research Campus by creating beautiful chalk drawings.\n\nThank you to everyone who participated!\n\nPrizes were awarded in the following categories:\n\nBest Theme Related (Parks &amp; Recreation) Work\n\n\n Adult (18 &amp; Up): Melissa Allmon\n Teen (13-17): Alexandria Otis\n Youth (5-12): Mila Allmon\n\n\n&nbsp;\n\nMost Colorful Piece\n\n\n Adult (18 &amp; Up): Meredith Teeter\n Teen (13-17): Samantha Griffin\n Youth (5-12): Savannah Griffin\n\n\n&nbsp;\n\nPeople&rsquo;s Choice Best in Show\n\n\n Teen (13-17): Samantha Griffin\n Youth (5-12): Savannah Griffin\n\n\n&nbsp;\n\nTo learn more about Parks and Recreation in Kannapolis, visit www.kannapolisnc.gov\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 07 Jul 2022 12:33:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2053\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2053\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2053&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://www.kannapolisnc.gov/Community/News/ID/2052/Kannapolis-Police-Officer-Receives-State-and-National-Recognition#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Kannapolis Police Officer Receives State and National Recognition\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://www.kannapolisnc.gov/Community/News/ID/2052/Kannapolis-Police-Officer-Receives-State-and-National-Recognition\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1083:\"Sergeant Travis Smith has been recognized as the 2021-2022 North Carolina Police Officer of the Year by the Veterans of Foreign Wars. He received the honor at the North Carolina State VFW Conference and was recognized for his professionalism, leadership and commitment to the City of Kannapolis.\n\n&nbsp;\n\nHe was nominated for the award by Kannapolis VFW Post 8989 and was selected from a field of police officer candidates from around the state. As a result of winning this prestigious honor Travis has also been recognized as a National VFW Police Officer of the Year.\n\n&nbsp;\n\nTravis is a graduate of Northwest Cabarrus High School. He served in the United States Marine Corps and the Army Reserves with a deployment to Iraq.\n\n&nbsp;\n\nHe began his career with the Kannapolis Police Department as a patrol officer. He was designated as a Field Training Officer and was promoted to Sergeant in 2016. He is currently assigned to Patrol Squad D.\n\n&nbsp;\n\nHe was presented with a Life Saving Award in March 2013 for his actions in saving a person who was in a burning home in the City.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 06 Jul 2022 13:05:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2052\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2052\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2052&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://www.kannapolisnc.gov/Community/News/ID/2051/This-Weeks-Discover-Fun-in-Kannapolis-Events#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"This Week’s Discover Fun in Kannapolis Events \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://www.kannapolisnc.gov/Community/News/ID/2051/This-Weeks-Discover-Fun-in-Kannapolis-Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1678:\"It is another great week to Discover Fun in Kannapolis. The City has announced its lineup of concerts, movies, special events, Cannon Ballers baseball and of course - fireworks for 2022. All movies and concerts are free to the public and will be held in downtown Kannapolis. Movies and concerts are held at Village Park and Veterans Park.\n\n&nbsp;\n\nThis week&rsquo;s events are:\n\n&nbsp;\n\nJuly 6-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cannon Ballers Homestand\n\nTickets at www.kcballers.com\n\n&nbsp;\n\nJuly 7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Farmer&rsquo;s Market\n\n4 -7 p.m. at corner of Dale Earnhardt Blvd. and Vance Ave.\n\nFeaturing live music from Chase Killough (acoustic guitar)\n\n&nbsp;\n\nJuly 8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Movie in the Park: Jungle Cruise\n\n8:45 p.m. at Village Park\n\n&nbsp;\n\nJuly 10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Movie in the Park (En Espanol): Jungle Cruise\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6 p.m. at Atrium Health Ballpark\n\n&nbsp;\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. No pets or smoking please.\n\n&nbsp;\n\nCoolers are allowed but alcohol is not permitted. Food/Drinks will be available for purchase, or attendees can bring their own. Lawn chairs are permitted. You can download the summer&rsquo;s entire schedule at www.kannapolisnc.gov or find it on Facebook and Twitter.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Tue, 05 Jul 2022 20:21:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2051\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2051\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2051&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://www.kannapolisnc.gov/Community/News/ID/2050/Cabarrus-County-Roundabout-Contract-Awarded#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Cabarrus County Roundabout Contract Awarded\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://www.kannapolisnc.gov/Community/News/ID/2050/Cabarrus-County-Roundabout-Contract-Awarded\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1113:\"N.C. Department of Transportation contract crews will soon start building a roundabout at the intersection of N.C. 3 and Odell School Road, west of Kannapolis. The $990,317 project was awarded last month to NJR Group, Inc. out of Albemarle.\n\n&nbsp;\n\nThe project has a floating start date, meaning work can commence between July 11 &ndash; Sept. 6. Once the contractor does begin work, the contract allows up to six weeks to build the roundabout, which must open no later than Nov. 4.\n\n&nbsp;\n\nThe intersection will be closed to traffic so contract crews can safely build the roundabout. Drivers will be detoured during construction along Odell School Road, N.C. 3, and Windy Road, returning to Odell School Road.\n\n&nbsp;\n\nRoundabouts improve safety for drivers, pedestrians, and bicyclists. They also help reduce the congestion and backups more typical at traditional intersections with stop signs and traffic signals.\n\n&nbsp;\n\nNCDOT has produced a video showing how roundabouts work and improve overall safety.\n\nFor real-time travel information, visit&nbsp;DriveNC.gov&nbsp;or&nbsp;follow NCDOT on social media.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Tue, 05 Jul 2022 14:33:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2050\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2050\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2050&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://www.kannapolisnc.gov/Community/News/ID/2045/July-4th-Holiday-Information#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"July 4th Holiday Information\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://www.kannapolisnc.gov/Community/News/ID/2045/July-4th-Holiday-Information\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:503:\"All City of Kannapolis offices will be closed on Monday, July 4, in observance of the Independence Day holiday. There will be no disruption in garbage and recycling collection service; however, there will be no collection of yard debris.\n\nPlease remember in North Carolina, only sparklers and poppers are legal. It&#39;s illegal to have ground spinners, bottle rockets, and aerial fireworks (any firework that explodes or leaves the ground on its own). Please adhere to the law and have a safe holiday.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 30 Jun 2022 18:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2045\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2045\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2045&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://www.kannapolisnc.gov/Community/News/ID/2049/Kannapolis-Approves-FY-23-Budget#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Kannapolis Approves FY 23 Budget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://www.kannapolisnc.gov/Community/News/ID/2049/Kannapolis-Approves-FY-23-Budget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5241:\"The Kannapolis City Council has approved the Fiscal Year 2023 budget. The total budget is $94,916,039 and includes all six operating funds of the City. The budget includes no property tax increase.\n\n&nbsp;\n\nThe budget concentrates on several guiding principles:\n\n1. Maintaining and improving city services to meet the needs of our thriving City.\n\n2. Retaining existing employees and recruiting new people to work for the City.\n\n3. Saving cash reserves to be used for future one-time capital projects once the Imagine Kannapolis Strategic Planning Process is completed later this year. The goal of Imagine Kannapolis is to establish a future vision for Kannapolis, determine the focus areas (such as public safety, transportation, and economic development) needed to bring the vision to fruition, set strategic objectives for each focus area, develop a financial and operational plan to achieve the objectives and begin implementation of the strategic plan.\n\n&nbsp;\n\nThe City&rsquo;s population is approximately 55,000 and the City has grown by 45% in the last 20 years. Kannapolis is the 20th largest city in North Carolina. Projections indicate that the City will continue to grow by 2.2% annually and will likely reach a population of at least 77,000 by 2040.\n\n&nbsp;\n\nLike all cities and businesses across the U.S. Kannapolis faces the challenges of the new post Covid normal. Employee shortages, inflation, supply chain issues and construction costs impact how the City spends its funds to provide services. Fortunately, the City&rsquo;s good financial health and the continued outlook for positive economic growth mean the City can meet these challenges without increases in the property tax rate or fees this year.\n\n&nbsp;\n\n&ldquo;Our most valuable asset is our employees. Without our employees we could not keep the City safe, livable, comfortable or vibrant. Every day we are able to go about our lives because City employees have made sure we have clean water, our garbage is collected, and police and fire are taking care of our emergency needs. We can go to a park, walk a greenway and enjoy a concert. We have places to go to work and much more because our dedicated city staff are doing their jobs to make Kannapolis a premier place to be,&rdquo; said Kannapolis City Manager Mike Legg. &ldquo;This budget concentrates on providing the tools we need to ensure we have a high-quality staff.&rdquo;\n\n&nbsp;\n\nThe current tax rate will remain at .63 cents per $100 valuation &ndash; a home valued at $200,000 will pay $1,260 annually in property taxes for all City services.\n\n&nbsp;\n\nThe majority of the City&rsquo;s revenues come from two sources &ndash; property taxes (57% of the budget) and sales taxes (22% of the budget).\n\n&nbsp;\n\nNotable items in the budget include:\n\n\n $1.41 million &ndash; 5% Cost of Living Adjustments for all employees\n $875,000 &ndash; 11 new positions and 15 reclassifications (including: additional city attorney, assistant HR director, community outreach coordinator, payroll administrator, assistant parks director, police recruiting officer, GIS specialist, construction maintenance worker, two construction maintenance technicians and a customer service representative\n $921,000 for replacement of 15 police vehicles\n $150,000 for improvements to the recently acquired Dixie Youth Diamond Sports Facility\n $1 million for renovations and improvements to Fire Stations #1 and #4\n $149,347 &ndash; replacement of citywide technology equipment and devices\n $323,406 for the 2nd payment for full replacement of all police in-car cameras, body worn cameras and tasers\n $95,000 &ndash; replacement of fire hoses, communication devices and other fire equipment needs\n $13,000 to replace HVAC at Fire Station #5\n $160,000 for new pickleball courts and either Safrit Park or Baker&rsquo;s Creek Park\n $210,620 increase for street repairs and maintenance\n $50,000 for sidewalk repairs near A.L. Brown High School and surrounding neighborhoods\n $179,239 for increasing part time hourly salaries in the parks and recreation department\n $136,000 for upgrades to the 911 telecommunications operations\n $8,500 for new equipment for Customer Service\n $730,000 for vehicles and large equipment replacements in the Water Resources Department\n $856,000 Kannapolis&rsquo; share to Water and Sewer Authority of Cabarrus County (WSACC) to fund wastewater treatment plant expansion.\n $703,235 increase in costs to fund CK Rider (fuel, new federal requirements and contract increases)\n $482,841 - the local match for new CK Rider buses. Joint match with the City of Concord.\n $14.9 million for debt payments for completed projects such as: City Hall, Fire Stations 2 &amp; 3, Irish Buffalo Creek Greenway, Atrium Health Ballpark, West Avenue Streetscape, VIDA Parking Deck, fire trucks, police radios, and Village Park\n $325,000 to acquire Gem Theatre business and $735,545 for management of the Gem Theatre as it becomes an operation of the City. The management expenses will be matched by corresponding revenues from ticket and concession sales and facility rentals.\n &nbsp;Increase water and sewer tap fees to $7,500 per tap in order to achieve full cost recovery of the expenses incurred by the City.\n\n\n&nbsp;\n\n&nbsp;\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Tue, 28 Jun 2022 21:15:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2049\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2049\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2049&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Annetter Keller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://www.kannapolisnc.gov/Community/News/ID/2048/Join-A-Focus-Group-As-We-Imagine-Kannapolis#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Join A Focus Group As We &quot;Imagine Kannapolis&quot;\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://www.kannapolisnc.gov/Community/News/ID/2048/Join-A-Focus-Group-As-We-Imagine-Kannapolis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6104:\"Over the last seven years the leaders of the City of Kannapolis have dedicated themselves to revitalizing the City&rsquo;s downtown and strengthening the economic base. Bold steps to purchase real estate, invest in infrastructure, construct public assets, launch the Discover a Healthy Life brand, and to attract private investment have paid huge dividends for the City.\n\nAccomplishments include:\n\n\n Welcoming companies such as Amazon, Prime Beverage, Gordon Food Company, the N.C. Food Innovation Lab, Linder Industrial; all who have created thousands of jobs and millions in regional investments.\n &nbsp;\n Purchasing and selling downtown properties that have resulted in private investments totaling over $100 million with another minimum of $100 million projected to begin within the next year. These investments include over 30 new small businesses, VIDA Apartments, Pennant Square Townhomes and the planned 200 Main Apartments and Stadium Lofts Mixed Use Development.\n\n\n&nbsp;\n\n\n Constructing the West Avenue Streetscape, Atrium Health Ballpark, VIDA Parking Deck, Fire Stations 2 and 3, and the Irish Buffalo Creek Greenway and the first phase of renovating the Gem Theatre.\n\n\n&nbsp;\n\nWhile these are tremendous successes City leaders are not resting on their laurels but are asking: &ldquo;Imagine Kannapolis&rdquo;: What do we want the City of Kannapolis to look like in 10 or 20 years? How do we build on our qualities as a city? What do we need to do to prepare for the next generation? Where are we going? And how do we get there?\n\n&nbsp;\n\nThe Kannapolis City Council is launching the Imagine Kannapolis Strategic Planning Process. The goal will be to establish a future vision for Kannapolis, determine focus areas (such as public safety, transportation, and economic development) needed to bring the vision to fruition, set strategic objectives for each focus area, develop a financial and operational plan to achieve the objectives and begin implementation of the strategic plan.\n\n&nbsp;\n\n&ldquo;Over the last decade we have made much progress in rebounding from the devastating loss of our largest employer. We have demonstrated that we can revitalize our downtown and attract new companies to our city. Now, it is time to go a step further. What does our city look like in the next decade? What is our vision for our city?&rdquo; commented Kannapolis Mayor Darrell Hinnant.\n\n&nbsp;\n\nThe Kannapolis City Council invites the public to become involved with Imagine Kannapolis by volunteering to participate in an Imagine Kannapolis focus group. The purpose of each focus group is to develop the specific strategies needed to achieve the City&rsquo;s vision within a specific focus area. It is anticipated that the focus groups will only meet a few times over the next four months and the entire strategic process will be completed this year. Additional public input opportunities will include public surveys and public comment via City social media channels.\n\n&nbsp;\n\n&ldquo;We are cognizant of people having a lot on their plates. While this is a very important process for our City, we want the focus groups to be collaborative, represent the demographics of our City, to be thorough, but to also be fun and rewarding as we work to discover what our future will be,&rdquo; said Kannapolis City Manager Mike Legg.\n\n&nbsp;\n\nThe focus groups will be coordinated by City staff and will consult with subject matter experts as needed. The first group focused on Homelessness and Transitional Housing and is already meeting. An additional three groups will focus on Historic Preservation, Environmental Stewardship and Neighborhood Improvement.\n\n&nbsp;\n\nThe Historic Preservation Focus Group will include exploring the ideas of a history museum by the Kannapolis History Associates, a request by the Kannapolis African American Museum and Cultural Center for a facility and a Cannon Family Tribute. Consideration of what a museum might look like in today&rsquo;s era such as online and virtual options versus brick and mortar options for historic preservation and promotion as well as hands on programming versus static displays.\n\n&nbsp;\n\nThe Environmental Stewardship Focus Group will discuss a set of initiatives and investments to make Kannapolis more environmentally sustainable and more physically attractive. Items could include litter cleanup programming, new gateway improvements along I-85 exit corridors, more proactive code enforcement, tree planting, more preservation of natural areas, reestablishing the Beautification Commission, an Adopt-A-Stream Program, stream restoration, and improved recycling participation.\n\n&nbsp;\n\nThe Neighborhood Improvement Focus Group will focus on plans that would help stabilize existing neighborhoods and make them more resilient. This group will discuss what physical investments could help with this process such as sidewalks, street trees, monument signage, enhanced solid waste service, assistance with developing neighborhood groups, proactive code enforcement, rental registration program, policies to limit investor-owned properties and strategies to improve existing manufactured home parks.\n\n&nbsp;\n\nA fifth focus group, the Recreation Facilities Focus Group will be led by the City&rsquo;s existing Parks and Recreation Commission. Over the next four months City staff will also be working with additional focus groups such as Transportation, Infrastructure and Public Safety facilities. These groups will be internal based with staff and stakeholders such as NCDOT participating in the process.\n\n&nbsp;\n\nIf you would like to be a part of the Imagine Kannapolis Strategic Planning Process, by serving on the Historic Preservation, Environmental Stewardship or Neighborhood Improvement Focus Groups please complete the application and check the box designating that group.\n\n&nbsp;\n\nFind the application at www.kannapolisnc.gov/ImagineKannapolis. Applications are due July 18, 2022.\n\n&nbsp;\n\nFor more information contact Annette Privette Keller, Director of Communications, at 704.920.4311 or aprivettekeller@kannapolisnc.gov\n\n&nbsp;\n\n####\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Tue, 28 Jun 2022 11:42:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2048\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2048\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2048&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Annetter Keller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://www.kannapolisnc.gov/Community/News/ID/2046/Rewrite-of-Kannapolis-Development-Ordinance-Approved#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Rewrite of Kannapolis Development Ordinance Approved\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://www.kannapolisnc.gov/Community/News/ID/2046/Rewrite-of-Kannapolis-Development-Ordinance-Approved\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2429:\"The Kannapolis City Council has approved the rewrite of the Kannapolis Development Ordinance (KDO). The ordinance was first approved by the City in 2000. The City, as well as development, has changed during the last 22 years. The new Kannapolis Development Ordinance is user-friendly, uses graphics and streamlined text and reflects the vision and policies of the City Council as laid out in the Move Kannapolis Forward 2030 Comprehensive Plan.\n\n&nbsp;\n\nThe ordinance is the adopted law of the City that regulates land use and form, growth, and development. It includes zoning regulations which governs the location, size and type of development within zoning districts and regulations for items such as subdivisions. The document also establishes the process for reviewing development proposals and includes standards for different aspects of development, like parking, landscaping, the layout of streets and blocks, lighting, signage, building design, trees, and environmental protections.\n\n&nbsp;\n\n&ldquo;This ordinance better reflects where we are as a City currently. Our goal is to facilitate and assist people who want to build in our City, but we want to manage that growth so that we have quality home, office and industrial buildings and developments. We expect this document to assist us to more easily help people with the approval process in the Planning Department &ndash; whether you are a homeowner who wants to install a fence or a developer who wants to build an office complex,&rdquo; said Richard Smith, Director of Planning.\n\n&nbsp;\n\nOver the last few years, the Planning Department has led the rewrite process. Numerous presentations and public meetings have been held with the public and development community members to gain input and information on what was needed to make the ordinance work.\n\n&nbsp;\n\nHighlights of the new ordinance include:\n\n\n Conditional zoning procedures are reorganized and updated\n Planned development procedures are modernized\n New fence and wall standards\n New exterior lighting standards\n Updated parking lot landscaping and perimeter buffer standards\n Permits for tree removal will be required\n New comprehensive open space standards for developments\n Standards for quality of development and items that address height of buildings, types of lighting, signage, loading and storage areas and facades in mixed use districts\n\n\n&nbsp;\n\nThe new ordinance is effective July 1, 2022.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Mon, 27 Jun 2022 18:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2046\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2046&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://www.kannapolisnc.gov/Community/News/ID/2043/This-Weeks-Discover-Fun-in-Kannapolis-Events#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"This Week&#039;s Discover Fun in Kannapolis Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://www.kannapolisnc.gov/Community/News/ID/2043/This-Weeks-Discover-Fun-in-Kannapolis-Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1892:\"It is another great year to Discover Fun in Kannapolis. The City has announced its lineup of concerts, movies, special events, Cannon Ballers baseball and of course - fireworks for 2022. All movies and concerts are free to the public and will be held in downtown Kannapolis. Movies and concerts are held at Village Park and Veterans Park.\n\n&nbsp;\n\nThis week&rsquo;s events are:\n\n&nbsp;\n\nJune 30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Farmer&rsquo;s Market\n\n4 -7 p.m. at corner of Dale Earnhardt Blvd. and Vance Ave.\n\n&nbsp;\n\nJuly 1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Concert in the Park and Fireworks: Charlotte Symphony\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7 p.m. at Village Park\n\n&nbsp;\n\nJuly&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sunday Music Series: UltimaNota\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1-3 p.m. at Veterans Park&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. No pets or smoking please.\n\nOutside alcohol is not permitted. Food/Drinks will be available for purchase, or attendees can bring their own. Lawn chairs are permitted. You can download the summer&rsquo;s entire schedule at www.kannapolisnc.gov or find it on Facebook and Twitter.&nbsp;\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Mon, 27 Jun 2022 12:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2043\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2043\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2043&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://www.kannapolisnc.gov/Community/News/ID/2044/Join-us-for-Air-Supply-Concert-at-Village-Park-this-Weekend#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Join us for Air Supply Concert at Village Park this Weekend\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://www.kannapolisnc.gov/Community/News/ID/2044/Join-us-for-Air-Supply-Concert-at-Village-Park-this-Weekend\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:580:\"Join us at 7 p.m. this Saturday, June 25 for Air Supply at Village Park!\n\nSpringer and Cagle will open the event.\n\nPlease take time to review the parking map and shuttle stops. Shuttle service will be for concertgoers only between the hours of 5-11 p.m.\n\nThis event is free to the public. Food vendors will be on site during the event, including Lil Donut Express and Triple C.\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. Bring your lawn chairs. You are also welcome to bring your own cooler - with no alcoholic beverages please. No pets or smoking please.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 23 Jun 2022 12:37:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2044\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2044\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2044&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://www.kannapolisnc.gov/Community/News/ID/2042/City-of-Kannapolis-Collecting-School-Supplies#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"City of Kannapolis Collecting School Supplies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://www.kannapolisnc.gov/Community/News/ID/2042/City-of-Kannapolis-Collecting-School-Supplies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:428:\"The Kannapolis Police Department and the Kannapolis Youth Council are spearheading a school supply collection campaign for local students.\n\n&nbsp;\n\nWe invite you to donate school supplies for children in kindergarten thru 12th grade. Please bring your donations and drop by them off in the lobby of the Kannapolis City Hall &amp; Police Department located at 401 Laureate Way.\n\n&nbsp;\n\nDonations will be accepted until July 31.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Tue, 21 Jun 2022 19:21:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2042\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2042\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2042&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://www.kannapolisnc.gov/Community/News/ID/2041/This-Weeks-Discover-Fun-in-Kannapolis-Events#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"This Week&#039;s Discover Fun in Kannapolis Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://www.kannapolisnc.gov/Community/News/ID/2041/This-Weeks-Discover-Fun-in-Kannapolis-Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2011:\"It is another great year to Discover Fun in Kannapolis. The City has announced its lineup of concerts, movies, special events, Cannon Ballers baseball and of course - fireworks for 2022. All movies and concerts are free to the public and will be held in downtown Kannapolis. Movies and concerts are held at Village Park and Veterans Park.\n\n&nbsp;\n\nThis week&rsquo;s events are:\n\n&nbsp;\n\n&nbsp;\n\nJune 21-26&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cannon Ballers Homestand\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; www.kcballers.com for tickets\n\n&nbsp;\n\nJune 23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Farmer&rsquo;s Market \n\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 4 -7 p.m. at corner of Dale Earnhardt Blvd. &amp; Vance Ave.\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Featuring live music from Jamie Brock (Nagara drums)\n&nbsp;\n\nJune 25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Free Concert in the Park: Air Supply\n\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 7 p.m. at Village Park\n\n&nbsp;\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. No pets or smoking please.\n\nOutside alcohol is not permitted. Food/Drinks will be available for purchase, or attendees can bring their own. Lawn chairs are permitted. You can download the summer&rsquo;s entire schedule at www.kannapolisnc.gov or find it on Facebook and Twitter.&nbsp;\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Mon, 20 Jun 2022 13:59:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2041\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2041\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2041&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://www.kannapolisnc.gov/Community/News/ID/2040/This-Weeks-Discover-Fun-in-Kannapolis-Events#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"This Week’s Discover Fun in Kannapolis Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://www.kannapolisnc.gov/Community/News/ID/2040/This-Weeks-Discover-Fun-in-Kannapolis-Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3249:\"It is another great year to Discover Fun in Kannapolis. The City has announced its lineup of concerts, movies, special events, Cannon Ballers baseball and of course - fireworks for 2022. All movies and concerts are free to the public and will be held in downtown Kannapolis. Movies and concerts are held at Village Park and Veterans Park.\n\n&nbsp;\n\nThis week&rsquo;s events are:\n\n&nbsp;\n\n&nbsp;\n\nJune 16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Farmer&rsquo;s Market\n\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;4 -7 p.m. at corner of Dale Earnhardt Blvd. and Vance Ave.\n\n&nbsp;\n\nJune 17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Movies in the Park: Sing 2\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 8:45 p.m. at Village Park\n\n&nbsp;\n\nJune 18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Kannapolis Police Bike Rodeo\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 10 a.m. to 12 p.m. | Advance registration required\n\n&nbsp;\n\nJune 18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Stories Under the Stars: Sharon Clarke\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7 p.m. at Kannapolis Library\n\n&nbsp;\n\nJune 19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sunday Music Series: Casear and Creole Soul\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1-3 p.m. at Veterans Park\n\n&nbsp;\n\nJune 19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Movies in the Park (En Español): Sing 2\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6 p.m. at Atrium Health Ballpark\n\n&nbsp;\n\n&nbsp;\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. No pets or smoking please.\n\nOutside alcohol is not permitted. Food/Drinks will be available for purchase, or attendees can bring their own. Lawn chairs are permitted. You can download the summer&rsquo;s entire schedule at www.kannapolisnc.gov or find it on Facebook and Twitter.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Mon, 13 Jun 2022 16:02:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2040\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2040\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2040&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://www.kannapolisnc.gov/Community/News/ID/2039/Kannapolis-Offers-Flag-Football#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Kannapolis Offers Flag Football\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://www.kannapolisnc.gov/Community/News/ID/2039/Kannapolis-Offers-Flag-Football\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:641:\"The City of Kannapolis Parks and Recreation Department has opened registration for Flag Football for children ages 5 to 14. Registration will close on July 31.\n\nThe registration fee is $40 for Kannapolis residents and $60 for non-residents, which includes the cost of uniforms, practices and games. Scholarships and sponsorships are available.\n\nPractices begin August 22 and games will start September 10. The season will end October 29. Games and practices will be held primarily at Safrit Park.\n\nVisit kannapolisnc.gov or call Parks and Recreation at 704-920-4343 to register, apply for a scholarship and sign up to be a coach or sponsor.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Mon, 13 Jun 2022 14:14:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2039\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2039\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2039&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://www.kannapolisnc.gov/Community/News/ID/2038/Kannapolis-Police-Will-Host-Free-Bike-Rodeo#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Kannapolis Police Will Host Free Bike Rodeo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://www.kannapolisnc.gov/Community/News/ID/2038/Kannapolis-Police-Will-Host-Free-Bike-Rodeo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:994:\"Children ages 5-12 are invited to join the City of Kannapolis for a bike rodeo from 10 a.m. to 12 p.m. on June 18 at the N.C. Research Campus. What is a bicycle rodeo? It&rsquo;s a free event where Kannapolis police officers show children how to ride their bicycles safely while having fun.\n\n&nbsp;\n\nThe event will take place at the Horseshoe on North Research Campus Drive. Children, and their parents, are invited to visit activity stations to learn more about helmet fittings, bike inspections, hand signals and bike safety. Children will also be able to ride along with Kannapolis police officers and participate in an obstacle course.\n\n&nbsp;\n\nPlease bring your bike and helmet to the event. There will be a limited number of helmets, donated by Safe Kids, given away during the event.\n\n&nbsp;\n\nRegistration is free and required in advance at https://anc.apm.activecommunities.com/kannapolisnc/activity/search?onlineSiteId=0&amp;locale=en-US&amp;activity_select_param=2&amp;viewMode=list.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 09 Jun 2022 19:32:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2038\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2038\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2038&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://www.kannapolisnc.gov/Community/News/ID/2037/This-Weeks-Discover-Fun-in-Kannapolis-Events#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"This Week’s Discover Fun in Kannapolis Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://www.kannapolisnc.gov/Community/News/ID/2037/This-Weeks-Discover-Fun-in-Kannapolis-Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2374:\"It is another great year to Discover Fun in Kannapolis. The City has announced its lineup of concerts, movies, special events, Cannon Ballers baseball and of course - fireworks for 2022. All movies and concerts are free to the public and will be held in downtown Kannapolis. Movies and concerts are held at Village Park and Veterans Park.\n\n&nbsp;\n\nThis week&rsquo;s events are:\n\n&nbsp;\n\nJune 7-12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cannon Ballers Homestand\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; www.kcballers.com for tickets\n\n&nbsp;\n\nJune 9 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Farmer&rsquo;s Market\n\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 4 -7 p.m. at corner of Dale Earnhardt Blvd. and Vance Ave.\n\n&nbsp;\n\nJune 9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Thursdays on Main: Gary Lowder &amp; Smokin&rsquo; Hot\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6 p.m. at Veterans Park\n\n&nbsp;\n\nJune 11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Stories Under the Stars: Rockstar Magic\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7 p.m. at Royal Oaks Elementary\n\n&nbsp;\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. No pets or smoking please.\n\nOutside alcohol is not permitted. Food/Drinks will be available for purchase, or attendees can bring their own. Lawn chairs are permitted. You can download the summer&rsquo;s entire schedule at www.kannapolisnc.gov or find it on Facebook and Twitter.&nbsp;\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Mon, 06 Jun 2022 17:04:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2037\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2037\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2037&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:153:\"https://www.kannapolisnc.gov/Community/News/ID/2036/City-of-Kannapolis-Communications-Staff-Takes-Home-State-Honors-for-the-7th-Consecutive-Year#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"City of Kannapolis Communications Staff Takes Home State Honors for the 7th Consecutive Year\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"https://www.kannapolisnc.gov/Community/News/ID/2036/City-of-Kannapolis-Communications-Staff-Takes-Home-State-Honors-for-the-7th-Consecutive-Year\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3275:\"The City of Kannapolis was among 29 North Carolina governments to earn recognition in the North Carolina City &amp; County Communicators (NC3C) 2022 Excellence in Communications Awards. Kannapolis won a total of five awards in the categories of social media, print and digital technology. This is the 7th consecutive year that the Communications staff for the City has won state honors.\n\n&nbsp;\n\nThe awards were announced during NC3C&rsquo;s 2022 annual conference in Greenville, North Carolina. All 111 award program entries were judged by professional communications peers from the Minnesota Association of Government Communicators. Work is judged, independent of the municipality&rsquo;s size, and ranked on a strict scale for its quality and documentation of achievement.\n\n&nbsp;\n\n&ldquo;The Excellence in Communications Awards are my favorite part of our annual conference, right behind seeing all my friends and colleagues from across the state,&rdquo; said outgoing NC3C President Joshua Harris, City of Lenoir, NC. &ldquo;It&rsquo;s the time when our members really get to shine for creating content that rose to the top, which is not so easy a feat in our state full of amazing local government communicators.&rdquo;\n\n&nbsp;\n\nKannapolis placed first in the category of social media campaign with their Economic Development Campaign which focused on promoting the City as a place to do business. The three-month campaign featured six local businesses/industries that are success stories &ndash; Gordon Food Company, Stewart-Haas Racing, Nostalgia Hollow, ITC, Linder, and Kontek. Each of the six Kannapolis companies covered a different sector of the business world. The social media campaign told the story of the highlighted business and why Kannapolis is their place of business. The social media campaign was a success and brought attention to the City from a national standpoint.\n\n&nbsp;\n\nA promotional video featuring the Gordon Food Company earned second place honors. The video was also used as part of the Economic Development Campaign social media campaign. The video featured top executives from the company touted the reasons why they find Kannapolis a great place to do business.\n\n&nbsp;\n\nKannapolis also placed first in the category of best single social media post with a post featuring police officers and the launch of their new electric bicycle program. The City placed second in the print category for a new brochure on the City&rsquo;s greenway system and Loop the Loop Program.\n\n&nbsp;\n\nKannapolis, along with Cabarrus County and the City of Concord won second place in the category of digital technology for the CARTology app. The CARTology app was launched to help residents with any questions or information they need regarding their garbage, recycling, bulky waste or yard waste collection. Thousands of people are using the free app and it has reduced the number of calls into the various municipality call centers.\n\n&nbsp;\n\nThe purpose of North Carolina City &amp; County Communicators is to encourage professional development and networking among local governmental communications professionals. The organization consists of professional government communicators from around the state. For more information about NC3C, visit www.nc3c.com.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Fri, 03 Jun 2022 13:12:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2036\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2036\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2036&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://www.kannapolisnc.gov/Community/News/ID/2035/Enjoy-Summer-Adventures-with-5-Kids-Fare-on-NC-By-Train#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Enjoy Summer Adventures with $5 Kids Fare on NC By Train\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://www.kannapolisnc.gov/Community/News/ID/2035/Enjoy-Summer-Adventures-with-5-Kids-Fare-on-NC-By-Train\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1125:\"Families looking for fun summer adventures can enjoy one $5 kids fare special to travel the rails on NC By Train.\n\nFrom today through Aug. 31, customers can book travel at NCByTrain.org and take advantage of the one-way $5 fare for one child age 2-12 with the purchase of a regularly priced adult ticket. Terms and conditions apply.\n\nPassengers can stop in any of the North Carolina cities below when traveling NC By Train:\n&bull;&nbsp;&nbsp; &nbsp;Charlotte\n&bull;&nbsp;&nbsp; &nbsp;Kannapolis\n&bull;&nbsp;&nbsp; &nbsp;Salisbury\n&bull;&nbsp;&nbsp; &nbsp;High Point\n&bull;&nbsp;&nbsp; &nbsp;Greensboro\n&bull;&nbsp;&nbsp; &nbsp;Burlington\n&bull;&nbsp;&nbsp; &nbsp;Durham\n&bull;&nbsp;&nbsp; &nbsp;Cary\n&bull;&nbsp;&nbsp; &nbsp;Raleigh\n&bull;&nbsp;&nbsp; &nbsp;Selma\n&bull;&nbsp;&nbsp; &nbsp;Wilson\n&bull;&nbsp;&nbsp; &nbsp;Rocky Mount\n\nDiscount fare valid for one child with each paying adult on the Piedmont and Carolinian trains. One-day advance purchase is required. Cannot be combined with other adult discounts such as seniors, state employees or veterans. For more information visit ncbytrain.org or call 1-800-BY-TRAIN.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 02 Jun 2022 18:05:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2035\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2035\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2035&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://www.kannapolisnc.gov/Community/News/ID/2034/Kannapolis-Farmers-Market-will-Feature-Live-Music#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Kannapolis Farmers Market will Feature Live Music\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://www.kannapolisnc.gov/Community/News/ID/2034/Kannapolis-Farmers-Market-will-Feature-Live-Music\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1292:\"The Kannapolis Farmers Market will now feature live music on select nights. The market is held every Thursday, 4-7 p.m. at the corner of Vance St. and Dale Earnhardt Blvd. The market continues through September.\n\n&nbsp;\n\nLocal musicians will perform on the following dates:\n\n&nbsp;\n\n\n June 2: Shannon Lee (acoustic music)\n &nbsp;\n June 23: Jamie Brock (Nagara drums)\n &nbsp;\n July 7: Chase Killough (acoustic guitar)\n &nbsp;\n July 21: Randall Sprinkle (acoustic guitar)\n &nbsp;\n August 4: Jamie Brock (Nagara drums)\n &nbsp;\n August 18: Bil Jones (country)\n &nbsp;\n September 1: Randall Sprinkle (acoustic guitar)\n &nbsp;\n September 22: Chad Andrew Harris (acoustic bluegrass and folk)\n\n\n&nbsp;\n\n&nbsp;\n\nReturning and new vendors offer a wide variety of fresh, local produce, as well as meat, eggs, spices, crafts, and prepared foods and sauces. This year, the farmers market also has more food vendors than ever before. While supplies last, customers can receive a free reusable tote bag when making a purchase of $10 or more from a new vendor.\n\n&nbsp;\n\nSign up for text message reminders and updates about the farmers market and vendor specials. Text MARKET to 855-969-4358. You may unsubscribe at any time.\n\n&nbsp;\n\nFor customers&rsquo; convenience, most vendors accept credit/debit cards.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 01 Jun 2022 19:42:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2034\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2034\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2034&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:165:\"https://www.kannapolisnc.gov/Community/News/ID/2033/Community-Bridge-Project-Launches-Community-Dialogue-Conversation-with-Kannapolis-Police-Chief-Scheduled#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"Community Bridge Project Launches &amp; Community Dialogue Conversation with Kannapolis Police Chief Scheduled\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:156:\"https://www.kannapolisnc.gov/Community/News/ID/2033/Community-Bridge-Project-Launches-Community-Dialogue-Conversation-with-Kannapolis-Police-Chief-Scheduled\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3597:\"\nFront row; Sherry Gordon, Mayor Darrell Hinnant, Gloria Talbert, Beryl Torrence, Pastor Reginald Pharr and Pastor John Leazer.\nBack row: Police Chief Terry Spry, Pastor Willie Rash, Father Joshua Gilliam, Pastor Tracy Caldwell, City Manager Mike Legg,&nbsp; and Stephen Williamson.\nNot pictured: Dr. Greg Sloop, Pastor Farrar Griggs, Jr., Pastor Ronnie Bell, and Pastor William Moody\n\n&nbsp;\n\nA group of area ministers has launched the Community Bridge Project. Their purpose is to build positive and healthy relationships among diverse groups within the Kannapolis community. The group began meeting last year after they observed the civil unrest occurring in areas around the U.S. The group will work to accomplish their goals through intentional communication, purposeful dialogue on important issues and solving conflicts.\n\n&nbsp;\n\nTheir vision statement is Building Relationships with Intentional Dialogue, Grace, and Empathy (BRIDGE).\n\n&nbsp;\n\nThe group will center their work around public education and community dialogue about topics of particular interest to people of Kannapolis and those that may have raised levels of racial tension in other areas of the country. Topics include educating the public about affordable housing and childcare, police procedures regarding traffic stops and response to incidents, job training, entrepreneurship and much more.\n\n&nbsp;\n\nMembers of the group include: Beryl Torrence, Dr. Greg Sloop, Gloria Talbert, Pastor Farrar Griggs, Jr., Pastor John Leazer, Pastor Tracy Caldwell, Pastor Ronnie Bell, Pastor Reginald Pharr, Pastor William Moody, Pastor Willie Rash, Stephen Williamson, Kannapolis Police Chief Terry Spry, Kannapolis City Manager Mike Legg, Father Joshua Gilliam, Kannapolis Mayor Darrell Hinnant and Kannapolis Community Development Program Administrator Sherry Gordon.\n\n&nbsp;\n\nCenterview Baptist Church Pastor Willie Rash, who has lived in Kannapolis for 26 years, and a member of the Community Bridge Project said, &ldquo;We believe pastors and churches have something to offer our city. We can help each other express ourselves in a peaceful way and build bridges between ourselves and our city leaders. We want to develop relationships with each other now, so that if we ever have difficulties or misunderstandings, we will be able to work through them in a positive and constructive manner.&rdquo;\n\n&nbsp;\n\n&ldquo;I have also lived in Kannapolis for over twenty years and one of the best things about our City is the sense of community we have. We are a growing City with people from many diverse backgrounds and differing views. The Community Bridge Project can help our growing community have positive interactions with each other and city staff,&rdquo; said Beryl Torrance, who is a Sunday School teacher at Journey United Methodist Church.\n\n&nbsp;\n\nTheir first event will be a community dialogue conversation with Kannapolis Police Chief Terry Spry. The conversation will take place from 6-7 p.m. on June 16 at Kannapolis Middle School. The school is located at 1000 Virginia Dare Street. The community is welcome to attend and meet the Community Bridge Project members and Chief Spry and have a conversation regarding anything related to the Kannapolis Police Department and the community.\n\n&nbsp;\n\n&ldquo;We look forward to this conversation with Chief Spry and the many more opportunities we will have to learn and work together as a community. We welcome input from everyone in our City,&rdquo; said Rash.\n\n&nbsp;\n\nFor more information on the June 16 conversation and the group send an email to ktownbridge280@gmail.com.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 01 Jun 2022 12:52:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2033\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2033\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2033&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://www.kannapolisnc.gov/Community/News/ID/2032/Citizens-Graduate-from-Kannapolis-Fire-Academy#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Citizens Graduate from Kannapolis Fire Academy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://www.kannapolisnc.gov/Community/News/ID/2032/Citizens-Graduate-from-Kannapolis-Fire-Academy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:948:\"\nFront Row (left to right): Sandra O&rsquo;Dell, Christine Drumm, Pam Overcash, Emma Greene, Gail Pieper\nBack Row: Deputy Chief Kirk Beard, Diana Shipe, Russell Hoyser, Keith, Overcash, Brian Most, Nick Smith, Division Chief Greg Summitt, Fire Chief Tracy Winecoff\nNot pictured: Ana Contreras, Carolyn Conley, Richard Conley, Logan Norris\n\n&nbsp;\n\nA number of City of Kannapolis residents have graduated from the Kannapolis Citizen Fire Academy. The academy concentrates on the services and functions of the Kannapolis Fire Department and provides citizens with a better understanding of what it takes to be a firefighter.\n\n&nbsp;\n\nCitizens participating in the free ten week fire academy toured fire stations, learned the history of fire service, fire prevention, education and investigation, emergency driving, rescue operations and more.\n\n&nbsp;\n\nThe academy will be held again in Spring 2023. Applications can be found at www.kannapolisnc.gov.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Tue, 31 May 2022 14:26:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2032\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2032\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2032&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://www.kannapolisnc.gov/Community/News/ID/2031/Memorial-Day-Ceremony-Will-Be-Held-May-30th#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Memorial Day Ceremony Will Be Held May 30th\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://www.kannapolisnc.gov/Community/News/ID/2031/Memorial-Day-Ceremony-Will-Be-Held-May-30th\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:515:\"The Kannapolis Memorial Day Ceremony will be held in Veterans Park at 12 p.m. on Monday, May 30th. The ceremony will include remarks from guest speaker Major General Charles H. Swannack Jr. of the U.S. Army. There will also be special patriotic music performances and a wreath laying ceremony.&nbsp;\n\n&nbsp;\n\nEveryone is asked to bring lawn chairs and American flags to wave during the ceremony. For more information contact Jimmy Wilson, Ceremony Organizing Chairman for the American Legion at 704-794-3417.&nbsp;\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Tue, 24 May 2022 20:02:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2031\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2031\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2031&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://www.kannapolisnc.gov/Community/News/ID/2029/City-of-Kannapolis-Police-Department-Awards-Presented#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"City of Kannapolis Police Department Awards Presented\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://www.kannapolisnc.gov/Community/News/ID/2029/City-of-Kannapolis-Police-Department-Awards-Presented\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3145:\"\nEric Albright and Officer Carson\n\n&nbsp;\n\nThe Kannapolis Police Department recently held its annual police awards ceremony. Two members of the Kannapolis Police Department were recently honored with the most prestigious awards given by the department.\n\n&nbsp;\n\nOfficer Robert Carson was presented with the Roger Dale Carter Memorial Service Award, given in memory of Kannapolis Police Officer Carter, who died in the line of duty on December 31, 1993.\n\n&nbsp;\n\nTelecommunicator Eric Albright was awarded the Norma C. Howard Memorial Service Award. Norma Howard was the first female and full-time civilian police employee in Kannapolis and was instrumental in establishing the records management system.\n\n&nbsp;\n\nThe Norma C. Howard Memorial Service Award is presented annually to a civilian police department employee who conducts both their personal and professional lives in a manner that is consistent with the department&rsquo;s values and code of ethics.\n\n&nbsp;\n\nEric is a native of Rowan County. He has completed numerous training classes at Rowan Cabarrus Community College in the areas of public and emergency services. He has been interested in the field of emergency services since he was 14 years old and has led to a career in emergency services. Eric joined the Kannapolis Police Department in 2017 as a telecommunicator and he serves as a member of the Unmanned Aerial (Drone) Systems Unit and the Search and Rescue Team. He is also a member of the Rowan County Rescue Squad. Eric is the son of Faron Albright and the late Bonnie Albright.\n\n&nbsp;\n\n&ldquo;Eric was chosen by his peers for this honor. He is recognized by his coworkers as having a strong work ethic, being a person of integrity and being dedicated to our department. He is a valued member of our Kannapolis Police Department,&rdquo; said Captain Chris Hill.\n\n&nbsp;\n\nEach year, an officer is presented with the Roger Dale Carter Memorial Service Award. Officer Robert Carson is the recipient this year. Robert has worked for the Kannapolis Police Department since 2013. He has served as a patrol officer and is currently a School Resource Officer and D.A.R.E. Officer. In his role as a School Resource/D.A.R.E. Officer Robert is in six elementary schools engaging with students and teachers daily. He is also a Crisis Negotiator for the department&rsquo;s Special Response Team. In addition to his professional duties Robert is active in the community. He spends countless hours organizing outreach events such as Toys for Tots in order to help some of the most needy people in the community.\n\n&nbsp;\n\n&ldquo;Robert is always ensuring that things that need to be done are done. He doesn&rsquo;t need to be asked. This is also true of things that need to be accomplished in the community. He learns of a need or project, and he organizes people and resources to get it done. We are very fortunate to have him here in Kannapolis,&rdquo; commented Kannapolis Police Chief Terry Spry.\n\n&nbsp;\n\nHe and his wife, Leanne, live in Kannapolis and have three children, Jack, Chase and Emma. They attend Central Baptist Church. He is the son of Raymond and Patricia Carson.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Mon, 23 May 2022 18:34:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2029\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2029&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://www.kannapolisnc.gov/Community/News/ID/2028/Kannapolis-Youth-Council-Receives-State-Charter#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Kannapolis Youth Council Receives State Charter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://www.kannapolisnc.gov/Community/News/ID/2028/Kannapolis-Youth-Council-Receives-State-Charter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2317:\"The Kannapolis Youth Council has been awarded a state charter from the N.C. Department of Administration. They are one of 24 youth councils in North Carolina. The Kannapolis Youth Council was established by the Kannapolis City Council in late 2020 and members were appointed in 2021.\n\n&nbsp;\n\nIn order to achieve state certification, the youth council completed a number of civic and social projects in 2021 including holding monthly meetings, participating in the Veterans Food Drive, conducting bloodmobiles, purchasing Christmas gifts for other youth in need and working city events such as the Tree Lighting Ceremony. The group also learned about local government and City of Kannapolis Departments such as administration, fire, police and public works.\n\n&nbsp;\n\nAs a state-charted youth council, the group will now be able to participate in state youth government learning experiences throughout the school year.\n\n&nbsp;\n\nThe City Council&rsquo;s goal for the youth council is to create opportunities for students to become engaged in leadership development, provide avenues for high school students to volunteer, develop leadership skills, develop high standards for behavior, to refine communication abilities, practice teamwork and to have a line of communication to the adult leadership in the decision-making process of the City. The formation of the Youth Council was the result of conversations between council members and area high school students.\n\n&nbsp;\n\nThe youth council is composed of high school students who reside in Kannapolis and they represent the geographic and educational diversity of the City with participants from the two public high schools located in the City, students living in the City but attending other public high schools, home school students, charter schools and private high schools.\n\n&nbsp;\n\nBrock Morgan, an A.L. Brown student, and Allison Gordon, a Northwest Cabarrus High School student, served as co-chairs of the group. Other inaugural members include:\n\nAlly Zendejas, Amber Barnes, Ashley Burris, Carly Stegall, Caroline Barlow, Celeste Martinez, Courtney Graham, Destiny Davis, Gabe Perry, Joseph Levy, Kevin Lo, Lillian Watkins, Lissette Gutierrez Cruz, Marin Powell, Nevaeh Williams, Niya Kerr, Samantha Holman, Shriya Agarwal, Trent Thompson and Yesenia Hubbard.\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 18 May 2022 20:07:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2028\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2028\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2028&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"https://www.kannapolisnc.gov/Community/News/ID/2027/City-of-Kannapolis-Receives-Prestigious-National-Award-for-Downtown-Revitalization-Project#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"City of Kannapolis Receives Prestigious National Award for  Downtown Revitalization Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"https://www.kannapolisnc.gov/Community/News/ID/2027/City-of-Kannapolis-Receives-Prestigious-National-Award-for-Downtown-Revitalization-Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1831:\"The City of Kannapolis has been honored with the prestigious American Planning Association Excellence in Economic Development Award. The City was recognized for its Downtown Master Plan which resulted in the completion of new infrastructure, the West Avenue Linear Park, the VIDA parking deck and the Atrium Health Ballpark.\n\n&nbsp;\n\nThe honor is considered the Top Award for Excellence in Best Practices that can be achieved by a City. Presented annually the award is given by the American Planning Association. &ldquo;The City of Kannapolis was selected on the basis of their written downtown master plan, the scale of the project, the successful completion and implementation of the project. The project was also noted as being a project that could be emulated and repeated elsewhere in the United States.\n\n&nbsp;\n\n&ldquo;We are excited to be recognized nationally with this award from the American Planning Association and their professional membership. We judge our success by the thousands of people enjoying our downtown weekly but it is an honor to be seen as a model for economic development on a national level. The City Council, staff and our contractors have worked very hard to ensure our downtown has something for everyone and will continue to attract businesses and people for decades to come,&rdquo; said Kannapolis Mayor Darrell Hinnant.\n\n&nbsp;\n\nThe City would like to recognize key partners of the project during its planning and construction phase including: Barton Malow, Creech, Development Finance Initiative, Land Design, Lansing Melbourne Group, Populous and Temerity.&nbsp;\n\n&nbsp;\n\nThe award was presented at the American Planning Association&rsquo;s National Conference in San Diego recently to Assistant City Manager Wilmer Melton who gave a presentation on the Downtown Revitalization Project.&nbsp;\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Tue, 17 May 2022 17:54:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2027\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2027\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2027&PortalID=0&TabID=95\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:10:{s:13:\"cache-control\";s:7:\"private\";s:12:\"content-type\";s:23:\"text/xml; charset=utf-8\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"set-cookie\";s:223:\"dnn_IsMobile=False; path=/; HttpOnly, .ASPXANONYMOUS=45nb_sKyLYdILqEuUER2BTC9Xgq_m8AbJUWLwKPCDLpaZa5RqUvrkbVGFHIvQukaAPQZ3u2csgSKDZmK9fFaK1ypFC1SvHKKxndMA2JagaZeJD_40; expires=Sun, 18-Sep-2022 00:43:00 GMT; path=/; HttpOnly\";s:18:\"x-powered-by-plesk\";s:8:\"PleskWin\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"date\";s:29:\"Sun, 10 Jul 2022 14:03:00 GMT\";s:14:\"content-length\";s:5:\"25455\";}}s:5:\"build\";s:14:\"20220218033513\";}','no'),(1840321,'c52b7b0e0_eael_updated_at','1656030088','no'),(1527937,'ai1wm_secret_key','DJ3As8VLU2Bc','yes'),(1682682,'action_scheduler_migration_status','complete','yes'),(1527941,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:326:\"<a href=\"https://lantern-realty.com/wp-content/ai1wm-backups/lantern-realty.com-20220416-153050-pe5927.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"lantern-realty.com\" download=\"lantern-realty.com-20220416-153050-pe5927.wpress\"><span>Download lantern-realty.com</span><em>Size: 1 GB</em></a>\";}','yes'),(1551673,'wpl_auto_tour','1','yes'),(1893786,'_transient_timeout_rsssl_can_use_curl_headers_check','1657654841','no'),(1893787,'_transient_rsssl_can_use_curl_headers_check','a:7:{i:0;s:25:\"Upgrade Insecure Requests\";i:1;s:16:\"X-XSS protection\";i:2;s:22:\"X-Content Type Options\";i:3;s:15:\"Referrer-Policy\";i:4;s:15:\"X-Frame-Options\";i:5;s:18:\"Permissions-Policy\";i:6;s:30:\"HTTP Strict Transport Security\";}','no'),(1834701,'58028e058_eael_updated_at','1656030088','no'),(1606175,'elementor_experiment-e_font_icon_svg','default','yes'),(1607186,'elementor_library_category_children','a:0:{}','yes'),(1607189,'baba50589_eael_updated_at','1651355543','no'),(1606176,'elementor_experiment-additional_custom_breakpoints','default','yes'),(1606177,'elementor_experiment-container','default','yes'),(1606178,'elementor_experiment-e_dom_optimization','default','yes'),(1606179,'elementor_experiment-a11y_improvements','default','yes'),(1606180,'elementor_experiment-e_import_export','default','yes'),(1606181,'elementor_experiment-e_hidden_wordpress_widgets','default','yes'),(1606182,'elementor_experiment-landing-pages','default','yes'),(1606183,'elementor_experiment-elements-color-picker','default','yes'),(1606184,'elementor_experiment-favorite-widgets','default','yes'),(1606185,'elementor_experiment-admin-top-bar','default','yes'),(1607844,'rsssl_all_tasks','1','yes'),(1606171,'elementor_google_maps_api_key','','yes'),(1606172,'elementor_font_display','auto','yes'),(1606173,'elementor_experiment-e_optimized_assets_loading','default','yes'),(1627392,'wdev_logger_wp-smushit','a:3:{s:6:\"option\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:13:\"global_module\";s:5:\"smush\";}s:7:\"modules\";a:10:{s:5:\"smush\";a:8:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:16:\"is_global_module\";b:1;s:4:\"name\";s:5:\"smush\";}s:3:\"cdn\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:3:\"cdn\";}s:4:\"lazy\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:4:\"lazy\";}s:4:\"webp\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:4:\"webp\";}s:7:\"png2jpg\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:7:\"png2jpg\";}s:6:\"resize\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:6:\"resize\";}s:3:\"dir\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:3:\"dir\";}s:6:\"backup\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:6:\"backup\";}s:3:\"api\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:3:\"api\";}s:12:\"integrations\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:12:\"integrations\";}}s:13:\"global_module\";s:5:\"smush\";}','no'),(1582763,'wpl_gmap_hits_date_14','2022-05-12','yes'),(1582764,'wpl_gmap_hits_14','1','yes'),(1607755,'WpFastestCacheCDN','[{\"id\":\"photon\",\"cdnurl\":\"http:\\/\\/i0.wp.com\\/lantern-realty.com\",\"originurl\":\"lantern-realty.com\",\"file_types\":\"gif,jpeg,jpg,png\",\"keywords\":\"\",\"excludekeywords\":\"\"}]','yes'),(1913082,'_transient_timeout_global_styles_houzez','1657490925','no'),(1913083,'_transient_global_styles_houzez','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(1787437,'_transient_timeout_feed_mod_31cf07fc8144de8a7ff49e57a683f0de','1657504980','no'),(1787438,'_transient_feed_mod_31cf07fc8144de8a7ff49e57a683f0de','1657461780','no'),(1896831,'_transient_tsf_exclude_1_1_en_us','a:2:{s:7:\"archive\";a:0:{}s:6:\"search\";a:3:{i:0;i:1217;i:1;i:916;i:2;i:1175;}}','yes'),(1912968,'_transient_timeout_ihf_cache_11b53b4ccf791dcf849991f45df45f06','1657492027','no'),(1912969,'_transient_ihf_cache_11b53b4ccf791dcf849991f45df45f06','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";s:29:\"Sun, 10 Jul 2022 21:27:07 GMT\";s:12:\"content-type\";s:22:\"text/xml;charset=UTF-8\";s:16:\"content-language\";s:2:\"en\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:3:\"p3p\";s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901799449; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:27:07 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NGNjNTgzOTgtNzU5Ny00NDRiLTg1ODEtZDllMTkxNGI1Yzg4; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=SxnIIM18r3ktqYuMNWN31TiydeeP02YRZAjvFVx3.sA-1657488427-0-ATKOS+qX11tHTlFHTHanvee3grh2luyhVZR1mlZMQLA7XiFi4P1uFOILj5ybb4ao3hh9+UJdpY25dJb7AE5vcYI=; path=/; expires=Sun, 10-Jul-22 21:57:07 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";s:7:\"DYNAMIC\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"728c61aefab47ee9-LAX\";s:16:\"content-encoding\";s:2:\"br\";}}s:4:\"body\";s:1195:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <ihf-two-line-quick-search> Loading... <script>document.currentScript.parentElement.config={host:\"https://www.idxhome.com\",clientId:123710,sessionId:\"4cc58398-7597-444b-8581-d9e1914b5c88\",leadCaptureUserId:8901799449,showPropertyType:false};</script> </ihf-two-line-quick-search> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901799449</leadCaptureId> <ihfSessionId>4cc58398-7597-444b-8581-d9e1914b5c88</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657445852448</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657445852448</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657445852448</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:3:{i:0;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901799449\";s:7:\"expires\";i:1689024427;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:1;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NGNjNTgzOTgtNzU5Ny00NDRiLTg1ODEtZDllMTkxNGI1Yzg4\";s:7:\"expires\";N;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:2;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"SxnIIM18r3ktqYuMNWN31TiydeeP02YRZAjvFVx3.sA-1657488427-0-ATKOS qX11tHTlFHTHanvee3grh2luyhVZR1mlZMQLA7XiFi4P1uFOILj5ybb4ao3hh9 UJdpY25dJb7AE5vcYI=\";s:7:\"expires\";i:1657490227;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:11:\"idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:0;}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:1195:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <ihf-two-line-quick-search> Loading... <script>document.currentScript.parentElement.config={host:\"https://www.idxhome.com\",clientId:123710,sessionId:\"4cc58398-7597-444b-8581-d9e1914b5c88\",leadCaptureUserId:8901799449,showPropertyType:false};</script> </ihf-two-line-quick-search> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901799449</leadCaptureId> <ihfSessionId>4cc58398-7597-444b-8581-d9e1914b5c88</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657445852448</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657445852448</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657445852448</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:3:\"raw\";s:2169:\"HTTP/1.1 200 OK\r\nDate: Sun, 10 Jul 2022 21:27:07 GMT\r\nContent-Type: text/xml;charset=UTF-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nContent-Language: en\r\nVary: Accept-Encoding\r\nP3P: CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\r\nSet-Cookie: cuser123710=8901799449; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:27:07 GMT; Path=/; SameSite=None; Secure\r\nCF-Cache-Status: DYNAMIC\r\nExpect-CT: max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\r\nSet-Cookie: SESSION=NGNjNTgzOTgtNzU5Ny00NDRiLTg1ODEtZDllMTkxNGI1Yzg4; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\r\nSet-Cookie: __cf_bm=SxnIIM18r3ktqYuMNWN31TiydeeP02YRZAjvFVx3.sA-1657488427-0-ATKOS+qX11tHTlFHTHanvee3grh2luyhVZR1mlZMQLA7XiFi4P1uFOILj5ybb4ao3hh9+UJdpY25dJb7AE5vcYI=; path=/; expires=Sun, 10-Jul-22 21:57:07 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\r\nServer: cloudflare\r\nCF-RAY: 728c61aefab47ee9-LAX\r\nContent-Encoding: br\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <ihf-two-line-quick-search> Loading... <script>document.currentScript.parentElement.config={host:\"https://www.idxhome.com\",clientId:123710,sessionId:\"4cc58398-7597-444b-8581-d9e1914b5c88\",leadCaptureUserId:8901799449,showPropertyType:false};</script> </ihf-two-line-quick-search> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901799449</leadCaptureId> <ihfSessionId>4cc58398-7597-444b-8581-d9e1914b5c88</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657445852448</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657445852448</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657445852448</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";a:1:{i:0;s:29:\"Sun, 10 Jul 2022 21:27:07 GMT\";}s:12:\"content-type\";a:1:{i:0;s:22:\"text/xml;charset=UTF-8\";}s:16:\"content-language\";a:1:{i:0;s:2:\"en\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:3:\"p3p\";a:1:{i:0;s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";}s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901799449; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:27:07 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NGNjNTgzOTgtNzU5Ny00NDRiLTg1ODEtZDllMTkxNGI1Yzg4; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=SxnIIM18r3ktqYuMNWN31TiydeeP02YRZAjvFVx3.sA-1657488427-0-ATKOS+qX11tHTlFHTHanvee3grh2luyhVZR1mlZMQLA7XiFi4P1uFOILj5ybb4ao3hh9+UJdpY25dJb7AE5vcYI=; path=/; expires=Sun, 10-Jul-22 21:57:07 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";a:1:{i:0;s:7:\"DYNAMIC\";}s:9:\"expect-ct\";a:1:{i:0;s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";}s:6:\"server\";a:1:{i:0;s:10:\"cloudflare\";}s:6:\"cf-ray\";a:1:{i:0;s:20:\"728c61aefab47ee9-LAX\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:234:\"https://www.idxhome.com/service/wordpress?requestType=listing-search-form&smallView=true&style=twoline&showPropertyType=false&authenticationToken=57ba1f9b-a303-4b2e-90eb-792602d7dc93&version=7.1.0&leadCaptureSupport=true&phpStyle=true\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:3:{s:11:\"cuser123710\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901799449\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"max-age\";i:1689024427;s:7:\"expires\";i:1689024427;s:4:\"path\";s:1:\"/\";s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657488427;s:11:\"last-access\";i:1657488427;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657488427;}s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NGNjNTgzOTgtNzU5Ny00NDRiLTg1ODEtZDllMTkxNGI1Yzg4\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:5:{s:4:\"path\";s:1:\"/\";s:8:\"httponly\";b:1;s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657488427;s:11:\"last-access\";i:1657488427;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657488427;}s:7:\"__cf_bm\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"SxnIIM18r3ktqYuMNWN31TiydeeP02YRZAjvFVx3.sA-1657488427-0-ATKOS+qX11tHTlFHTHanvee3grh2luyhVZR1mlZMQLA7XiFi4P1uFOILj5ybb4ao3hh9+UJdpY25dJb7AE5vcYI=\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:4:\"path\";s:1:\"/\";s:7:\"expires\";i:1657490227;s:6:\"domain\";s:11:\"idxhome.com\";s:8:\"httponly\";b:1;s:6:\"secure\";b:1;s:8:\"samesite\";s:4:\"None\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657488427;s:11:\"last-access\";i:1657488427;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1657488427;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(1913015,'_transient_timeout_ihf_cache_fcf02c83b3238c61960dddcc84ec7c53','1657491249','no');
INSERT INTO `lrwp_options` VALUES (1913016,'_transient_ihf_cache_fcf02c83b3238c61960dddcc84ec7c53','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";s:29:\"Sun, 10 Jul 2022 21:44:09 GMT\";s:12:\"content-type\";s:22:\"text/xml;charset=UTF-8\";s:16:\"content-language\";s:2:\"en\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:3:\"p3p\";s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901884996; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:44:08 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NGM0MmZmMTEtY2NiMS00ZjBlLTg5MmUtYWZkNDhkOTE0OGMy; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=KV5tuObbJ6F4vp1YPmYxIFXg6M16pWghxNJNTkaL.qE-1657489449-0-AfBLdHO+5N3uJQkAHCpxOuls1tIl/8/XlHwc0TdLX5KnJ8hGMrUrxeZcI5I9oL2h3GkrkLz1lbuP4xDUyKVjEeU=; path=/; expires=Sun, 10-Jul-22 22:14:09 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";s:7:\"DYNAMIC\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"728c7a9fbdc27d7a-LAX\";s:16:\"content-encoding\";s:2:\"br\";}}s:4:\"body\";s:8132:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <div id=\"ihf-main-container\" class=\"ihf-container ihf-color-scheme-blue\"> <div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881311\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"247900.00\" data-ihf-listing-address=\"201 Mcgill Avenue, Concord, NC 28025\" data-ihf-listing-postal-code=\"28025\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\" class=\"ihf-txt-uc\"> 201 Mcgill Avenue, Concord, NC 28025 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/c8ec286d-0617-4463-a203-826863679a86.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $247,900 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,377 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881917\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"429999.00\" data-ihf-listing-address=\"6603 Reedy Creek Road, Charlotte, NC 28215\" data-ihf-listing-postal-code=\"28215\" data-ihf-listing-agent-code=\"79218\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\" class=\"ihf-txt-uc\"> 6603 Reedy Creek Road, Charlotte, NC 28215 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $429,999 </span> (Coming Soon) </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 2,223 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3879835\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"615000.00\" data-ihf-listing-address=\"1825 Archdale Drive, Charlotte, NC 28210\" data-ihf-listing-postal-code=\"28210\" data-ihf-listing-agent-code=\"63290\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\" class=\"ihf-txt-uc\"> 1825 Archdale Drive, Charlotte, NC 28210 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/8f109679-0c63-4662-adaf-4680c44c3960.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $615,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,477 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3878653\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"235000.00\" data-ihf-listing-address=\"2125 Daugherty Road, China Grove, NC 28023\" data-ihf-listing-postal-code=\"28023\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\" class=\"ihf-txt-uc\"> 2125 Daugherty Road, China Grove, NC 28023 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/4e5c6c28-444c-4a8c-acd1-67c4625966d6.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $235,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,572 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> </div> </div> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901884996</leadCaptureId> <ihfSessionId>4c42ff11-ccb1-4f0e-892e-afd48d9148c2</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657447646076</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657447646076</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657447646076</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:3:{i:0;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901884996\";s:7:\"expires\";i:1689025448;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:1;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NGM0MmZmMTEtY2NiMS00ZjBlLTg5MmUtYWZkNDhkOTE0OGMy\";s:7:\"expires\";N;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:2;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"KV5tuObbJ6F4vp1YPmYxIFXg6M16pWghxNJNTkaL.qE-1657489449-0-AfBLdHO 5N3uJQkAHCpxOuls1tIl/8/XlHwc0TdLX5KnJ8hGMrUrxeZcI5I9oL2h3GkrkLz1lbuP4xDUyKVjEeU=\";s:7:\"expires\";i:1657491249;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:11:\"idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:0;}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:8132:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <div id=\"ihf-main-container\" class=\"ihf-container ihf-color-scheme-blue\"> <div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881311\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"247900.00\" data-ihf-listing-address=\"201 Mcgill Avenue, Concord, NC 28025\" data-ihf-listing-postal-code=\"28025\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\" class=\"ihf-txt-uc\"> 201 Mcgill Avenue, Concord, NC 28025 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/c8ec286d-0617-4463-a203-826863679a86.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $247,900 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,377 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881917\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"429999.00\" data-ihf-listing-address=\"6603 Reedy Creek Road, Charlotte, NC 28215\" data-ihf-listing-postal-code=\"28215\" data-ihf-listing-agent-code=\"79218\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\" class=\"ihf-txt-uc\"> 6603 Reedy Creek Road, Charlotte, NC 28215 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $429,999 </span> (Coming Soon) </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 2,223 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3879835\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"615000.00\" data-ihf-listing-address=\"1825 Archdale Drive, Charlotte, NC 28210\" data-ihf-listing-postal-code=\"28210\" data-ihf-listing-agent-code=\"63290\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\" class=\"ihf-txt-uc\"> 1825 Archdale Drive, Charlotte, NC 28210 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/8f109679-0c63-4662-adaf-4680c44c3960.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $615,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,477 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3878653\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"235000.00\" data-ihf-listing-address=\"2125 Daugherty Road, China Grove, NC 28023\" data-ihf-listing-postal-code=\"28023\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\" class=\"ihf-txt-uc\"> 2125 Daugherty Road, China Grove, NC 28023 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/4e5c6c28-444c-4a8c-acd1-67c4625966d6.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $235,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,572 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> </div> </div> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901884996</leadCaptureId> <ihfSessionId>4c42ff11-ccb1-4f0e-892e-afd48d9148c2</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657447646076</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657447646076</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657447646076</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:3:\"raw\";s:9106:\"HTTP/1.1 200 OK\r\nDate: Sun, 10 Jul 2022 21:44:09 GMT\r\nContent-Type: text/xml;charset=UTF-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nContent-Language: en\r\nVary: Accept-Encoding\r\nP3P: CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\r\nSet-Cookie: cuser123710=8901884996; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:44:08 GMT; Path=/; SameSite=None; Secure\r\nCF-Cache-Status: DYNAMIC\r\nExpect-CT: max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\r\nSet-Cookie: SESSION=NGM0MmZmMTEtY2NiMS00ZjBlLTg5MmUtYWZkNDhkOTE0OGMy; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\r\nSet-Cookie: __cf_bm=KV5tuObbJ6F4vp1YPmYxIFXg6M16pWghxNJNTkaL.qE-1657489449-0-AfBLdHO+5N3uJQkAHCpxOuls1tIl/8/XlHwc0TdLX5KnJ8hGMrUrxeZcI5I9oL2h3GkrkLz1lbuP4xDUyKVjEeU=; path=/; expires=Sun, 10-Jul-22 22:14:09 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\r\nServer: cloudflare\r\nCF-RAY: 728c7a9fbdc27d7a-LAX\r\nContent-Encoding: br\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <div id=\"ihf-main-container\" class=\"ihf-container ihf-color-scheme-blue\"> <div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881311\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"247900.00\" data-ihf-listing-address=\"201 Mcgill Avenue, Concord, NC 28025\" data-ihf-listing-postal-code=\"28025\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\" class=\"ihf-txt-uc\"> 201 Mcgill Avenue, Concord, NC 28025 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/c8ec286d-0617-4463-a203-826863679a86.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $247,900 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,377 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881917\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"429999.00\" data-ihf-listing-address=\"6603 Reedy Creek Road, Charlotte, NC 28215\" data-ihf-listing-postal-code=\"28215\" data-ihf-listing-agent-code=\"79218\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\" class=\"ihf-txt-uc\"> 6603 Reedy Creek Road, Charlotte, NC 28215 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $429,999 </span> (Coming Soon) </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 2,223 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3879835\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"615000.00\" data-ihf-listing-address=\"1825 Archdale Drive, Charlotte, NC 28210\" data-ihf-listing-postal-code=\"28210\" data-ihf-listing-agent-code=\"63290\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\" class=\"ihf-txt-uc\"> 1825 Archdale Drive, Charlotte, NC 28210 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/8f109679-0c63-4662-adaf-4680c44c3960.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $615,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,477 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3878653\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"235000.00\" data-ihf-listing-address=\"2125 Daugherty Road, China Grove, NC 28023\" data-ihf-listing-postal-code=\"28023\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\" class=\"ihf-txt-uc\"> 2125 Daugherty Road, China Grove, NC 28023 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/4e5c6c28-444c-4a8c-acd1-67c4625966d6.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $235,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,572 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> </div> </div> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901884996</leadCaptureId> <ihfSessionId>4c42ff11-ccb1-4f0e-892e-afd48d9148c2</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657447646076</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657447646076</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657447646076</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";a:1:{i:0;s:29:\"Sun, 10 Jul 2022 21:44:09 GMT\";}s:12:\"content-type\";a:1:{i:0;s:22:\"text/xml;charset=UTF-8\";}s:16:\"content-language\";a:1:{i:0;s:2:\"en\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:3:\"p3p\";a:1:{i:0;s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";}s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901884996; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:44:08 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NGM0MmZmMTEtY2NiMS00ZjBlLTg5MmUtYWZkNDhkOTE0OGMy; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=KV5tuObbJ6F4vp1YPmYxIFXg6M16pWghxNJNTkaL.qE-1657489449-0-AfBLdHO+5N3uJQkAHCpxOuls1tIl/8/XlHwc0TdLX5KnJ8hGMrUrxeZcI5I9oL2h3GkrkLz1lbuP4xDUyKVjEeU=; path=/; expires=Sun, 10-Jul-22 22:14:09 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";a:1:{i:0;s:7:\"DYNAMIC\";}s:9:\"expect-ct\";a:1:{i:0;s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";}s:6:\"server\";a:1:{i:0;s:10:\"cloudflare\";}s:6:\"cf-ray\";a:1:{i:0;s:20:\"728c7a9fbdc27d7a-LAX\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:229:\"https://www.idxhome.com/service/wordpress?requestType=featured-search&startRowNumber=1&numListingsLimit=4&smallView=true&authenticationToken=57ba1f9b-a303-4b2e-90eb-792602d7dc93&version=7.1.0&leadCaptureSupport=true&phpStyle=true\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:3:{s:11:\"cuser123710\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901884996\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"max-age\";i:1689025449;s:7:\"expires\";i:1689025448;s:4:\"path\";s:1:\"/\";s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489449;s:11:\"last-access\";i:1657489449;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657489449;}s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NGM0MmZmMTEtY2NiMS00ZjBlLTg5MmUtYWZkNDhkOTE0OGMy\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:5:{s:4:\"path\";s:1:\"/\";s:8:\"httponly\";b:1;s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489449;s:11:\"last-access\";i:1657489449;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657489449;}s:7:\"__cf_bm\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"KV5tuObbJ6F4vp1YPmYxIFXg6M16pWghxNJNTkaL.qE-1657489449-0-AfBLdHO+5N3uJQkAHCpxOuls1tIl/8/XlHwc0TdLX5KnJ8hGMrUrxeZcI5I9oL2h3GkrkLz1lbuP4xDUyKVjEeU=\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:4:\"path\";s:1:\"/\";s:7:\"expires\";i:1657491249;s:6:\"domain\";s:11:\"idxhome.com\";s:8:\"httponly\";b:1;s:6:\"secure\";b:1;s:8:\"samesite\";s:4:\"None\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489449;s:11:\"last-access\";i:1657489449;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1657489449;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(1913086,'_transient_doing_cron','1657576762.9578840732574462890625','yes');
/*!40000 ALTER TABLE `lrwp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_pda_passwords`
--

DROP TABLE IF EXISTS `lrwp_pda_passwords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pda_passwords` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `post_id` mediumint(9) NOT NULL,
  `contact_id` mediumint(9) DEFAULT NULL,
  `campaign_app_type` text COLLATE utf8mb4_unicode_ci DEFAULT '',
  `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `is_activated` tinyint(1) DEFAULT 1,
  `created_time` bigint(20) DEFAULT NULL,
  `expired_time` bigint(20) DEFAULT NULL,
  `hits_count` mediumint(9) NOT NULL,
  `is_default` tinyint(1) DEFAULT 0,
  `expired_date` bigint(20) DEFAULT NULL,
  `usage_limit` mediumint(9) DEFAULT NULL,
  `label` tinytext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `post_types` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pda_passwords`
--

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

--
-- Table structure for table `lrwp_pm_activities`
--

DROP TABLE IF EXISTS `lrwp_pm_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_activities` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `actor_id` int(11) unsigned NOT NULL,
  `action` varchar(255) NOT NULL,
  `action_type` varchar(255) NOT NULL,
  `resource_id` int(11) unsigned DEFAULT NULL,
  `resource_type` varchar(255) DEFAULT NULL,
  `meta` text DEFAULT NULL,
  `project_id` int(11) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`),
  KEY `actor_id` (`actor_id`),
  KEY `resource_id` (`resource_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_activities`
--

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

--
-- Table structure for table `lrwp_pm_assignees`
--

DROP TABLE IF EXISTS `lrwp_pm_assignees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_assignees` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(11) unsigned NOT NULL,
  `assigned_to` int(11) unsigned NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `assigned_at` timestamp NULL DEFAULT NULL,
  `started_at` timestamp NULL DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `project_id` int(11) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `task_id` (`task_id`),
  KEY `assigned_to` (`assigned_to`),
  KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_assignees`
--

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

--
-- Table structure for table `lrwp_pm_boardables`
--

DROP TABLE IF EXISTS `lrwp_pm_boardables`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_boardables` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `board_id` int(11) unsigned NOT NULL,
  `board_type` varchar(255) NOT NULL,
  `boardable_id` int(11) unsigned NOT NULL,
  `boardable_type` varchar(255) NOT NULL,
  `order` int(11) NOT NULL DEFAULT 0,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `board_id` (`board_id`),
  KEY `boardable_id` (`boardable_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_boardables`
--

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

--
-- Table structure for table `lrwp_pm_boards`
--

DROP TABLE IF EXISTS `lrwp_pm_boards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_boards` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `order` int(11) unsigned DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `status` tinyint(2) unsigned NOT NULL DEFAULT 1,
  `is_private` tinyint(2) unsigned DEFAULT 0,
  `project_id` int(11) unsigned NOT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_boards`
--

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

--
-- Table structure for table `lrwp_pm_capabilities`
--

DROP TABLE IF EXISTS `lrwp_pm_capabilities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_capabilities` (
  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_capabilities`
--

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

--
-- Table structure for table `lrwp_pm_categories`
--

DROP TABLE IF EXISTS `lrwp_pm_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_categories` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `categorible_type` varchar(255) DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_categories`
--

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

--
-- Table structure for table `lrwp_pm_category_project`
--

DROP TABLE IF EXISTS `lrwp_pm_category_project`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_category_project` (
  `project_id` int(11) unsigned NOT NULL,
  `category_id` int(11) unsigned NOT NULL,
  KEY `project_id` (`project_id`),
  KEY `category_id` (`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_category_project`
--

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

--
-- Table structure for table `lrwp_pm_comments`
--

DROP TABLE IF EXISTS `lrwp_pm_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_comments` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `content` text NOT NULL,
  `mentioned_users` varchar(255) DEFAULT NULL,
  `commentable_id` int(11) unsigned NOT NULL,
  `commentable_type` varchar(255) NOT NULL,
  `project_id` int(11) unsigned NOT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`),
  KEY `commentable_id` (`commentable_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_comments`
--

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

--
-- Table structure for table `lrwp_pm_files`
--

DROP TABLE IF EXISTS `lrwp_pm_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_files` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `fileable_id` int(11) DEFAULT NULL,
  `fileable_type` varchar(255) DEFAULT NULL,
  `type` varchar(255) NOT NULL DEFAULT 'file',
  `attachment_id` bigint(20) DEFAULT NULL,
  `parent` int(11) NOT NULL DEFAULT 0,
  `project_id` int(11) unsigned DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`),
  KEY `fileable_id` (`fileable_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_files`
--

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

--
-- Table structure for table `lrwp_pm_imports`
--

DROP TABLE IF EXISTS `lrwp_pm_imports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_imports` (
  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(40) NOT NULL,
  `remote_id` varchar(150) NOT NULL,
  `local_id` varchar(150) NOT NULL,
  `creator_id` int(15) unsigned DEFAULT NULL,
  `source` varchar(30) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_imports`
--

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

--
-- Table structure for table `lrwp_pm_meta`
--

DROP TABLE IF EXISTS `lrwp_pm_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_meta` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int(11) unsigned NOT NULL,
  `entity_type` varchar(255) NOT NULL,
  `meta_key` varchar(255) NOT NULL,
  `meta_value` text DEFAULT NULL,
  `project_id` int(11) unsigned DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entity_id` (`entity_id`),
  KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_meta`
--

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

--
-- Table structure for table `lrwp_pm_projects`
--

DROP TABLE IF EXISTS `lrwp_pm_projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_projects` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `budget` double(8,2) DEFAULT NULL,
  `pay_rate` double(8,2) DEFAULT NULL,
  `est_completion_date` timestamp NULL DEFAULT NULL,
  `color_code` varchar(255) DEFAULT NULL,
  `order` tinyint(4) DEFAULT NULL,
  `projectable_type` varchar(255) DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_projects`
--

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

--
-- Table structure for table `lrwp_pm_role_project`
--

DROP TABLE IF EXISTS `lrwp_pm_role_project`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_role_project` (
  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(20) unsigned NOT NULL,
  `role_id` int(20) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_role_project`
--

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

--
-- Table structure for table `lrwp_pm_role_project_capabilities`
--

DROP TABLE IF EXISTS `lrwp_pm_role_project_capabilities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_role_project_capabilities` (
  `role_project_id` int(20) unsigned NOT NULL,
  `capability_id` int(20) unsigned NOT NULL,
  KEY `role_project_id` (`role_project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_role_project_capabilities`
--

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

--
-- Table structure for table `lrwp_pm_role_project_users`
--

DROP TABLE IF EXISTS `lrwp_pm_role_project_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_role_project_users` (
  `role_project_id` int(20) unsigned NOT NULL,
  `user_id` int(20) unsigned NOT NULL,
  KEY `role_project_id` (`role_project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_role_project_users`
--

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

--
-- Table structure for table `lrwp_pm_role_user`
--

DROP TABLE IF EXISTS `lrwp_pm_role_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_role_user` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) unsigned NOT NULL,
  `role_id` int(11) unsigned NOT NULL,
  `project_id` int(11) unsigned DEFAULT NULL,
  `assigned_by` int(11) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`),
  KEY `role_id` (`role_id`),
  KEY `user_id` (`user_id`),
  KEY `assigned_by` (`assigned_by`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_role_user`
--

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

--
-- Table structure for table `lrwp_pm_roles`
--

DROP TABLE IF EXISTS `lrwp_pm_roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_roles` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `status` tinyint(2) unsigned NOT NULL DEFAULT 1,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_roles`
--

LOCK TABLES `lrwp_pm_roles` WRITE;
/*!40000 ALTER TABLE `lrwp_pm_roles` DISABLE KEYS */;
INSERT INTO `lrwp_pm_roles` VALUES (1,'Manager','manager','Manager is a person who manages the project.',1,1,1,'2020-10-11 00:17:12','2020-10-11 00:17:12'),(2,'Co-Worker','co_worker','Co-worker is person who works under a project.',1,1,1,'2020-10-11 00:17:12','2020-10-11 00:17:12');
/*!40000 ALTER TABLE `lrwp_pm_roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_pm_settings`
--

DROP TABLE IF EXISTS `lrwp_pm_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_settings` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) NOT NULL,
  `value` text DEFAULT NULL,
  `project_id` int(11) unsigned DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_settings`
--

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

--
-- Table structure for table `lrwp_pm_task_type_task`
--

DROP TABLE IF EXISTS `lrwp_pm_task_type_task`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_task_type_task` (
  `type_id` int(11) unsigned NOT NULL,
  `task_id` int(11) unsigned NOT NULL,
  `project_id` int(11) unsigned NOT NULL,
  `list_id` int(11) unsigned NOT NULL,
  UNIQUE KEY `task_id` (`task_id`),
  KEY `type_id` (`type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_task_type_task`
--

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

--
-- Table structure for table `lrwp_pm_task_types`
--

DROP TABLE IF EXISTS `lrwp_pm_task_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_task_types` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `type` varchar(255) NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_task_types`
--

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

--
-- Table structure for table `lrwp_pm_tasks`
--

DROP TABLE IF EXISTS `lrwp_pm_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_tasks` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `estimation` int(11) DEFAULT 0,
  `start_at` timestamp NULL DEFAULT NULL,
  `due_date` timestamp NULL DEFAULT NULL,
  `complexity` tinyint(4) DEFAULT NULL,
  `priority` tinyint(4) NOT NULL DEFAULT 1,
  `payable` tinyint(1) NOT NULL DEFAULT 0,
  `recurrent` tinyint(1) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `is_private` tinyint(2) unsigned DEFAULT 0,
  `project_id` int(11) unsigned NOT NULL,
  `parent_id` int(11) unsigned NOT NULL DEFAULT 0,
  `completed_by` int(11) unsigned DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_tasks`
--

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

--
-- Table structure for table `lrwp_postmeta`
--

DROP TABLE IF EXISTS `lrwp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=15088 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_postmeta`
--

LOCK TABLES `lrwp_postmeta` WRITE;
/*!40000 ALTER TABLE `lrwp_postmeta` DISABLE KEYS */;
INSERT INTO `lrwp_postmeta` VALUES (182,2,'_edit_last','1'),(1040,3,'_edit_last','1'),(3,4,'_menu_item_type','custom'),(4,4,'_menu_item_menu_item_parent','0'),(5,4,'_menu_item_object_id','4'),(6,4,'_menu_item_object','custom'),(7,4,'_menu_item_target',''),(8,4,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9,4,'_menu_item_xfn',''),(10,4,'_menu_item_url','/'),(11,5,'_menu_item_type','custom'),(12,5,'_menu_item_menu_item_parent','0'),(13,5,'_menu_item_object_id','5'),(14,5,'_menu_item_object','custom'),(15,5,'_menu_item_target',''),(16,5,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(17,5,'_menu_item_xfn',''),(18,5,'_menu_item_url','/lantern-listings/'),(19,6,'_menu_item_type','custom'),(20,6,'_menu_item_menu_item_parent','0'),(21,6,'_menu_item_object_id','6'),(22,6,'_menu_item_object','custom'),(23,6,'_menu_item_target',''),(24,6,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(25,6,'_menu_item_xfn',''),(26,6,'_menu_item_url','#'),(27,7,'_menu_item_type','custom'),(28,7,'_menu_item_menu_item_parent','6'),(29,7,'_menu_item_object_id','7'),(30,7,'_menu_item_object','custom'),(31,7,'_menu_item_target',''),(32,7,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(33,7,'_menu_item_xfn',''),(34,7,'_menu_item_url','/homes-for-sale-search/'),(665,172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:265;s:4:\"file\";s:47:\"2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-300x114.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-768x291.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"lantern_3_REV_LOGO-1-e1535144736200-1024x388.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-1-e1535144736200-150x57.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:48:\"lantern_3_REV_LOGO-1-e1535144736200-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:48:\"lantern_3_REV_LOGO-1-e1535144736200-1170x629.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:48:\"lantern_3_REV_LOGO-1-e1535144736200-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-350x133.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:48:\"lantern_3_REV_LOGO-1-e1535144736200-1267x480.jpg\";s:5:\"width\";i:1267;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"faraz ali\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1526127625\";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:{}}}'),(664,172,'_wp_attached_file','2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg'),(1321,373,'fave_agent_position','Licensed Agent'),(1322,373,'fave_agent_company','Lantern Realty and Development'),(1323,373,'fave_agent_mobile','(704) 795-8017'),(744,206,'_menu_item_target',''),(743,206,'_menu_item_object','custom'),(742,206,'_menu_item_object_id','206'),(741,206,'_menu_item_menu_item_parent','6'),(740,206,'_menu_item_type','custom'),(501,150,'_menu_item_target',''),(500,150,'_menu_item_object','custom'),(499,150,'_menu_item_object_id','150'),(498,150,'_menu_item_menu_item_parent','5'),(497,150,'_menu_item_type','custom'),(1320,373,'fave_agent_email','cindy.s.widenhouse@gmail.com'),(1332,378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:528;s:6:\"height\";i:527;s:4:\"file\";s:28:\"2018/11/Courtney_Hedrick.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-528x340.jpg\";s:5:\"width\";i:528;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-528x430.jpg\";s:5:\"width\";i:528;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-350x349.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-481x480.jpg\";s:5:\"width\";i:481;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1541171075\";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:{}}}'),(83,14,'_menu_item_type','custom'),(84,14,'_menu_item_menu_item_parent','156'),(85,14,'_menu_item_object_id','14'),(86,14,'_menu_item_object','custom'),(87,14,'_menu_item_target',''),(88,14,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(89,14,'_menu_item_xfn',''),(90,14,'_menu_item_url','/property-organizer-login/'),(91,15,'_menu_item_type','custom'),(92,15,'_menu_item_menu_item_parent','157'),(93,15,'_menu_item_object_id','15'),(94,15,'_menu_item_object','custom'),(95,15,'_menu_item_target',''),(96,15,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(97,15,'_menu_item_xfn',''),(98,15,'_menu_item_url','/valuation-form/'),(99,16,'_menu_item_type','custom'),(100,16,'_menu_item_menu_item_parent','0'),(101,16,'_menu_item_object_id','16'),(102,16,'_menu_item_object','custom'),(103,16,'_menu_item_target',''),(104,16,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(105,16,'_menu_item_xfn',''),(106,16,'_menu_item_url','/contact-form/'),(111,20,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(112,20,'_mail','a:8:{s:7:\"subject\";s:47:\"Lantern Realty and Development \"[your-subject]\"\";s:6:\"sender\";s:42:\"[your-name] <wordpress@lantern-realty.com>\";s:4:\"body\";s:194:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Lantern Realty and Development (http://lantern-realty.com)\";s:9:\"recipient\";s:20:\"ckeziah127@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(113,20,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:47:\"Lantern Realty and Development \"[your-subject]\"\";s:6:\"sender\";s:61:\"Lantern Realty and Development <wordpress@lantern-realty.com>\";s:4:\"body\";s:136:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Lantern Realty and Development (http://lantern-realty.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:30:\"Reply-To: ckeziah127@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(114,20,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),(115,20,'_additional_settings',NULL),(116,20,'_locale','en_US'),(117,21,'_wp_attached_file','2018/08/lantern_3_REV_LOGO-e1534726093274.jpg'),(118,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:114;s:4:\"file\";s:45:\"2018/08/lantern_3_REV_LOGO-e1534726093274.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-300x114.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-768x292.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:389;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"lantern_3_REV_LOGO-e1534726071387-150x57.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1534726071387-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1534726071387-1170x601.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1534726071387-1440x601.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-350x133.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1534726071387-1263x480.jpg\";s:5:\"width\";i:1263;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"faraz ali\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1526127625\";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:{}}}'),(119,21,'_edit_lock','1534726131:1'),(120,21,'_wp_attachment_backup_sizes','a:18:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2229;s:6:\"height\";i:1287;s:4:\"file\";s:22:\"lantern_3_REV_LOGO.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-768x443.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1024x591.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:29:\"lantern_3_REV_LOGO-150x87.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-single-big-size-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"houzez-property-thumb-image-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-thumb-image-v2-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image570_340-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-detail-gallery-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"houzez-imageSize1170_738-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-prop_image1440_610-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image350_350-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-widget-prop-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-350x202.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-toparea-v5-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-831x480.jpg\";s:5:\"width\";i:831;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1534726093274\";a:3:{s:5:\"width\";i:1582;s:6:\"height\";i:601;s:4:\"file\";s:37:\"lantern_3_REV_LOGO-e1534726071387.jpg\";}}'),(121,21,'_edit_last','1'),(122,22,'_wp_attached_file','2018/08/Facebook-Logo-e1602979990537.jpg'),(123,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:101;s:4:\"file\";s:40:\"2018/08/Facebook-Logo-e1602979990537.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Facebook-Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Facebook-Logo-148x150.jpg\";s:5:\"width\";i:148;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Facebook-Logo-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;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:{}}}'),(136,28,'_wp_attached_file','2018/08/cropped-Facebook-Logo.jpg'),(137,28,'_wp_attachment_context','site-icon'),(138,28,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:33:\"2018/08/cropped-Facebook-Logo.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-512x340.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-512x430.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:31:\"cropped-Facebook-Logo-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}'),(1326,373,'fave_agent_agencies','45'),(1327,373,'_primary_term_agent_category','4'),(1325,373,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1324,373,'fave_agent_website','lantern-realty.com'),(158,37,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(159,37,'_edit_last','1'),(160,37,'_edit_lock','1602979814:1'),(161,38,'_wp_attached_file','2018/08/deanaAGENT.jpg'),(162,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:889;s:6:\"height\";i:1105;s:4:\"file\";s:22:\"2018/08/deanaAGENT.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-241x300.jpg\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-768x955.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:955;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"deanaAGENT-824x1024.jpg\";s:5:\"width\";i:824;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-121x150.jpg\";s:5:\"width\";i:121;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-889x600.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-889x738.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-889x610.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-350x435.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-386x480.jpg\";s:5:\"width\";i:386;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1320494504\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(163,37,'_thumbnail_id','38'),(164,37,'slide_template',''),(166,37,'fave_agent_email','deana327@gmail.com'),(167,37,'fave_agent_position','Owner/Broker'),(168,37,'fave_agent_mobile','(704) 258-8068'),(169,37,'fave_agent_company','Lantern Realty and Development'),(1078,319,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(175,45,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(176,45,'_edit_last','1'),(177,45,'_edit_lock','1650419684:1'),(178,45,'_thumbnail_id','663'),(179,45,'fave_agency_location','25.686540,-80.431345,15'),(180,45,'slide_template',''),(181,2,'_edit_lock','1600617644:1'),(183,2,'_wp_page_template','template/template-homepage.php'),(184,2,'slide_template','default'),(185,2,'_wpb_vc_js_status','true'),(186,2,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(187,2,'fave_default_view','list_view'),(188,2,'fave_properties_sort','d_date'),(189,2,'fave_featured_prop_no','4'),(190,2,'fave_prop_no','9'),(191,2,'fave_listings_tabs','enable'),(192,2,'fave_prop_no_halfmap','9'),(193,2,'fave_properties_sort_halfmap','d_date'),(194,2,'fave_agency_orderby','None'),(195,2,'fave_agency_order','ASC'),(196,2,'fave_agent_orderby','None'),(197,2,'fave_agent_order','ASC'),(198,2,'fave_page_title','show'),(199,2,'fave_page_breadcrumb','show'),(200,2,'fave_page_sidebar','none'),(201,2,'fave_page_background','yes'),(202,2,'fave_header_type','none'),(203,2,'fave_header_full_screen','0'),(204,2,'fave_header_full_screen_type','screen_fix'),(205,2,'fave_page_header_search','0'),(206,2,'fave_page_header_image_opacity','0.5'),(207,2,'fave_page_header_video_overlay','yes'),(208,2,'fave_main_menu_trans','no'),(209,2,'fave_adv_search_enable','global'),(210,2,'fave_adv_search','hide'),(211,2,'fave_adv_search_pos','under_menu'),(212,2,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(213,56,'_wp_attached_file','2018/08/Lantern_OpenHouse.png'),(214,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:728;s:4:\"file\";s:29:\"2018/08/Lantern_OpenHouse.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-300x182.png\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-768x466.png\";s:5:\"width\";i:768;s:6:\"height\";i:466;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Lantern_OpenHouse-1024x621.png\";s:5:\"width\";i:1024;s:6:\"height\";i:621;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Lantern_OpenHouse-150x91.png\";s:5:\"width\";i:150;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:30:\"Lantern_OpenHouse-1170x600.png\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-570x340.png\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-810x430.png\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:30:\"Lantern_OpenHouse-1170x728.png\";s:5:\"width\";i:1170;s:6:\"height\";i:728;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:30:\"Lantern_OpenHouse-1200x610.png\";s:5:\"width\";i:1200;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-350x212.png\";s:5:\"width\";i:350;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-791x480.png\";s:5:\"width\";i:791;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(217,2,'_wpb_shortcodes_custom_css','.vc_custom_1535990071877{padding-top: 10% !important;background-image: url(https://lantern-realty.com/wp-content/uploads/2018/08/Lantern_OpenHouse.png?id=56) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1535223457405{padding-top: 50px !important;}.vc_custom_1534901322962{margin-bottom: 250px !important;padding-right: 20px !important;padding-left: 20px !important;}.vc_custom_1534901068460{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 20px !important;padding-left: 20px !important;background-color: rgba(255,255,255,0.76) !important;*background-color: rgb(255,255,255) !important;}'),(218,94,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(219,94,'_edit_last','1'),(220,94,'_edit_lock','1535329841:1'),(251,94,'_wp_page_template','template/template-page.php'),(222,94,'slide_template','default'),(223,94,'_wpb_vc_js_status','true'),(224,94,'fave_default_view','list_view'),(225,94,'fave_properties_sort','d_date'),(226,94,'fave_featured_prop_no','4'),(227,94,'fave_prop_no','9'),(228,94,'fave_listings_tabs','enable'),(229,94,'fave_prop_no_halfmap','9'),(230,94,'fave_properties_sort_halfmap','d_date'),(231,94,'fave_agency_orderby','None'),(232,94,'fave_agency_order','ASC'),(233,94,'fave_agent_orderby','None'),(234,94,'fave_agent_order','ASC'),(235,94,'fave_page_title','hide'),(236,94,'fave_page_breadcrumb','show'),(237,94,'fave_page_sidebar','none'),(238,94,'fave_page_background','yes'),(239,94,'fave_header_type','none'),(240,94,'fave_header_full_screen','0'),(241,94,'fave_header_full_screen_type','screen_fix'),(242,94,'fave_page_header_search','0'),(243,94,'fave_page_header_image_opacity','0.5'),(244,94,'fave_page_header_video_overlay','yes'),(245,94,'fave_main_menu_trans','no'),(246,94,'fave_adv_search_enable','global'),(247,94,'fave_adv_search','hide'),(248,94,'fave_adv_search_pos','under_menu'),(249,94,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(252,4,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(253,5,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(254,6,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(255,7,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(739,206,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(496,150,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(262,14,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(263,15,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(264,16,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(265,101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4031,868,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3104,744,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3105,744,'_edit_lock','1627858530:1'),(266,101,'_edit_last','1'),(267,101,'_edit_lock','1656030404:1'),(268,101,'_wp_page_template','template/template-page.php'),(269,101,'slide_template','default'),(270,101,'_wpb_vc_js_status','true'),(271,101,'fave_default_view','list_view'),(272,101,'fave_properties_sort','d_date'),(273,101,'fave_featured_prop_no','4'),(274,101,'fave_prop_no','9'),(275,101,'fave_listings_tabs','enable'),(276,101,'fave_prop_no_halfmap','9'),(277,101,'fave_properties_sort_halfmap','d_date'),(278,101,'fave_agency_orderby','None'),(279,101,'fave_agency_order','ASC'),(280,101,'fave_agent_orderby','title'),(281,101,'fave_agent_order','ASC'),(282,101,'fave_page_title','hide'),(283,101,'fave_page_breadcrumb','show'),(284,101,'fave_page_sidebar','none'),(285,101,'fave_page_background','yes'),(286,101,'fave_header_type','none'),(287,101,'fave_header_full_screen','0'),(288,101,'fave_header_full_screen_type','screen_fix'),(289,101,'fave_page_header_search','0'),(290,101,'fave_page_header_image_opacity','0.5'),(291,101,'fave_page_header_video_overlay','yes'),(292,101,'fave_main_menu_trans','no'),(293,101,'fave_adv_search_enable','global'),(294,101,'fave_adv_search','hide'),(295,101,'fave_adv_search_pos','under_menu'),(296,101,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(297,105,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(298,105,'_edit_last','1'),(299,105,'_edit_lock','1600547561:1'),(300,106,'_wp_attached_file','2018/08/Paula_Severt_1.jpg'),(301,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:405;s:4:\"file\";s:26:\"2018/08/Paula_Severt_1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-300x270.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-150x135.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-450x340.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-350x315.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:315;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:{}}}'),(302,105,'_thumbnail_id','106'),(303,105,'slide_template',''),(3081,105,'_primary_term_agent_category','3'),(3082,105,'rs_page_bg_color',''),(315,111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(316,111,'_edit_last','1'),(317,111,'_edit_lock','1645148519:1'),(318,112,'_wp_attached_file','2018/08/Annie_Boger.jpg'),(319,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2018/08/Annie_Boger.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-960x600.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-960x738.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-960x610.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;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:{}}}'),(305,105,'fave_agent_email','paulasevert@yahoo.com'),(306,105,'fave_agent_position','Owner/Broker'),(307,105,'fave_agent_company','Lantern Realty and Development'),(308,105,'fave_agent_mobile','704-232-3433'),(309,105,'fave_agent_website','lantern-realty.com'),(310,105,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3233,105,'fave_agent_logo','22'),(312,105,'fave_agent_agencies','45'),(320,111,'_thumbnail_id','112'),(11955,2269,'_wp_attached_file','2021/02/Katherine_Lawing-1.jpg'),(3084,111,'_primary_term_agent_category','4'),(3085,111,'rs_page_bg_color',''),(323,111,'fave_agent_email','Annie.homes4u@gmail.com'),(324,111,'fave_agent_position','Licensed Agent'),(325,111,'fave_agent_company','Lantern Realty and Development'),(326,111,'fave_agent_mobile','980-521-3988'),(327,111,'fave_agent_website','lantern-realty.com'),(328,111,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11954,111,'fave_agent_logo','22'),(330,111,'fave_agent_agencies','45'),(332,114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(333,114,'_edit_last','1'),(334,114,'_edit_lock','1600547556:1'),(361,120,'_edit_last','1'),(362,120,'_edit_lock','1600544608:1'),(363,121,'_wp_attached_file','2018/08/Krysta_Kemp.jpg'),(364,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1054;s:6:\"height\";i:1188;s:4:\"file\";s:23:\"2018/08/Krysta_Kemp.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-266x300.jpg\";s:5:\"width\";i:266;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-768x866.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:866;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Krysta_Kemp-908x1024.jpg\";s:5:\"width\";i:908;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-133x150.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Krysta_Kemp-1054x600.jpg\";s:5:\"width\";i:1054;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Krysta_Kemp-1054x738.jpg\";s:5:\"width\";i:1054;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Krysta_Kemp-1054x610.jpg\";s:5:\"width\";i:1054;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-350x394.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-426x480.jpg\";s:5:\"width\";i:426;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:10:\"John Stamp\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1503162906\";s:9:\"copyright\";s:17:\"studiothirty5.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(360,120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(358,114,'_thumbnail_id','119'),(338,114,'slide_template',''),(3078,114,'_primary_term_agent_category','3'),(3079,114,'rs_page_bg_color',''),(340,114,'fave_agent_email','ch2realty@gmail.com'),(341,114,'fave_agent_position','Owner/Broker'),(342,114,'fave_agent_company','Lantern Realty and Development'),(343,114,'fave_agent_mobile','704-298-5872'),(344,114,'fave_agent_website','lantern-realty.com'),(345,114,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3232,114,'fave_agent_logo','28'),(347,114,'fave_agent_agencies','45'),(356,119,'_wp_attached_file','2018/08/Chris-Puckett.jpg'),(357,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:287;s:6:\"height\";i:283;s:4:\"file\";s:25:\"2018/08/Chris-Puckett.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Chris-Puckett-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Chris-Puckett-150x148.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Chris-Puckett-287x258.jpg\";s:5:\"width\";i:287;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Chris-Puckett-287x280.jpg\";s:5:\"width\";i:287;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Chris-Puckett-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510750305\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(365,120,'_thumbnail_id','121'),(366,120,'slide_template',''),(3087,120,'_primary_term_agent_category','6'),(3088,120,'rs_page_bg_color',''),(368,120,'fave_agent_email','krystakemprealty@gmail.com'),(369,120,'fave_agent_position','Licensed Agent'),(370,120,'fave_agent_company','Lantern Realty and Development'),(371,120,'fave_agent_mobile','704-701-7334'),(372,120,'fave_agent_website','lantern-realty.com'),(373,120,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3366,120,'fave_agent_logo','22'),(375,120,'fave_agent_agencies','45'),(376,123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(377,123,'_edit_last','1'),(378,123,'_edit_lock','1600543141:1'),(379,124,'_wp_attached_file','2018/08/Woody_Brown.jpg'),(380,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:839;s:6:\"height\";i:799;s:4:\"file\";s:23:\"2018/08/Woody_Brown.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-768x731.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:731;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-150x143.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-839x600.jpg\";s:5:\"width\";i:839;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-839x738.jpg\";s:5:\"width\";i:839;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-839x610.jpg\";s:5:\"width\";i:839;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-350x333.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-504x480.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:480;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:{}}}'),(381,123,'_thumbnail_id','124'),(382,123,'slide_template',''),(383,123,'fave_agent_position','Licensed Agent'),(384,123,'fave_agent_website','lantern-realty.com'),(385,123,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3257,123,'fave_agent_logo','22'),(387,123,'fave_agent_agencies','45'),(388,123,'fave_agent_company','Lantern Realty and Development'),(389,126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(390,126,'_edit_last','1'),(391,126,'_edit_lock','1600543121:1'),(392,127,'_wp_attached_file','2018/08/Elizabeth_Brown.jpg'),(393,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:696;s:6:\"height\";i:709;s:4:\"file\";s:27:\"2018/08/Elizabeth_Brown.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-294x300.jpg\";s:5:\"width\";i:294;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-147x150.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-696x600.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-696x430.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-696x610.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-350x357.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-471x480.jpg\";s:5:\"width\";i:471;s:6:\"height\";i:480;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:{}}}'),(394,126,'_thumbnail_id','127'),(395,126,'slide_template',''),(396,126,'fave_agent_position','Licensed Agent'),(397,126,'fave_agent_company','Lantern Realty and Development'),(398,126,'fave_agent_website','lantern-realty.com'),(399,126,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3252,126,'fave_agent_logo','22'),(401,126,'fave_agent_agencies','45'),(402,129,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(403,129,'_edit_last','1'),(404,129,'_edit_lock','1573841258:1'),(405,130,'_wp_attached_file','2018/08/Jennifer_Wood.jpg'),(406,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:583;s:6:\"height\";i:621;s:4:\"file\";s:25:\"2018/08/Jennifer_Wood.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-282x300.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-141x150.jpg\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-583x600.jpg\";s:5:\"width\";i:583;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-583x430.jpg\";s:5:\"width\";i:583;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-583x610.jpg\";s:5:\"width\";i:583;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-350x373.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-451x480.jpg\";s:5:\"width\";i:451;s:6:\"height\";i:480;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:{}}}'),(407,129,'_thumbnail_id','130'),(408,129,'slide_template',''),(409,129,'fave_agent_position','Licensed Agent'),(410,129,'fave_agent_company','Lantern Realty and Development'),(411,129,'fave_agent_website','lantern-realty.com'),(412,129,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1450,129,'fave_agent_logo','22'),(414,129,'fave_agent_agencies','45'),(415,132,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(416,132,'_edit_last','1'),(417,132,'_edit_lock','1573841439:1'),(418,133,'_wp_attached_file','2018/08/Grant-Stevens.jpg'),(419,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:731;s:6:\"height\";i:761;s:4:\"file\";s:25:\"2018/08/Grant-Stevens.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-288x300.jpg\";s:5:\"width\";i:288;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-144x150.jpg\";s:5:\"width\";i:144;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-731x600.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-731x430.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-731x738.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-731x610.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-350x364.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-461x480.jpg\";s:5:\"width\";i:461;s:6:\"height\";i:480;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:{}}}'),(420,132,'_thumbnail_id','133'),(421,132,'slide_template',''),(422,132,'fave_agent_position','Licensed Agent'),(423,132,'fave_agent_company','Lantern Realty and Development'),(424,132,'fave_agent_website','lantern-realty.com'),(425,132,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1278,132,'fave_agent_logo','22'),(427,132,'fave_agent_agencies','45'),(428,135,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(429,136,'_wp_attached_file','2018/08/Amy-Evans.jpg'),(430,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:672;s:6:\"height\";i:777;s:4:\"file\";s:21:\"2018/08/Amy-Evans.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-130x150.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-672x600.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-672x430.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-672x738.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-672x610.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-350x405.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-415x480.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:480;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:{}}}'),(431,135,'_edit_last','1'),(432,135,'_thumbnail_id','136'),(433,135,'slide_template',''),(434,135,'fave_agent_position','Licensed Agent'),(435,135,'fave_agent_company','Lantern Realty and Development'),(436,135,'fave_agent_website','lantern-realty.com'),(437,135,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3280,135,'fave_agent_logo','22'),(439,135,'fave_agent_agencies','45'),(440,135,'_edit_lock','1600543534:1'),(441,138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(442,138,'_edit_last','1'),(443,138,'_edit_lock','1573841419:1'),(444,139,'_wp_attached_file','2018/08/Kyle_Runyon.jpg'),(445,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:660;s:6:\"height\";i:735;s:4:\"file\";s:23:\"2018/08/Kyle_Runyon.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-660x600.jpg\";s:5:\"width\";i:660;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-660x430.jpg\";s:5:\"width\";i:660;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-660x610.jpg\";s:5:\"width\";i:660;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-350x390.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-431x480.jpg\";s:5:\"width\";i:431;s:6:\"height\";i:480;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:{}}}'),(446,138,'_thumbnail_id','139'),(447,138,'slide_template',''),(448,138,'fave_agent_position','Licensed Agent'),(449,138,'fave_agent_company','Lantern Realty and Development'),(450,138,'fave_agent_website','lantern-realty.com'),(451,138,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1453,138,'fave_agent_logo','22'),(453,138,'fave_agent_agencies','45'),(454,141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(455,141,'_edit_last','1'),(456,141,'_edit_lock','1600546274:1'),(457,142,'_wp_attached_file','2018/08/Ethan_Stillinger.jpg'),(458,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:663;s:6:\"height\";i:703;s:4:\"file\";s:28:\"2018/08/Ethan_Stillinger.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-283x300.jpg\";s:5:\"width\";i:283;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-141x150.jpg\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-663x600.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-663x430.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-663x610.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-350x371.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-453x480.jpg\";s:5:\"width\";i:453;s:6:\"height\";i:480;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:{}}}'),(459,141,'_thumbnail_id','142'),(460,141,'slide_template',''),(461,141,'fave_agent_position','Licensed Agent'),(462,141,'fave_agent_company','Lantern Realty and Development'),(463,141,'fave_agent_website','lantern-realty.com'),(464,141,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3382,141,'fave_agent_logo','22'),(466,141,'fave_agent_agencies','45'),(467,144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(468,144,'_edit_last','1'),(469,144,'_edit_lock','1588015483:1'),(470,145,'_wp_attached_file','2018/08/Wesley_Cook.jpg'),(471,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:499;s:6:\"height\";i:556;s:4:\"file\";s:23:\"2018/08/Wesley_Cook.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-499x340.jpg\";s:5:\"width\";i:499;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-499x430.jpg\";s:5:\"width\";i:499;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-350x390.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-431x480.jpg\";s:5:\"width\";i:431;s:6:\"height\";i:480;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:{}}}'),(472,144,'_thumbnail_id','145'),(473,144,'slide_template',''),(474,144,'fave_agent_position','Licensed Agent'),(475,144,'fave_agent_company','Lantern Realty and Development'),(476,144,'fave_agent_website','lantern-realty.com'),(477,144,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1296,144,'fave_agent_logo','22'),(479,144,'fave_agent_agencies','45'),(480,37,'fave_agent_website','lantern-realty.com'),(481,37,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(5736,37,'fave_agent_logo','1129'),(483,37,'fave_agent_agencies','45'),(486,149,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(487,149,'_menu_item_type','post_type'),(488,149,'_menu_item_menu_item_parent','0'),(489,149,'_menu_item_object_id','101'),(490,149,'_menu_item_object','page'),(491,149,'_menu_item_target',''),(492,149,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(493,149,'_menu_item_xfn',''),(494,149,'_menu_item_url',''),(502,150,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(503,150,'_menu_item_xfn',''),(504,150,'_menu_item_url','/lantern-listings/'),(506,151,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(507,151,'_menu_item_type','custom'),(508,151,'_menu_item_menu_item_parent','5'),(509,151,'_menu_item_object_id','151'),(510,151,'_menu_item_object','custom'),(511,151,'_menu_item_target',''),(512,151,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(513,151,'_menu_item_xfn',''),(514,151,'_menu_item_url','/recently-sold/'),(516,152,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(517,152,'_edit_last','1'),(518,152,'_edit_lock','1535988850:1'),(519,152,'_wp_page_template','template/template-page.php'),(520,152,'slide_template','default'),(521,152,'_wpb_vc_js_status','true'),(522,152,'fave_default_view','list_view'),(523,152,'fave_properties_sort','d_date'),(524,152,'fave_featured_prop_no','4'),(525,152,'fave_prop_no','9'),(526,152,'fave_listings_tabs','enable'),(527,152,'fave_prop_no_halfmap','9'),(528,152,'fave_properties_sort_halfmap','d_date'),(529,152,'fave_agency_orderby','None'),(530,152,'fave_agency_order','ASC'),(531,152,'fave_agent_orderby','None'),(532,152,'fave_agent_order','ASC'),(533,152,'fave_page_title','show'),(534,152,'fave_page_breadcrumb','show'),(535,152,'fave_page_sidebar','none'),(536,152,'fave_page_background','yes'),(537,152,'fave_header_type','none'),(538,152,'fave_header_full_screen','0'),(539,152,'fave_header_full_screen_type','screen_fix'),(540,152,'fave_page_header_search','0'),(541,152,'fave_page_header_image_opacity','0.5'),(542,152,'fave_page_header_video_overlay','yes'),(543,152,'fave_main_menu_trans','no'),(544,152,'fave_adv_search_enable','global'),(545,152,'fave_adv_search','hide'),(546,152,'fave_adv_search_pos','under_menu'),(547,152,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(548,156,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(549,156,'_menu_item_type','custom'),(550,156,'_menu_item_menu_item_parent','0'),(551,156,'_menu_item_object_id','156'),(552,156,'_menu_item_object','custom'),(553,156,'_menu_item_target',''),(554,156,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(555,156,'_menu_item_xfn',''),(556,156,'_menu_item_url','#'),(558,157,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(559,157,'_menu_item_type','custom'),(560,157,'_menu_item_menu_item_parent','0'),(561,157,'_menu_item_object_id','157'),(562,157,'_menu_item_object','custom'),(563,157,'_menu_item_target',''),(564,157,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(565,157,'_menu_item_xfn',''),(566,157,'_menu_item_url','#'),(1328,377,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1329,377,'_edit_last','1'),(1330,377,'_edit_lock','1613657645:1'),(1331,378,'_wp_attached_file','2018/11/Courtney_Hedrick.jpg'),(1318,373,'slide_template',''),(1317,373,'_thumbnail_id','374'),(636,166,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(637,166,'_menu_item_type','custom'),(638,166,'_menu_item_menu_item_parent','156'),(639,166,'_menu_item_object_id','166'),(640,166,'_menu_item_object','custom'),(641,166,'_menu_item_target',''),(642,166,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(643,166,'_menu_item_xfn',''),(644,166,'_menu_item_url','/property-organizer-view-saved-search-list/'),(646,167,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(647,167,'_menu_item_type','custom'),(648,167,'_menu_item_menu_item_parent','156'),(649,167,'_menu_item_object_id','167'),(650,167,'_menu_item_object','custom'),(651,167,'_menu_item_target',''),(652,167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(653,167,'_menu_item_xfn',''),(654,167,'_menu_item_url','/property-organizer-saved-listings/'),(666,172,'_edit_lock','1535144889:1'),(667,172,'_wp_attachment_backup_sizes','a:18:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2229;s:6:\"height\";i:1287;s:4:\"file\";s:24:\"lantern_3_REV_LOGO-1.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-768x443.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:33:\"lantern_3_REV_LOGO-1-1024x591.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1-150x87.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-single-big-size-orig\";a:4:{s:4:\"file\";s:33:\"lantern_3_REV_LOGO-1-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"houzez-property-thumb-image-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-thumb-image-v2-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image570_340-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-detail-gallery-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"houzez-imageSize1170_738-orig\";a:4:{s:4:\"file\";s:33:\"lantern_3_REV_LOGO-1-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-prop_image1440_610-orig\";a:4:{s:4:\"file\";s:33:\"lantern_3_REV_LOGO-1-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image350_350-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-widget-prop-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-350x202.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-toparea-v5-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-831x480.jpg\";s:5:\"width\";i:831;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1535144769790\";a:3:{s:5:\"width\";i:1660;s:6:\"height\";i:629;s:4:\"file\";s:39:\"lantern_3_REV_LOGO-1-e1535144736200.jpg\";}}'),(668,172,'_edit_last','1'),(669,186,'_wp_attached_file','2018/08/team1.jpg'),(670,186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:638;s:6:\"height\";i:588;s:4:\"file\";s:17:\"2018/08/team1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team1-300x276.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-150x138.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team1-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team1-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team1-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:17:\"team1-638x430.jpg\";s:5:\"width\";i:638;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team1-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team1-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team1-350x323.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team1-521x480.jpg\";s:5:\"width\";i:521;s:6:\"height\";i:480;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:{}}}'),(671,187,'_wp_attached_file','2018/08/team2.jpg'),(672,187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:827;s:4:\"file\";s:17:\"2018/08/team2.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team2-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:17:\"team2-639x600.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team2-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team2-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team2-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:17:\"team2-639x430.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:17:\"team2-639x738.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:17:\"team2-639x610.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team2-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team2-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team2-350x453.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team2-371x480.jpg\";s:5:\"width\";i:371;s:6:\"height\";i:480;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:{}}}'),(673,188,'_wp_attached_file','2018/08/team3.jpg'),(674,188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:498;s:6:\"height\";i:372;s:4:\"file\";s:17:\"2018/08/team3.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team3-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team3-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team3-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team3-498x340.jpg\";s:5:\"width\";i:498;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team3-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team3-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team3-350x261.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:261;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:{}}}'),(675,192,'_wp_attached_file','2018/08/team4-e1536104869162.jpg'),(676,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1184;s:6:\"height\";i:332;s:4:\"file\";s:32:\"2018/08/team4-e1536104869162.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"team4-e1536104869162-300x84.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-768x215.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"team4-e1536104869162-1024x287.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"team4-e1536104869162-150x42.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:42;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:33:\"team4-e1536104869162-1170x332.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-570x332.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-810x332.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:33:\"team4-e1536104869162-1170x332.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:18:\"team4-1280x610.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-350x332.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:31:\"team4-e1536104869162-350x98.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team4-640x480.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:480;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:{}}}'),(677,193,'_wp_attached_file','2018/08/team5.jpg'),(678,193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:17:\"2018/08/team5.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team5-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team5-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:17:\"team5-720x600.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team5-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team5-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team5-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:17:\"team5-720x430.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:17:\"team5-720x738.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:17:\"team5-720x610.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team5-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team5-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team5-350x467.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team5-360x480.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:480;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:{}}}'),(679,194,'_wp_attached_file','2018/08/team6.jpg'),(680,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:714;s:6:\"height\";i:960;s:4:\"file\";s:17:\"2018/08/team6.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team6-223x300.jpg\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team6-112x150.jpg\";s:5:\"width\";i:112;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:17:\"team6-714x600.jpg\";s:5:\"width\";i:714;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team6-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team6-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team6-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:17:\"team6-714x430.jpg\";s:5:\"width\";i:714;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:17:\"team6-714x738.jpg\";s:5:\"width\";i:714;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:17:\"team6-714x610.jpg\";s:5:\"width\";i:714;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team6-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team6-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team6-350x471.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team6-357x480.jpg\";s:5:\"width\";i:357;s:6:\"height\";i:480;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:{}}}'),(681,195,'_wp_attached_file','2018/08/team7.jpg'),(682,195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:718;s:6:\"height\";i:496;s:4:\"file\";s:17:\"2018/08/team7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team7-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team7-150x104.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team7-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team7-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team7-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:17:\"team7-718x430.jpg\";s:5:\"width\";i:718;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team7-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team7-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team7-350x242.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team7-695x480.jpg\";s:5:\"width\";i:695;s:6:\"height\";i:480;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:{}}}'),(683,196,'_wp_attached_file','2018/08/team8.jpg'),(684,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:608;s:6:\"height\";i:418;s:4:\"file\";s:17:\"2018/08/team8.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team8-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team8-150x103.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team8-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team8-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team8-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team8-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team8-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team8-350x241.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:241;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:{}}}'),(756,207,'_menu_item_xfn',''),(755,207,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(754,207,'_menu_item_target',''),(753,207,'_menu_item_object','custom'),(752,207,'_menu_item_object_id','207'),(751,207,'_menu_item_menu_item_parent','206'),(750,207,'_menu_item_type','custom'),(749,207,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(803,212,'_menu_item_object','custom'),(804,212,'_menu_item_target',''),(747,206,'_menu_item_url','#'),(746,206,'_menu_item_xfn',''),(745,206,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1316,374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:640;s:4:\"file\";s:28:\"2018/11/Cindy_Widenhouse.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-639x600.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-639x430.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-639x610.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-350x351.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-479x480.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1541171102\";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:{}}}'),(1315,374,'_wp_attached_file','2018/11/Cindy_Widenhouse.jpg'),(1314,373,'_edit_lock','1613657684:1'),(1313,373,'_edit_last','1'),(1312,373,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1311,370,'_thumbnail_id','372'),(757,207,'_menu_item_url','/listing-report/Charlotte/815191'),(799,212,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(759,208,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(760,208,'_menu_item_type','custom'),(761,208,'_menu_item_menu_item_parent','206'),(762,208,'_menu_item_object_id','208'),(763,208,'_menu_item_object','custom'),(764,208,'_menu_item_target',''),(765,208,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(766,208,'_menu_item_xfn',''),(767,208,'_menu_item_url','/listing-report/Kannapolis-Concord/815186'),(802,212,'_menu_item_object_id','212'),(769,209,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(770,209,'_menu_item_type','custom'),(771,209,'_menu_item_menu_item_parent','206'),(772,209,'_menu_item_object_id','209'),(773,209,'_menu_item_object','custom'),(774,209,'_menu_item_target',''),(775,209,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(776,209,'_menu_item_xfn',''),(777,209,'_menu_item_url','/listing-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187'),(779,210,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(780,210,'_menu_item_type','custom'),(781,210,'_menu_item_menu_item_parent','206'),(782,210,'_menu_item_object_id','210'),(783,210,'_menu_item_object','custom'),(784,210,'_menu_item_target',''),(785,210,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(786,210,'_menu_item_xfn',''),(787,210,'_menu_item_url','/listing-report/Rockwell-Granite-Quarry-Gold-Hill/815189'),(800,212,'_menu_item_type','custom'),(789,211,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(790,211,'_menu_item_type','custom'),(791,211,'_menu_item_menu_item_parent','206'),(792,211,'_menu_item_object_id','211'),(793,211,'_menu_item_object','custom'),(794,211,'_menu_item_target',''),(795,211,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(796,211,'_menu_item_xfn',''),(797,211,'_menu_item_url','/listing-report/Salisbury/81519'),(801,212,'_menu_item_menu_item_parent','157'),(805,212,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(806,212,'_menu_item_xfn',''),(807,212,'_menu_item_url','#'),(809,213,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(810,213,'_menu_item_type','custom'),(811,213,'_menu_item_menu_item_parent','212'),(812,213,'_menu_item_object_id','213'),(813,213,'_menu_item_object','custom'),(814,213,'_menu_item_target',''),(815,213,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(816,213,'_menu_item_xfn',''),(817,213,'_menu_item_url','/market-report/Charlotte/815191'),(819,214,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(820,214,'_menu_item_type','custom'),(821,214,'_menu_item_menu_item_parent','212'),(822,214,'_menu_item_object_id','214'),(823,214,'_menu_item_object','custom'),(824,214,'_menu_item_target',''),(825,214,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(826,214,'_menu_item_xfn',''),(827,214,'_menu_item_url','/market-report/Kannapolis-Concord/815186'),(829,215,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(830,215,'_menu_item_type','custom'),(831,215,'_menu_item_menu_item_parent','212'),(832,215,'_menu_item_object_id','215'),(833,215,'_menu_item_object','custom'),(834,215,'_menu_item_target',''),(835,215,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(836,215,'_menu_item_xfn',''),(837,215,'_menu_item_url','/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187'),(839,216,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(840,216,'_menu_item_type','custom'),(841,216,'_menu_item_menu_item_parent','212'),(842,216,'_menu_item_object_id','216'),(843,216,'_menu_item_object','custom'),(844,216,'_menu_item_target',''),(845,216,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(846,216,'_menu_item_xfn',''),(847,216,'_menu_item_url','/market-report/Landis-China-Grove/815188'),(849,217,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(850,217,'_menu_item_type','custom'),(851,217,'_menu_item_menu_item_parent','212'),(852,217,'_menu_item_object_id','217'),(853,217,'_menu_item_object','custom'),(854,217,'_menu_item_target',''),(855,217,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(856,217,'_menu_item_xfn',''),(857,217,'_menu_item_url','/market-report/Rockwell-Granite-Quarry-Gold-Hill/815189'),(859,218,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(860,218,'_menu_item_type','custom'),(861,218,'_menu_item_menu_item_parent','212'),(862,218,'_menu_item_object_id','218'),(863,218,'_menu_item_object','custom'),(864,218,'_menu_item_target',''),(865,218,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(866,218,'_menu_item_xfn',''),(867,218,'_menu_item_url','/market-report/Salisbury/815190'),(878,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(879,237,'_edit_last','1'),(880,237,'_edit_lock','1602516597:1'),(914,237,'_wp_page_template','template/template-page.php'),(882,237,'slide_template','default'),(883,237,'_wpb_vc_js_status','true'),(884,237,'fave_default_view','list_view'),(885,237,'fave_properties_sort','d_date'),(886,237,'fave_featured_prop_no','4'),(887,237,'fave_prop_no','9'),(888,237,'fave_listings_tabs','enable'),(889,237,'fave_prop_no_halfmap','9'),(890,237,'fave_properties_sort_halfmap','d_date'),(891,237,'fave_agency_orderby','None'),(892,237,'fave_agency_order','ASC'),(893,237,'fave_agent_orderby','None'),(894,237,'fave_agent_order','ASC'),(895,237,'fave_page_title','show'),(896,237,'fave_page_breadcrumb','show'),(897,237,'fave_page_sidebar','right_sidebar'),(898,237,'fave_page_background','yes'),(899,237,'fave_header_type','none'),(900,237,'fave_header_full_screen','0'),(901,237,'fave_header_full_screen_type','screen_fix'),(902,237,'fave_page_header_search','0'),(903,237,'fave_page_header_image_opacity','0.5'),(904,237,'fave_page_header_video_overlay','yes'),(905,237,'fave_main_menu_trans','no'),(906,237,'fave_adv_search_enable','global'),(907,237,'fave_adv_search','hide'),(908,237,'fave_adv_search_pos','under_menu'),(909,237,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(915,247,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(916,247,'_menu_item_type','post_type'),(917,247,'_menu_item_menu_item_parent','156'),(918,247,'_menu_item_object_id','237'),(919,247,'_menu_item_object','page'),(920,247,'_menu_item_target',''),(921,247,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(922,247,'_menu_item_xfn',''),(923,247,'_menu_item_url',''),(925,248,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(926,248,'_edit_last','1'),(927,248,'_edit_lock','1535211595:1'),(928,248,'slide_template','default'),(929,248,'fave_testi_text','Deana did an awesome job selling my home for me. She will do a great job for you too!'),(930,248,'fave_testi_name','Diane C.'),(931,253,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(932,253,'_edit_last','1'),(933,253,'_edit_lock','1535211665:1'),(934,253,'slide_template','default'),(935,253,'fave_testi_text','Paula did a wonderful job leading us through our first home purchase and she was on top of it and helped us understand things along the way thank you so much and we highly recommend her.'),(936,253,'fave_testi_name','Joyce L.'),(937,255,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(938,255,'_edit_last','1'),(939,255,'_edit_lock','1535211759:1'),(940,255,'slide_template','default'),(941,255,'fave_testi_text','Deana was awesome, she went above and beyond for my wife and I in our search for a new home. I would recommend Deana and the Lantern Team to help with the purchase or sale of any home.'),(968,276,'_wp_attached_file','2018/08/5stars-e1535212336146.png'),(969,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:61;s:4:\"file\";s:33:\"2018/08/5stars-e1535212336146.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"5stars-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"5stars-300x61.png\";s:5:\"width\";i:300;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"5stars-768x155.png\";s:5:\"width\";i:768;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"5stars-1024x207.png\";s:5:\"width\";i:1024;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"5stars-150x30.png\";s:5:\"width\";i:150;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:19:\"5stars-1170x287.png\";s:5:\"width\";i:1170;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:18:\"5stars-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:18:\"5stars-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:18:\"5stars-570x287.png\";s:5:\"width\";i:570;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:18:\"5stars-810x287.png\";s:5:\"width\";i:810;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:19:\"5stars-1170x287.png\";s:5:\"width\";i:1170;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:18:\"5stars-350x287.png\";s:5:\"width\";i:350;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:18:\"5stars-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"5stars-350x71.png\";s:5:\"width\";i:350;s:6:\"height\";i:71;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(942,255,'fave_testi_name','Lee D.'),(943,257,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(944,257,'_edit_last','1'),(945,257,'_edit_lock','1588344005:1'),(946,257,'slide_template','default'),(947,257,'fave_testi_text','Paula Severt has successfully guided me through finding a home and selling a home. She has the background and the \"contacts\" to make this a seamless experience. I could not have had a better realtor.'),(948,257,'fave_testi_name','Candy H.'),(949,259,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(950,259,'_edit_last','1'),(951,259,'_edit_lock','1535211635:1'),(952,259,'slide_template','default'),(953,259,'fave_testi_text','Paula is an amazing realtor! We have bought and sold houses with Paula. She goes out of her way to make sure you find the perfect house! Couldn’t recommend her more!!!'),(954,259,'fave_testi_name','Jessica P.'),(955,261,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(956,261,'_edit_last','1'),(957,261,'_edit_lock','1535211645:1'),(958,261,'slide_template','default'),(959,261,'fave_testi_text','Great agent and the best thing you can say about a real estate person is that she is as honest as the day is long!!!!'),(960,261,'fave_testi_name','Joe K.'),(961,263,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(962,263,'_edit_last','1'),(963,263,'_edit_lock','1590781289:1'),(964,263,'slide_template','default'),(965,263,'fave_testi_text','Chris Puckett is the man! Knowledgeable and trustworthy. Highly recommend!'),(966,263,'fave_testi_name','Jeremy A.'),(1106,325,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(970,276,'_edit_lock','1535212351:1'),(971,276,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1422;s:6:\"height\";i:287;s:4:\"file\";s:10:\"5stars.png\";}}'),(972,276,'_edit_last','1'),(1310,372,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:599;s:6:\"height\";i:599;s:4:\"file\";s:27:\"2018/11/Jeremy_Aldridge.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-599x430.jpg\";s:5:\"width\";i:599;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1541172189\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1309,372,'_wp_attached_file','2018/11/Jeremy_Aldridge.jpg'),(1307,370,'fave_agent_agencies','45'),(1308,370,'_primary_term_agent_category','4'),(1306,370,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1305,370,'fave_agent_website','lantern-realty.com'),(1304,370,'fave_agent_company','Lantern Realty and Development'),(1301,370,'_edit_lock','1600542776:1'),(1302,370,'slide_template',''),(1303,370,'fave_agent_position','Licensed Agent'),(1299,370,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1300,370,'_edit_last','1'),(1424,377,'fave_agent_email','hedrickhomes@gmail.com'),(1389,390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(999,303,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1000,303,'_menu_item_type','post_type'),(1001,303,'_menu_item_menu_item_parent','0'),(1002,303,'_menu_item_object_id','237'),(1003,303,'_menu_item_object','page'),(1004,303,'_menu_item_target',''),(1005,303,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1006,303,'_menu_item_xfn',''),(1007,303,'_menu_item_url',''),(1039,3,'_edit_lock','1535226379:1'),(1009,304,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1010,304,'_menu_item_type','post_type'),(1011,304,'_menu_item_menu_item_parent','0'),(1012,304,'_menu_item_object_id','2'),(1013,304,'_menu_item_object','page'),(1014,304,'_menu_item_target',''),(1015,304,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1016,304,'_menu_item_xfn',''),(1017,304,'_menu_item_url',''),(1043,3,'_wpb_vc_js_status','false'),(1019,305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1020,305,'_menu_item_type','custom'),(1021,305,'_menu_item_menu_item_parent','0'),(1022,305,'_menu_item_object_id','305'),(1023,305,'_menu_item_object','custom'),(1024,305,'_menu_item_target',''),(1025,305,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1026,305,'_menu_item_xfn',''),(1027,305,'_menu_item_url','/homes-for-sale-search/'),(1042,3,'slide_template','default'),(1029,306,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1030,306,'_menu_item_type','post_type'),(1031,306,'_menu_item_menu_item_parent','0'),(1032,306,'_menu_item_object_id','94'),(1033,306,'_menu_item_object','page'),(1034,306,'_menu_item_target',''),(1035,306,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1036,306,'_menu_item_xfn',''),(1037,306,'_menu_item_url',''),(1044,3,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1045,3,'fave_default_view','list_view'),(1046,3,'fave_properties_sort','d_date'),(1047,3,'fave_featured_prop_no','4'),(1048,3,'fave_prop_no','9'),(1049,3,'fave_listings_tabs','enable'),(1050,3,'fave_prop_no_halfmap','9'),(1051,3,'fave_properties_sort_halfmap','d_date'),(1052,3,'fave_agency_orderby','None'),(1053,3,'fave_agency_order','ASC'),(1054,3,'fave_agent_orderby','None'),(1055,3,'fave_agent_order','ASC'),(1056,3,'fave_page_title','show'),(1057,3,'fave_page_breadcrumb','show'),(1058,3,'fave_page_sidebar','right_sidebar'),(1059,3,'fave_page_background','yes'),(1060,3,'fave_header_type','none'),(1061,3,'fave_header_full_screen','0'),(1062,3,'fave_header_full_screen_type','screen_fix'),(1063,3,'fave_page_header_search','0'),(1064,3,'fave_page_header_image_opacity','0.5'),(1065,3,'fave_page_header_video_overlay','yes'),(1066,3,'fave_main_menu_trans','no'),(1067,3,'fave_adv_search_enable','global'),(1068,3,'fave_adv_search','hide'),(1069,3,'fave_adv_search_pos','under_menu'),(1070,3,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(1073,316,'_wp_attached_file','2018/08/HomeValue-01.png'),(1074,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:233;s:6:\"height\";i:220;s:4:\"file\";s:24:\"2018/08/HomeValue-01.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"HomeValue-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"HomeValue-01-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"HomeValue-01-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1075,317,'_wp_attached_file','2018/08/HomeValue-02-01.png'),(1076,317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:665;s:6:\"height\";i:149;s:4:\"file\";s:27:\"2018/08/HomeValue-02-01.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-150x149.png\";s:5:\"width\";i:150;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"HomeValue-02-01-300x67.png\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"HomeValue-02-01-150x34.png\";s:5:\"width\";i:150;s:6:\"height\";i:34;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-385x149.png\";s:5:\"width\";i:385;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-380x149.png\";s:5:\"width\";i:380;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-570x149.png\";s:5:\"width\";i:570;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-350x149.png\";s:5:\"width\";i:350;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"HomeValue-02-01-350x78.png\";s:5:\"width\";i:350;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1079,319,'_edit_last','1'),(1080,319,'_edit_lock','1573841213:1'),(1081,320,'_wp_attached_file','2018/09/Wanda_Prince.jpg'),(1082,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:674;s:6:\"height\";i:721;s:4:\"file\";s:24:\"2018/09/Wanda_Prince.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-280x300.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-140x150.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-674x600.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-674x430.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-674x610.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-350x374.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-449x480.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:480;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:{}}}'),(1083,319,'_thumbnail_id','320'),(1084,319,'slide_template',''),(1085,319,'fave_agent_position','Licensed Agent'),(1086,319,'fave_agent_company','Lantern Realty and Development'),(1087,319,'fave_agent_website','lantern-realty.com'),(1088,319,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1271,319,'fave_agent_logo','22'),(1090,319,'fave_agent_agencies','45'),(1091,319,'_primary_term_agent_category','4'),(1092,322,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1093,322,'_edit_last','1'),(1094,322,'_edit_lock','1600544626:1'),(1095,323,'_wp_attached_file','2018/09/Jason_Overcash.jpg'),(1096,323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:337;s:6:\"height\";i:395;s:4:\"file\";s:26:\"2018/09/Jason_Overcash.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-128x150.jpg\";s:5:\"width\";i:128;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-337x258.jpg\";s:5:\"width\";i:337;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-337x280.jpg\";s:5:\"width\";i:337;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-337x340.jpg\";s:5:\"width\";i:337;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-337x350.jpg\";s:5:\"width\";i:337;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;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:{}}}'),(1097,322,'_thumbnail_id','323'),(1098,322,'slide_template',''),(1099,322,'fave_agent_position','Licensed Agent'),(1100,322,'fave_agent_company','Lantern Realty and Development'),(1101,322,'fave_agent_website','lantern-realty.com'),(1102,322,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3367,322,'fave_agent_logo','22'),(1104,322,'fave_agent_agencies','45'),(1105,322,'_primary_term_agent_category','4'),(1107,325,'_edit_last','1'),(1108,325,'_edit_lock','1535916499:1'),(1109,326,'_wp_attached_file','2018/09/RowanCounty.png'),(1110,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2018/09/RowanCounty.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"RowanCounty-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"RowanCounty-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"RowanCounty-150x64.png\";s:5:\"width\";i:150;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"RowanCounty-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"RowanCounty-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"RowanCounty-570x300.png\";s:5:\"width\";i:570;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"RowanCounty-350x300.png\";s:5:\"width\";i:350;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"RowanCounty-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"RowanCounty-350x150.png\";s:5:\"width\";i:350;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1149,328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1112,325,'slide_template','default'),(1113,325,'_wpb_vc_js_status','false'),(1114,325,'fave_default_view','list_view'),(1115,325,'fave_properties_sort','d_date'),(1116,325,'fave_featured_prop_no','4'),(1117,325,'fave_prop_no','9'),(1118,325,'fave_listings_tabs','enable'),(1119,325,'fave_prop_no_halfmap','9'),(1120,325,'fave_properties_sort_halfmap','d_date'),(1121,325,'fave_agency_orderby','None'),(1122,325,'fave_agency_order','ASC'),(1123,325,'fave_agent_orderby','None'),(1124,325,'fave_agent_order','ASC'),(1125,325,'fave_page_title','show'),(1126,325,'fave_page_breadcrumb','show'),(1127,325,'fave_page_sidebar','right_sidebar'),(1128,325,'fave_page_background','yes'),(1129,325,'fave_header_type','static_image'),(1130,325,'fave_header_full_screen','0'),(1131,325,'fave_header_full_screen_type','screen_fix'),(1132,325,'fave_page_header_title','Homes for Sale in Rowan County'),(1133,325,'fave_page_header_search','0'),(1145,325,'fave_page_header_image','326'),(1135,325,'fave_page_header_image_opacity','0.5'),(1136,325,'fave_page_header_video_overlay','yes'),(1137,325,'fave_main_menu_trans','no'),(1138,325,'fave_adv_search_enable','global'),(1139,325,'fave_adv_search','hide'),(1140,325,'fave_adv_search_pos','under_menu'),(1141,325,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(1146,152,'fave_page_header_title','Recently Sold by Lantern Agents'),(1148,152,'fave_page_header_image','56'),(1150,328,'_edit_last','1'),(1151,328,'_edit_lock','1535989010:1'),(1152,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1153,350,'_edit_last','1'),(1154,350,'_edit_lock','1590757522:1'),(1156,350,'slide_template','default'),(1157,350,'_wpb_vc_js_status','true'),(1158,350,'fave_default_view','list_view'),(1159,350,'fave_properties_sort','d_date'),(1160,350,'fave_featured_prop_no','4'),(1161,350,'fave_prop_no','9'),(1162,350,'fave_listings_tabs','enable'),(1163,350,'fave_prop_no_halfmap','9'),(1164,350,'fave_properties_sort_halfmap','d_date'),(1165,350,'fave_agency_orderby','None'),(1166,350,'fave_agency_order','ASC'),(1167,350,'fave_agent_orderby','None'),(1168,350,'fave_agent_order','ASC'),(1169,350,'fave_page_title','hide'),(1170,350,'fave_page_breadcrumb','hide'),(1171,350,'fave_page_sidebar','none'),(1172,350,'fave_page_background','yes'),(1173,350,'fave_header_type','static_image'),(1174,350,'fave_header_full_screen','0'),(1175,350,'fave_header_full_screen_type','screen_fix'),(1176,350,'fave_page_header_search','0'),(1177,350,'fave_page_header_image_opacity','0.5'),(1178,350,'fave_page_header_video_overlay','yes'),(1179,350,'fave_main_menu_trans','no'),(1180,350,'fave_adv_search_enable','global'),(1181,350,'fave_adv_search','hide'),(1182,350,'fave_adv_search_pos','under_menu'),(1183,350,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(1185,350,'fave_page_header_title','Contact The Lantern Team'),(1206,350,'fave_page_header_image','192'),(1199,350,'fave_page_header_image_height','400'),(1194,192,'_wp_attachment_backup_sizes','a:17:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:9:\"team4.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:17:\"team4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:17:\"team4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:17:\"team4-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:18:\"team4-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:17:\"team4-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-single-big-size-orig\";a:4:{s:4:\"file\";s:18:\"team4-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"houzez-property-thumb-image-orig\";a:4:{s:4:\"file\";s:17:\"team4-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-thumb-image-v2-orig\";a:4:{s:4:\"file\";s:17:\"team4-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image570_340-orig\";a:4:{s:4:\"file\";s:17:\"team4-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-detail-gallery-orig\";a:4:{s:4:\"file\";s:17:\"team4-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"houzez-imageSize1170_738-orig\";a:4:{s:4:\"file\";s:18:\"team4-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-prop_image1440_610-orig\";a:4:{s:4:\"file\";s:18:\"team4-1280x610.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image350_350-orig\";a:4:{s:4:\"file\";s:17:\"team4-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-widget-prop-orig\";a:4:{s:4:\"file\";s:17:\"team4-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:17:\"team4-350x263.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-toparea-v5-orig\";a:4:{s:4:\"file\";s:17:\"team4-640x480.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1204,350,'_wp_page_template','template/template-page.php'),(1207,353,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1208,354,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1210,356,'_wp_attached_file','2018/09/ehomlslogo-e1536839880237.png'),(1211,356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:99;s:4:\"file\";s:37:\"2018/09/ehomlslogo-e1536839880237.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"ehomlslogo-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"ehomlslogo-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-385x237.png\";s:5:\"width\";i:385;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-380x237.png\";s:5:\"width\";i:380;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-570x237.png\";s:5:\"width\";i:570;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-350x237.png\";s:5:\"width\";i:350;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-350x116.png\";s:5:\"width\";i:350;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1212,356,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:717;s:6:\"height\";i:237;s:4:\"file\";s:14:\"ehomlslogo.png\";}}'),(1213,358,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1214,359,'_wp_attached_file','2018/09/Tabitha_Furr-e1537041731903.jpeg'),(1215,359,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:411;s:4:\"file\";s:40:\"2018/09/Tabitha_Furr-e1537041731903.jpeg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-292x300.jpeg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-768x788.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:788;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Tabitha_Furr-998x1024.jpeg\";s:5:\"width\";i:998;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-146x150.jpeg\";s:5:\"width\";i:146;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Tabitha_Furr-1170x600.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-570x340.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-810x430.jpeg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Tabitha_Furr-1170x738.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Tabitha_Furr-1440x610.jpeg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-350x359.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-468x480.jpeg\";s:5:\"width\";i:468;s:6:\"height\";i:480;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:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1536529380\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"58\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1216,359,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2729;s:6:\"height\";i:2801;s:4:\"file\";s:17:\"Tabitha_Furr.jpeg\";}s:18:\"full-1537041731903\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:411;s:4:\"file\";s:32:\"Tabitha_Furr-e1537041710587.jpeg\";}}'),(1217,358,'_edit_last','1'),(1218,358,'_thumbnail_id','359'),(1219,358,'slide_template',''),(1221,358,'fave_agent_email','tabithafurr@yahoo.com'),(1222,358,'fave_agent_position','Licensed Agent'),(1223,358,'fave_agent_company','Lantern Realty and Development'),(1224,358,'fave_agent_website','lantern-realty.com'),(1225,358,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1293,358,'fave_agent_logo','22'),(1227,358,'fave_agent_agencies','45'),(1228,358,'_primary_term_agent_category','4'),(1229,358,'_edit_lock','1588015536:1'),(1230,361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1231,361,'_edit_last','1'),(1232,361,'_edit_lock','1600543086:1'),(1233,362,'_wp_attached_file','2018/09/Tanner_Bost.jpg'),(1234,362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:479;s:6:\"height\";i:522;s:4:\"file\";s:23:\"2018/09/Tanner_Bost.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-275x300.jpg\";s:5:\"width\";i:275;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-138x150.jpg\";s:5:\"width\";i:138;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-479x340.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-479x430.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-350x381.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-440x480.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:480;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:{}}}'),(1235,361,'_thumbnail_id','362'),(1236,361,'slide_template',''),(1237,361,'fave_agent_position','Licensed Agent'),(1238,361,'fave_agent_company','Lantern Realty and Development'),(1239,361,'fave_agent_website','lantern-realty.com'),(1240,361,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3250,361,'fave_agent_logo','28'),(1242,361,'fave_agent_agencies','45'),(1243,361,'_primary_term_agent_category','6'),(1244,319,'fave_agent_email','homesbywanda@gmail.com'),(1245,319,'fave_agent_mobile','704-232-3605'),(1247,361,'fave_agent_email','tannerbostrealty@gmail.com'),(1248,361,'fave_agent_mobile','704-793-3087'),(1250,126,'fave_agent_email','elizabethbrownrealtor@gmail.com'),(1251,126,'fave_agent_mobile','704-421-0317'),(1253,126,'_primary_term_agent_category','4'),(1254,123,'fave_agent_email','woodybrownsells@gmail.com'),(1255,123,'fave_agent_mobile','704-762-6457'),(1257,123,'_primary_term_agent_category','6'),(1258,144,'fave_agent_email','wesleycc.lantern@gmail.com'),(1259,144,'fave_agent_mobile','704-779-7136'),(1261,144,'_primary_term_agent_category','4'),(1262,135,'fave_agent_email','amyevansrealty@gmail.com'),(1263,135,'fave_agent_mobile','704-273-0107'),(1265,135,'_primary_term_agent_category','4'),(1266,322,'fave_agent_email','jasonovercashrealty@gmail.com'),(1267,322,'fave_agent_mobile','980-622-6327'),(1269,358,'fave_agent_mobile','704-578-9214'),(1272,138,'fave_agent_email','krrunyon1@gmail.com'),(1273,138,'fave_agent_mobile','704-652-1977'),(1275,138,'_primary_term_agent_category','4'),(1276,132,'fave_agent_email','grantstevens.lanterndevelopment@gmail.com'),(1277,132,'fave_agent_mobile','980-428-2222'),(1279,132,'_primary_term_agent_category','4'),(1280,141,'fave_agent_email','ethanstillingerlrd@gmail.com'),(1281,141,'fave_agent_mobile','704-957-1282'),(1283,141,'_primary_term_agent_category','4'),(1284,129,'fave_agent_email','jennwood@carolina.rr.com'),(1285,129,'fave_agent_mobile','704-490-2124'),(1287,129,'_primary_term_agent_category','4'),(1333,377,'_thumbnail_id','378'),(1334,377,'slide_template',''),(1335,377,'fave_agent_position','Licensed Agent'),(1336,377,'fave_agent_company','Lantern Realty and Development'),(1337,377,'fave_agent_website','lantern-realty.com'),(1338,377,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1339,377,'fave_agent_agencies','45'),(1340,377,'_primary_term_agent_category','4'),(1341,380,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1342,381,'_wp_attached_file','2018/11/Crystal_Cauble.jpg'),(1343,381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:302;s:6:\"height\";i:303;s:4:\"file\";s:26:\"2018/11/Crystal_Cauble.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-302x258.jpg\";s:5:\"width\";i:302;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-302x280.jpg\";s:5:\"width\";i:302;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1541171036\";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:{}}}'),(1290,37,'_primary_term_agent_category','3'),(1344,380,'_edit_last','1'),(1345,380,'_thumbnail_id','381'),(1346,380,'slide_template',''),(1347,380,'fave_agent_position','Licensed Agent'),(1348,380,'fave_agent_company','Lantern Realty and Development'),(1349,380,'fave_agent_website','lantern-realty.com'),(1350,380,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1351,380,'fave_agent_agencies','45'),(1352,380,'_primary_term_agent_category','4'),(1353,380,'_edit_lock','1600543205:1'),(1354,383,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1355,384,'_wp_attached_file','2018/11/Kim_Drakulich.jpg'),(1356,384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:752;s:6:\"height\";i:752;s:4:\"file\";s:25:\"2018/11/Kim_Drakulich.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-752x600.jpg\";s:5:\"width\";i:752;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-752x430.jpg\";s:5:\"width\";i:752;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-752x738.jpg\";s:5:\"width\";i:752;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-752x610.jpg\";s:5:\"width\";i:752;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:19:\"Christos Van Nathan\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1541171010\";s:9:\"copyright\";s:31:\"Christos Van Nathan photography\";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:{}}}'),(1357,383,'_edit_last','1'),(1358,383,'_thumbnail_id','2113'),(1360,383,'fave_agent_email','kim@kimsellsconcord.com'),(1361,383,'fave_agent_position','Licensed Agent'),(1362,383,'fave_agent_company','Lantern Realty and Development'),(1363,383,'fave_agent_mobile','(704) 778-6959'),(1364,383,'fave_agent_website','lantern-realty.com'),(1365,383,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1366,383,'fave_agent_agencies','45'),(1367,383,'_primary_term_agent_category','4'),(1368,383,'_edit_lock','1637540748:1'),(1372,387,'_wp_attached_file','2018/11/Lisa_Crowder.jpg'),(1373,387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:768;s:4:\"file\";s:24:\"2018/11/Lisa_Crowder.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-768x600.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-768x430.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-768x738.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-768x610.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1541170972\";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:{}}}'),(3393,373,'fave_agent_logo','22'),(3234,370,'fave_agent_logo','22'),(3261,380,'fave_agent_logo','22'),(11665,383,'fave_agent_logo','22'),(3330,377,'fave_agent_logo','22'),(1390,390,'_edit_last','1'),(1391,390,'_edit_lock','1600544323:1'),(1392,391,'_wp_attached_file','2019/01/Melissa-Jackling.jpg'),(1393,391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:286;s:6:\"height\";i:273;s:4:\"file\";s:28:\"2019/01/Melissa-Jackling.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Melissa-Jackling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Melissa-Jackling-150x143.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Melissa-Jackling-286x258.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Melissa-Jackling-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546626404\";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:{}}}'),(1394,390,'_thumbnail_id','391'),(1395,390,'slide_template',''),(1396,390,'fave_agent_email','onlymyrealtormelissa@gmail.com'),(1397,390,'fave_agent_position','Licensed Agent'),(1398,390,'fave_agent_company','Lantern Realty and Development'),(1399,390,'fave_agent_mobile','980-621-4623'),(1400,390,'fave_agent_website','https://lantern-realty.com/'),(1401,390,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3346,390,'fave_agent_logo','28'),(1403,390,'fave_agent_agencies','45'),(1404,390,'_primary_term_agent_category','4'),(1405,393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1406,393,'_edit_last','1'),(1407,393,'_edit_lock','1600543897:1'),(1408,394,'_wp_attached_file','2019/01/Lynnette-Gearing.jpg'),(1409,394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1099;s:6:\"height\";i:1203;s:4:\"file\";s:28:\"2019/01/Lynnette-Gearing.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-768x841.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:841;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Lynnette-Gearing-935x1024.jpg\";s:5:\"width\";i:935;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-137x150.jpg\";s:5:\"width\";i:137;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:29:\"Lynnette-Gearing-1099x600.jpg\";s:5:\"width\";i:1099;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:29:\"Lynnette-Gearing-1099x738.jpg\";s:5:\"width\";i:1099;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:29:\"Lynnette-Gearing-1099x610.jpg\";s:5:\"width\";i:1099;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-350x383.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-439x480.jpg\";s:5:\"width\";i:439;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546626021\";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:{}}}'),(1410,393,'_thumbnail_id','394'),(1411,393,'slide_template',''),(1426,380,'fave_agent_email','crystalcauble27@gmail.com'),(1427,380,'fave_agent_mobile','980-521-8431'),(1429,400,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1430,400,'_edit_last','1'),(1431,400,'_edit_lock','1600544411:1'),(1432,401,'_wp_attached_file','2019/01/Lindsey_McCauley.jpg'),(1433,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:824;s:6:\"height\";i:724;s:4:\"file\";s:28:\"2019/01/Lindsey_McCauley.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-768x675.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-150x132.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-824x600.jpg\";s:5:\"width\";i:824;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-824x610.jpg\";s:5:\"width\";i:824;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-350x308.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-546x480.jpg\";s:5:\"width\";i:546;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1547400143\";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:{}}}'),(1413,393,'fave_agent_email','lynnettegearing.realtor@gmail.com'),(1414,393,'fave_agent_position','Licensed Agent'),(1415,393,'fave_agent_company','Lantern Realty and Development'),(1416,393,'fave_agent_mobile','704-699-6902'),(1417,393,'fave_agent_website','lantern-realty.com'),(1418,393,'fave_agent_facebook','facebook.com/lanternrealty'),(3318,393,'fave_agent_logo','28'),(1420,393,'fave_agent_agencies','45'),(1421,393,'_primary_term_agent_category','4'),(1434,400,'_thumbnail_id','401'),(1435,400,'slide_template',''),(1436,400,'fave_agent_email','lmccauley727@gmail.com'),(1437,400,'fave_agent_position','Licensed Agent'),(1438,400,'fave_agent_company','Lantern Realty and Development'),(1439,400,'fave_agent_mobile','704-236-7850'),(1440,400,'fave_agent_website','lantern-realty.com'),(1441,400,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3354,400,'fave_agent_logo','22'),(1443,400,'fave_agent_agencies','45'),(1444,400,'_primary_term_agent_category','4'),(1455,377,'fave_agent_mobile','704-608-7893'),(1457,411,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1458,411,'_edit_lock','1602978397:1'),(1459,411,'_edit_last','1'),(1460,411,'fave_agent_email','sheila.allison10@gmail.com'),(1461,411,'fave_agent_position','Licensed Agent'),(1462,411,'fave_agent_company','Lantern Realty and Development'),(1463,411,'fave_agent_mobile','828-712-7843'),(1464,411,'fave_agent_website','lantern-realty.com'),(1465,411,'fave_agent_facebook','facebook.com/lanternrealty'),(5729,411,'fave_agent_logo','22'),(1467,411,'slide_template',''),(1469,414,'_wp_attached_file','2019/02/Sheila-Allison.jpg'),(1470,414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1714;s:6:\"height\";i:1728;s:4:\"file\";s:26:\"2019/02/Sheila-Allison.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-768x774.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:774;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Sheila-Allison-1016x1024.jpg\";s:5:\"width\";i:1016;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Sheila-Allison-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:27:\"Sheila-Allison-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Sheila-Allison-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-350x353.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-476x480.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549630568\";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:{}}}'),(1471,411,'_thumbnail_id','414'),(1473,411,'fave_agent_agencies','759'),(1475,411,'_primary_term_agent_category','4'),(1476,416,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1477,416,'_edit_lock','1600542968:1'),(1478,417,'_wp_attached_file','2019/02/Casey-Barber.jpg'),(1479,417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:618;s:4:\"file\";s:24:\"2019/02/Casey-Barber.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-133x150.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-550x340.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-550x430.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-550x610.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-350x393.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-427x480.jpg\";s:5:\"width\";i:427;s:6:\"height\";i:480;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:18:\"Canon EOS Rebel T6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1542803702\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1480,416,'_thumbnail_id','417'),(1481,416,'_edit_last','1'),(1482,416,'fave_agent_email','casey.m.barber@gmail.com'),(1483,416,'fave_agent_position','Licensed Agent'),(1484,416,'fave_agent_company','Lantern Realty and Development'),(1485,416,'fave_agent_mobile','678-516-5196'),(1486,416,'fave_agent_website','lantern-realty.com'),(1487,416,'fave_agent_facebook','facebook.com/lanternrealty'),(3238,416,'fave_agent_logo','22'),(1489,416,'fave_agent_agencies','45'),(1490,416,'_primary_term_agent_category','4'),(1491,416,'slide_template',''),(1492,419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1493,419,'_edit_lock','1600543980:1'),(1494,419,'_edit_last','1'),(1495,419,'fave_agent_position','Licensed Agent'),(1496,419,'fave_agent_company','Lantern Realty and Development'),(3329,419,'fave_agent_logo','22'),(1498,419,'fave_agent_agencies','45'),(1499,419,'slide_template',''),(1500,421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1501,421,'_edit_lock','1588015657:1'),(1502,421,'_edit_last','1'),(1503,421,'fave_agent_email','ejhenry01970@gmail.com'),(1504,421,'fave_agent_position','Licensed Agent'),(1505,421,'fave_agent_company','Lantern Realty and Development'),(1506,421,'fave_agent_mobile','704-701-1491'),(1507,421,'fave_agent_website','lantern-realty.com'),(1508,421,'fave_agent_facebook','facebook.com/lanternrealty'),(2079,421,'fave_agent_logo','22'),(1510,421,'slide_template',''),(1511,423,'_wp_attached_file','2019/02/Erica-Henry.jpg'),(1512,423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2088;s:6:\"height\";i:2318;s:4:\"file\";s:23:\"2019/02/Erica-Henry.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-768x853.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Erica-Henry-922x1024.jpg\";s:5:\"width\";i:922;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Erica-Henry-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Erica-Henry-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Erica-Henry-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-350x389.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:389;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-432x480.jpg\";s:5:\"width\";i:432;s:6:\"height\";i:480;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 D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1521704403\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"66\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1513,421,'_thumbnail_id','423'),(1515,421,'fave_agent_agencies','45'),(1517,421,'_primary_term_agent_category','6'),(1518,424,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1519,424,'_edit_lock','1600616087:1'),(1520,425,'_wp_attached_file','2019/02/Melissa-LaCroix.jpg'),(1521,425,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2383;s:6:\"height\";i:2412;s:4:\"file\";s:27:\"2019/02/Melissa-LaCroix.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-296x300.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-768x777.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:777;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Melissa-LaCroix-1012x1024.jpg\";s:5:\"width\";i:1012;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-148x150.jpg\";s:5:\"width\";i:148;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:28:\"Melissa-LaCroix-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:28:\"Melissa-LaCroix-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:28:\"Melissa-LaCroix-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-350x354.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-474x480.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535444900\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1522,424,'_thumbnail_id','425'),(1523,424,'_edit_last','1'),(1524,424,'fave_agent_email','mlacroix.realty@gmail.com'),(1525,424,'fave_agent_position','Licensed Agent'),(1526,424,'fave_agent_company','Lantern Realty and Development'),(1527,424,'fave_agent_mobile','704-796-6531'),(1528,424,'fave_agent_website','lantern-realty.com'),(1529,424,'fave_agent_facebook','facebook.com/lanternrealty'),(3951,424,'fave_agent_logo','22'),(1531,424,'fave_agent_agencies','45'),(1532,424,'_primary_term_agent_category','4'),(1533,424,'slide_template',''),(1534,427,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1535,427,'_edit_lock','1651356167:1'),(1536,428,'_wp_attached_file','2019/02/Sandi-Laney.jpg'),(1537,428,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1219;s:6:\"height\";i:1362;s:4:\"file\";s:23:\"2019/02/Sandi-Laney.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-768x858.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:858;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Sandi-Laney-916x1024.jpg\";s:5:\"width\";i:916;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-134x150.jpg\";s:5:\"width\";i:134;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Sandi-Laney-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Sandi-Laney-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Sandi-Laney-1219x610.jpg\";s:5:\"width\";i:1219;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-350x391.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-430x480.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"LM-V405\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548326868\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.23\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1538,427,'_thumbnail_id','428'),(1539,427,'_edit_last','1'),(1540,427,'fave_agent_email','sandilaney2@gmail.com'),(1541,427,'fave_agent_position','Licensed Agent'),(1542,427,'fave_agent_company','Lantern Realty and Development'),(1543,427,'fave_agent_mobile','704-773-5886'),(1544,427,'fave_agent_website','lantern-realty.com'),(1545,427,'fave_agent_facebook','facebook.com/lanternrealty'),(3374,427,'fave_agent_logo','22'),(1547,427,'fave_agent_agencies','45'),(1548,427,'_primary_term_agent_category','4'),(1550,430,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1551,430,'_edit_lock','1600544708:1'),(1552,431,'_wp_attached_file','2019/02/Laura-Overcash.jpg'),(1553,431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:284;s:6:\"height\";i:323;s:4:\"file\";s:26:\"2019/02/Laura-Overcash.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-264x300.jpg\";s:5:\"width\";i:264;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-132x150.jpg\";s:5:\"width\";i:132;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-284x258.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-284x280.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1516792912\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"62\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1554,430,'_thumbnail_id','431'),(1555,430,'_edit_last','1'),(1556,430,'fave_agent_email','lovercashre@gmail.com'),(1557,430,'fave_agent_position','Licensed Agent'),(1558,430,'fave_agent_company','Lantern Realty and Development'),(1559,430,'fave_agent_mobile','704-699-0765'),(1560,430,'fave_agent_website','lantern-realty.com'),(1561,430,'fave_agent_facebook','facebook.com/lanternrealty'),(3372,430,'fave_agent_logo','22'),(1563,430,'fave_agent_agencies','45'),(1564,430,'_primary_term_agent_category','4'),(1565,430,'slide_template',''),(1665,467,'_wp_attached_file','2019/05/Farm-Bureau.png'),(1568,434,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1569,434,'_edit_lock','1600546217:1'),(1570,434,'_edit_last','1'),(1571,434,'fave_agent_position','Licensed Agent'),(1572,434,'fave_agent_company','Lantern Realty and Development'),(1573,434,'fave_agent_website','lantern-realty.com'),(1574,434,'fave_agent_facebook','facebook.com/lanternrealty'),(3376,434,'fave_agent_logo','22'),(1576,434,'fave_agent_agencies','758'),(1577,434,'_primary_term_agent_category','4'),(1578,434,'slide_template',''),(1579,436,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1580,436,'_edit_lock','1573841428:1'),(1581,437,'_wp_attached_file','2019/02/Jill-Sawant.jpg'),(1582,437,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1971;s:6:\"height\";i:1842;s:4:\"file\";s:23:\"2019/02/Jill-Sawant.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-300x280.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-768x718.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Jill-Sawant-1024x957.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:957;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Jill-Sawant-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Jill-Sawant-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Jill-Sawant-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-350x327.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-514x480.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:27:\"Canon EOS DIGITAL REBEL XTi\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1516933980\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"92\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1583,436,'_thumbnail_id','437'),(1584,436,'_edit_last','1'),(1585,436,'fave_agent_email','jill@sawantrealtygroup.com'),(1586,436,'fave_agent_position','Licensed Agent'),(1587,436,'fave_agent_company','Lantern Realty and Development'),(1588,436,'fave_agent_website','lantern-realty.com'),(1589,436,'fave_agent_facebook','facebook.com/lanternrealty'),(1590,436,'fave_agent_logo','22'),(1591,436,'fave_agent_agencies','45'),(1592,436,'_primary_term_agent_category','4'),(1593,436,'slide_template',''),(1594,439,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1595,439,'_edit_lock','1600546292:1'),(1596,440,'_wp_attached_file','2019/02/John-Suther.jpg'),(1597,440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3520;s:6:\"height\";i:4032;s:4:\"file\";s:23:\"2019/02/John-Suther.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"John-Suther-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"John-Suther-262x300.jpg\";s:5:\"width\";i:262;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"John-Suther-768x880.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"John-Suther-894x1024.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"John-Suther-131x150.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"John-Suther-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"John-Suther-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"John-Suther-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"John-Suther-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"John-Suther-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"John-Suther-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"John-Suther-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"John-Suther-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"John-Suther-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"John-Suther-350x401.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"John-Suther-419x480.jpg\";s:5:\"width\";i:419;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 6D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1543417312\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1598,439,'_thumbnail_id','440'),(1599,439,'_edit_last','1'),(1600,439,'fave_agent_email','johnsutherllc@gmail.com'),(1601,439,'fave_agent_position','Licensed Agent'),(1602,439,'fave_agent_company','Lantern Realty and Development'),(1603,439,'fave_agent_mobile','704-622-1432'),(1604,439,'fave_agent_website','lantern-realty.com'),(1605,439,'fave_agent_facebook','facebook.com/lanternrealty'),(3384,439,'fave_agent_logo','22'),(1607,439,'fave_agent_agencies','45'),(1608,439,'_primary_term_agent_category','4'),(1609,439,'slide_template',''),(1610,442,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1611,442,'_edit_lock','1645148725:1'),(1612,442,'_edit_last','1'),(1613,442,'fave_agent_position','Licensed Agent'),(1614,442,'fave_agent_company','Lantern Realty and Development'),(1615,442,'fave_agent_website','lantern-realty.com'),(1616,442,'fave_agent_facebook','facebook.com/lanternrealty'),(3386,442,'fave_agent_logo','22'),(1618,442,'fave_agent_agencies','45'),(1619,442,'_primary_term_agent_category','4'),(1621,444,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1622,444,'_edit_lock','1600546349:1'),(1623,445,'_wp_attached_file','2019/02/Todd-Wooley.jpg'),(1624,445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1427;s:6:\"height\";i:1435;s:4:\"file\";s:23:\"2019/02/Todd-Wooley.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-768x772.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:772;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Todd-Wooley-1018x1024.jpg\";s:5:\"width\";i:1018;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Todd-Wooley-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Todd-Wooley-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Todd-Wooley-1427x610.jpg\";s:5:\"width\";i:1427;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-350x352.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-477x480.jpg\";s:5:\"width\";i:477;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549631956\";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:{}}}'),(1625,444,'_thumbnail_id','445'),(1626,444,'_edit_last','1'),(1627,444,'fave_agent_email','twooleyrealty@gmail.com'),(1628,444,'fave_agent_position','Licensed Agent'),(1629,444,'fave_agent_company','Lantern Realty and Development'),(1630,444,'fave_agent_mobile','704-904-7162'),(1631,444,'fave_agent_website','lantern-realty.com'),(1632,444,'fave_agent_facebook','facebook.com/lanternrealty'),(3389,444,'fave_agent_logo','22'),(1634,444,'fave_agent_agencies','45'),(1635,444,'_primary_term_agent_category','4'),(1636,444,'slide_template',''),(1637,448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1638,448,'_edit_last','1'),(1639,448,'_edit_lock','1549654961:1'),(1640,449,'_wp_attached_file','2019/02/PARTNER-Terry-Whitesell.jpg'),(1641,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:278;s:4:\"file\";s:35:\"2019/02/PARTNER-Terry-Whitesell.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"PARTNER-Terry-Whitesell-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"PARTNER-Terry-Whitesell-121x150.jpg\";s:5:\"width\";i:121;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:35:\"PARTNER-Terry-Whitesell-224x258.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:35:\"PARTNER-Terry-Whitesell-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Jessica Cook\";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:{}}}'),(1642,448,'_thumbnail_id','451'),(1643,448,'slide_template','default'),(1644,448,'fave_partner_website','http://www.terrywhitesell.com/'),(1645,451,'_wp_attached_file','2019/02/Terry-Whitesell.png'),(1646,451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:952;s:6:\"height\";i:444;s:4:\"file\";s:27:\"2019/02/Terry-Whitesell.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-768x358.png\";s:5:\"width\";i:768;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Terry-Whitesell-150x70.png\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-570x340.png\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-810x430.png\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-350x163.png\";s:5:\"width\";i:350;s:6:\"height\";i:163;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1647,452,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1648,452,'_edit_last','1'),(1649,452,'_edit_lock','1549655177:1'),(1650,453,'_wp_attached_file','2019/02/HomeWarrantyofAmerica.jpg'),(1651,453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:331;s:6:\"height\";i:144;s:4:\"file\";s:33:\"2019/02/HomeWarrantyofAmerica.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"HomeWarrantyofAmerica-150x144.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"HomeWarrantyofAmerica-300x131.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"HomeWarrantyofAmerica-150x65.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:33:\"HomeWarrantyofAmerica-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;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:11:\"HWA - 13 mo\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1652,452,'_thumbnail_id','453'),(1653,452,'slide_template','default'),(1654,452,'fave_partner_website','https://www.hwahomewarranty.com/'),(1655,455,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1656,455,'_edit_last','1'),(1657,455,'_edit_lock','1549655224:1'),(1658,456,'_wp_attached_file','2019/02/KnippLaw.jpg'),(1659,456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:272;s:4:\"file\";s:20:\"2019/02/KnippLaw.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"KnippLaw-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"KnippLaw-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"KnippLaw-150x82.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:20:\"KnippLaw-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:20:\"KnippLaw-380x272.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:20:\"KnippLaw-350x272.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:20:\"KnippLaw-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"KnippLaw-350x190.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:190;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:{}}}'),(1660,455,'_thumbnail_id','456'),(1661,455,'slide_template','default'),(1662,455,'fave_partner_website','https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/'),(1666,467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:496;s:4:\"file\";s:23:\"2019/05/Farm-Bureau.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-300x194.png\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-768x496.png\";s:5:\"width\";i:768;s:6:\"height\";i:496;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Farm-Bureau-150x97.png\";s:5:\"width\";i:150;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-570x340.png\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-768x430.png\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-350x226.png\";s:5:\"width\";i:350;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-743x480.png\";s:5:\"width\";i:743;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1667,468,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1668,468,'_edit_lock','1600542992:1'),(1669,468,'_thumbnail_id','541'),(1670,468,'_edit_last','1'),(1671,468,'fave_agent_email','rbendig89@gmail.com'),(1672,468,'fave_agent_position','Licensed Agent'),(1673,468,'fave_agent_company','Lantern Realty and Development'),(1674,468,'fave_agent_mobile','(704) 640-4171'),(1675,468,'fave_agent_website','lantern-realty.com'),(1676,468,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3240,468,'fave_agent_logo','22'),(1678,468,'fave_agent_agencies','757'),(1679,468,'_primary_term_agent_category','4'),(1680,468,'slide_template',''),(1681,470,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1682,470,'_edit_lock','1645147799:1'),(1683,471,'_wp_attached_file','2019/06/Jessica_Cloward.jpg'),(1684,471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:426;s:4:\"file\";s:27:\"2019/06/Jessica_Cloward.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-127x150.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-362x258.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-362x280.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-362x340.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-350x412.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:412;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:{}}}'),(1685,470,'_thumbnail_id','2261'),(1686,470,'_edit_last','1'),(1687,470,'fave_agent_email','jessicacloward1@gmail.com'),(1688,470,'fave_agent_position','Licensed Agent'),(1689,470,'fave_agent_company','Lantern Realty and Development'),(1690,470,'fave_agent_mobile','(704) 502-8383'),(1691,470,'fave_agent_website','lantern-realty.com'),(1692,470,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11940,470,'fave_agent_logo','22'),(1694,470,'fave_agent_agencies','757'),(1695,470,'_primary_term_agent_category','4'),(11941,819,'fave_agent_visible','0'),(1697,473,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1698,473,'_edit_lock','1637540519:1'),(1699,474,'_wp_attached_file','2019/06/Kimberly_Howell.jpg'),(1700,474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:539;s:6:\"height\";i:539;s:4:\"file\";s:27:\"2019/06/Kimberly_Howell.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-539x340.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-539x430.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;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:{}}}'),(1701,473,'_thumbnail_id','474'),(1702,473,'_edit_last','1'),(1703,473,'fave_agent_email','kdhowell1996@gmail.com'),(1704,473,'fave_agent_position','Licensed Agent'),(1705,473,'fave_agent_company','Lantern Realty and Development'),(1706,473,'fave_agent_mobile','(704) 699-2600'),(1707,473,'fave_agent_website','lantern-realty.com'),(1708,473,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3344,473,'fave_agent_logo','22'),(1710,473,'fave_agent_agencies','757'),(1711,473,'_primary_term_agent_category','4'),(1713,476,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1714,476,'_edit_lock','1600544340:1'),(1715,476,'_thumbnail_id','543'),(1716,476,'_edit_last','1'),(1717,476,'fave_agent_email','cjalynskirealty@gmail.com'),(1718,476,'fave_agent_position','Licensed Agent'),(1719,476,'fave_agent_company','Lantern Realty and Development'),(1720,476,'fave_agent_mobile','(704) 749-4944'),(1721,476,'fave_agent_website','lantern-realty.com'),(1722,476,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3348,476,'fave_agent_logo','22'),(1724,476,'fave_agent_agencies','45'),(1725,476,'_primary_term_agent_category','4'),(1726,476,'slide_template',''),(1727,478,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1728,478,'_edit_lock','1588015803:1'),(1729,479,'_wp_attached_file','2019/06/Leslie_Liles.jpeg'),(1730,479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:747;s:4:\"file\";s:25:\"2019/06/Leslie_Liles.jpeg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-281x300.jpeg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-141x150.jpeg\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-700x600.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-570x340.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-700x430.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-700x738.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-700x610.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-350x374.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-450x480.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:480;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:{}}}'),(1731,478,'_thumbnail_id','479'),(1732,478,'_edit_last','1'),(1733,478,'fave_agent_email','leslieloo32@gmail.com'),(1734,478,'fave_agent_position','Licensed Agent'),(1735,478,'fave_agent_company','Lantern Realty and Development'),(1736,478,'fave_agent_mobile','(704) 984-2139'),(1737,478,'fave_agent_website','lantern-realty.com'),(1738,478,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2077,478,'fave_agent_logo','22'),(1740,478,'_primary_term_agent_category','6'),(1741,478,'slide_template',''),(1742,481,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1743,481,'_edit_lock','1630720136:1'),(1744,482,'_wp_attached_file','2019/06/Helen_Matthews.jpg'),(1745,482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:749;s:4:\"file\";s:26:\"2019/06/Helen_Matthews.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-280x300.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-140x150.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-700x600.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-700x430.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-700x738.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-700x610.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-350x375.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-449x480.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535447290\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"58\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1746,481,'_thumbnail_id','482'),(1747,481,'_edit_last','1'),(1748,481,'fave_agent_email','helenrobb4@gmail.com'),(1749,481,'fave_agent_position','Licensed Agent'),(1750,481,'fave_agent_company','Lantern Realty and Development'),(1751,481,'fave_agent_mobile','(704) 796-4026'),(1752,481,'fave_agent_website','lantern-realty.com'),(1753,481,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11453,481,'fave_agent_logo','22'),(1755,481,'fave_agent_agencies','45'),(1756,481,'_primary_term_agent_category','4'),(11456,2077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1758,484,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1759,484,'_edit_lock','1645148385:1'),(1760,485,'_wp_attached_file','2019/06/Julie_Nutter.jpg'),(1761,485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:748;s:4:\"file\";s:24:\"2019/06/Julie_Nutter.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-140x150.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-700x600.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-700x430.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-700x738.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-700x610.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-350x374.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-449x480.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:480;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:{}}}'),(1762,484,'_thumbnail_id','2267'),(1763,484,'_edit_last','1'),(1764,484,'fave_agent_email','teamnutter@gmail.com'),(1765,484,'fave_agent_position','Licensed Agent'),(1766,484,'fave_agent_company','Lantern Realty and Development'),(1767,484,'fave_agent_mobile','(240) 888-7493'),(1768,484,'fave_agent_website','lantern-realty.com'),(1769,484,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11952,484,'fave_agent_logo','22'),(1771,484,'fave_agent_agencies','45'),(1772,484,'_primary_term_agent_category','4'),(11949,2267,'_wp_attached_file','2019/06/Julie_Nutter-2.jpg'),(1774,487,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1775,487,'_edit_lock','1613657814:1'),(1776,487,'_thumbnail_id','22'),(1777,487,'_edit_last','1'),(1778,487,'fave_agent_email','ncrealtorlisa@gmail.com'),(1779,487,'fave_agent_position','Licensed Agent'),(1780,487,'fave_agent_company','Lantern Realty and Development'),(1781,487,'fave_agent_mobile','(704) 288-7392'),(1782,487,'fave_agent_website','lantern-realty.com'),(1783,487,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3338,487,'fave_agent_logo','22'),(1785,487,'fave_agent_agencies','758'),(1786,487,'_primary_term_agent_category','4'),(1787,487,'slide_template',''),(1788,489,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1789,489,'_edit_lock','1573841251:1'),(1790,490,'_wp_attached_file','2019/06/Bridgett_Quinn.jpeg'),(1791,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:783;s:4:\"file\";s:27:\"2019/06/Bridgett_Quinn.jpeg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-268x300.jpeg\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-134x150.jpeg\";s:5:\"width\";i:134;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-700x600.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-570x340.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-700x430.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-700x738.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-700x610.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-350x392.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-429x480.jpeg\";s:5:\"width\";i:429;s:6:\"height\";i:480;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:{}}}'),(1792,489,'_thumbnail_id','490'),(1793,489,'_edit_last','1'),(1794,489,'fave_agent_email','bquinnrealty@gmail.com'),(1795,489,'fave_agent_position','Licensed Agent'),(1796,489,'fave_agent_company','Lantern Realty and Development'),(1797,489,'fave_agent_mobile','(704) 724-9172'),(1798,489,'fave_agent_website','lantern-realty.com'),(1799,489,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2081,489,'fave_agent_logo','22'),(1801,489,'fave_agent_agencies','45'),(1802,489,'_primary_term_agent_category','6'),(1803,489,'slide_template',''),(1866,504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1744;s:6:\"height\";i:1761;s:4:\"file\";s:24:\"2019/07/kelly_keller.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"kelly_keller-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"kelly_keller-297x300.jpg\";s:5:\"width\";i:297;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"kelly_keller-768x775.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:775;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"kelly_keller-1014x1024.jpg\";s:5:\"width\";i:1014;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"kelly_keller-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"kelly_keller-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"kelly_keller-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"kelly_keller-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"kelly_keller-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"kelly_keller-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"kelly_keller-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"kelly_keller-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"kelly_keller-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"kelly_keller-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"kelly_keller-350x353.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"kelly_keller-475x480.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:16:\"SAMSUNG-SM-G930A\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1563470107\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.2\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:16:\"0.00126582278481\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1865,504,'_wp_attached_file','2019/07/kelly_keller.jpg'),(1864,503,'_edit_lock','1600544386:1'),(1863,503,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2060,542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1537;s:6:\"height\";i:1531;s:4:\"file\";s:24:\"2019/06/Bret_Leonard.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-768x765.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Bret_Leonard-1024x1020.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Bret_Leonard-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"Bret_Leonard-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Bret_Leonard-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-350x349.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-482x480.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1559930173\";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:{}}}'),(1835,497,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1836,497,'_edit_lock','1600544280:1'),(1837,497,'_thumbnail_id','542'),(1838,497,'_edit_last','1'),(1839,497,'fave_agent_email','buywithbret@gmail.com'),(1840,497,'fave_agent_position','Licensed Agent'),(1841,497,'fave_agent_company','Lantern Realty and Development'),(1842,497,'fave_agent_mobile','(980) 521-7156'),(1843,497,'fave_agent_website','lantern-realty.com'),(1844,497,'fave_agent_facebook','facebook.com/lanternrealty'),(3342,497,'fave_agent_logo','22'),(1846,497,'fave_agent_agencies','757'),(1847,497,'_primary_term_agent_category','4'),(1848,497,'slide_template',''),(1849,499,'_wp_attached_file','2019/02/Donna_Hawkins.jpg'),(1850,499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:722;s:4:\"file\";s:25:\"2019/02/Donna_Hawkins.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-291x300.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-145x150.jpg\";s:5:\"width\";i:145;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-700x600.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-700x430.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-700x610.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-350x361.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-465x480.jpg\";s:5:\"width\";i:465;s:6:\"height\";i:480;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:{}}}'),(1851,419,'_thumbnail_id','499'),(1853,419,'_primary_term_agent_category','6'),(1854,500,'_wp_attached_file','2019/02/Rick_Rhew.png'),(1855,500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:178;s:6:\"height\";i:178;s:4:\"file\";s:21:\"2019/02/Rick_Rhew.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Rick_Rhew-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Rick_Rhew-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:21:\"Rick_Rhew-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1856,434,'_thumbnail_id','500'),(1858,501,'_wp_attached_file','2019/02/Chuck_Thompson.jpg'),(1859,501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:97;s:6:\"height\";i:150;s:4:\"file\";s:26:\"2019/02/Chuck_Thompson.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Chuck_Thompson-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Chuck_Thompson-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Chuck_Thompson-97x110.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:110;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:{}}}'),(1860,442,'_thumbnail_id','501'),(1867,503,'_thumbnail_id','504'),(1868,503,'_edit_last','1'),(1869,503,'fave_agent_email','kelly.keller.realty@gmail.com'),(1870,503,'fave_agent_position','Licensed Agent'),(1871,503,'fave_agent_company','Lantern Realty and Development'),(1872,503,'fave_agent_mobile','704-467-4485'),(1873,503,'fave_agent_facebook','http://facebook.com/lanternrealty'),(3352,503,'fave_agent_logo','22'),(1875,503,'fave_agent_agencies','45'),(1876,503,'_primary_term_agent_category','4'),(1877,503,'slide_template',''),(1880,508,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1881,508,'_edit_lock','1639143078:1'),(1882,508,'_edit_last','1'),(1883,508,'fave_default_view','list_view'),(1884,508,'fave_properties_sort','d_date'),(1885,508,'fave_featured_prop_no','4'),(1886,508,'fave_prop_no','9'),(1887,508,'fave_listings_tabs','enable'),(1888,508,'fave_prop_no_halfmap','9'),(1889,508,'fave_properties_sort_halfmap','d_date'),(1890,508,'fave_agency_orderby','None'),(1891,508,'fave_agency_order','ASC'),(1892,508,'fave_agent_orderby','None'),(1893,508,'fave_agent_order','ASC'),(1894,508,'fave_page_title','show'),(1895,508,'fave_page_breadcrumb','show'),(1896,508,'fave_page_sidebar','right_sidebar'),(1897,508,'fave_page_background','yes'),(1898,508,'fave_header_type','none'),(1899,508,'fave_header_full_screen','0'),(1900,508,'fave_header_full_screen_type','screen_fix'),(1901,508,'fave_page_header_search','0'),(1902,508,'fave_page_header_image_opacity','0.5'),(1903,508,'fave_page_header_video_overlay','yes'),(1904,508,'fave_main_menu_trans','no'),(1905,508,'fave_adv_search_enable','global'),(1906,508,'fave_adv_search','hide'),(1907,508,'fave_adv_search_pos','under_menu'),(1908,508,'slide_template','default'),(1909,508,'_wpb_vc_js_status','false'),(1910,508,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(1911,508,'_wp_page_template',''),(1912,514,'_wp_attached_file','2019/10/Geico_Matthew_Young.png'),(1913,514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2019/10/Geico_Matthew_Young.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-300x252.png\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-150x126.png\";s:5:\"width\";i:150;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-570x340.png\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-626x430.png\";s:5:\"width\";i:626;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-350x294.png\";s:5:\"width\";i:350;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-572x480.png\";s:5:\"width\";i:572;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1914,515,'_wp_attached_file','2019/10/Geico-Logo.png'),(1915,515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:29;s:4:\"file\";s:22:\"2019/10/Geico-Logo.png\";s:5:\"sizes\";a:0:{}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:{}}}'),(1916,517,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1917,517,'_menu_item_type','post_type'),(1918,517,'_menu_item_menu_item_parent','156'),(1919,517,'_menu_item_object_id','508'),(1920,517,'_menu_item_object','page'),(1921,517,'_menu_item_target',''),(1922,517,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1923,517,'_menu_item_xfn',''),(1924,517,'_menu_item_url',''),(2059,542,'_wp_attached_file','2019/06/Bret_Leonard.jpg'),(1926,518,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1927,518,'_menu_item_type','post_type'),(1928,518,'_menu_item_menu_item_parent','157'),(1929,518,'_menu_item_object_id','508'),(1930,518,'_menu_item_object','page'),(1931,518,'_menu_item_target',''),(1932,518,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1933,518,'_menu_item_xfn',''),(1934,518,'_menu_item_url',''),(2057,541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:247;s:6:\"height\";i:272;s:4:\"file\";s:25:\"2019/06/Robbie_Bendig.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Robbie_Bendig-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Robbie_Bendig-136x150.jpg\";s:5:\"width\";i:136;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Robbie_Bendig-247x258.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Robbie_Bendig-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;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 D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1431733679\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2056,541,'_wp_attached_file','2019/06/Robbie_Bendig.jpg'),(2054,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:336;s:6:\"height\";i:280;s:4:\"file\";s:36:\"2019/11/Freedom_Mortgage_336x280.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-300x250.gif\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-150x125.gif\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/gif\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-336x258.gif\";s:5:\"width\";i:336;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/gif\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-336x280.gif\";s:5:\"width\";i:336;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-150x110.gif\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}}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:{}}}'),(2046,535,'_menu_item_object_id','535'),(2047,535,'_menu_item_object','custom'),(2048,535,'_menu_item_target',''),(2049,535,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2050,535,'_menu_item_xfn',''),(2051,535,'_menu_item_url','https://ryanivory.excellencebyarc.com/'),(2053,536,'_wp_attached_file','2019/11/Freedom_Mortgage_336x280.gif'),(2043,535,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2044,535,'_menu_item_type','custom'),(2045,535,'_menu_item_menu_item_parent','156'),(2010,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2011,528,'_edit_lock','1600616225:1'),(2012,529,'_wp_attached_file','2019/10/Brendas-Photo.jpg'),(2013,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2781;s:6:\"height\";i:3706;s:4:\"file\";s:25:\"2019/10/Brendas-Photo.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Brendas-Photo-768x1023.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Brendas-Photo-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Brendas-Photo-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Brendas-Photo-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Brendas-Photo-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-350x466.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-360x480.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 6s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1496753117\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2014,528,'_thumbnail_id','529'),(2015,528,'_edit_last','1'),(2016,528,'fave_agent_email','seniors2@twc.com'),(2017,528,'fave_agent_position','Licensed Agent'),(2018,528,'fave_agent_company','Lantern Realty and Development'),(2019,528,'fave_agent_mobile','704-796-1948'),(2020,528,'fave_agent_website','https://lantern-realty.com/'),(2021,528,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3953,528,'fave_agent_logo','28'),(2023,528,'fave_agent_agencies','45'),(2024,528,'_primary_term_agent_category','4'),(2025,528,'slide_template',''),(9286,1598,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2028,532,'_wp_attached_file','2019/10/Jessie_Henderson.jpeg'),(2029,532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:255;s:4:\"file\";s:29:\"2019/10/Jessie_Henderson.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Jessie_Henderson-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Jessie_Henderson-141x150.jpeg\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:29:\"Jessie_Henderson-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1570205630\";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:{}}}'),(2062,543,'_wp_attached_file','2019/06/Christine_Jalynski.jpeg'),(2063,543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1533;s:6:\"height\";i:1604;s:4:\"file\";s:31:\"2019/06/Christine_Jalynski.jpeg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-287x300.jpeg\";s:5:\"width\";i:287;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-768x804.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:804;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Christine_Jalynski-979x1024.jpeg\";s:5:\"width\";i:979;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-143x150.jpeg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:32:\"Christine_Jalynski-1170x600.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-570x340.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-810x430.jpeg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:32:\"Christine_Jalynski-1170x738.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:32:\"Christine_Jalynski-1440x610.jpeg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-350x366.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-459x480.jpeg\";s:5:\"width\";i:459;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1573817990\";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:{}}}'),(2065,503,'fave_agent_website','http://lantern-realty.com'),(2067,370,'fave_agent_email','kadaendeavorenterprises@gmail.com'),(2068,370,'fave_agent_mobile','704-773-0722'),(2070,419,'fave_agent_email','dhawkinsrealty64@gmail.com'),(2071,419,'fave_agent_license','Licensed Agent'),(2072,419,'fave_agent_mobile','704-310-8218'),(2073,419,'fave_agent_website','http://lantern-realty.com'),(2074,419,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2085,546,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2086,546,'_edit_lock','1600543010:1'),(2087,547,'_wp_attached_file','2019/11/Toni_Benton.jpg'),(2088,547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2563;s:6:\"height\";i:2146;s:4:\"file\";s:23:\"2019/11/Toni_Benton.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-768x643.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:643;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Toni_Benton-1024x857.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:857;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-150x126.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Toni_Benton-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Toni_Benton-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Toni_Benton-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-350x293.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-573x480.jpg\";s:5:\"width\";i:573;s:6:\"height\";i:480;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:27:\"Canon EOS DIGITAL REBEL XTi\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1555350497\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2089,546,'_thumbnail_id','547'),(2090,546,'_edit_last','1'),(2091,546,'fave_agent_email','tbenton81@gmail.com'),(2092,546,'fave_agent_position','Licensed Agent'),(2093,546,'fave_agent_company','Lantern Realty and Development'),(2094,546,'fave_agent_mobile','980-521-2696'),(2095,546,'fave_agent_website','https://lantern-realty.com/'),(2096,546,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3242,546,'fave_agent_logo','22'),(2098,546,'fave_agent_agencies','45'),(2099,546,'_primary_term_agent_category','7'),(2100,546,'slide_template',''),(2101,549,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2102,549,'_edit_lock','1600543223:1'),(2103,549,'_thumbnail_id','592'),(2104,549,'_edit_last','1'),(2105,549,'fave_agent_position','Licensed Agent'),(2106,549,'fave_agent_company','Lantern Realty and Development'),(2107,549,'fave_agent_website','https://lantern-realty.com/'),(2108,549,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2110,549,'fave_agent_agencies','45'),(2111,549,'_primary_term_agent_category','7'),(2112,549,'slide_template',''),(2113,551,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2114,551,'_edit_lock','1600543884:1'),(2115,551,'_thumbnail_id','627'),(2116,551,'_edit_last','1'),(2117,551,'fave_agent_position','Licensed Agent'),(2118,551,'fave_agent_company','Lantern Realty and Development'),(2119,551,'fave_agent_website','https://lantern-realty.com/'),(2120,551,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2122,551,'fave_agent_agencies','45'),(2123,551,'_primary_term_agent_category','7'),(2124,551,'slide_template',''),(2125,553,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2126,553,'_edit_lock','1600543931:1'),(2127,553,'_thumbnail_id','572'),(2128,553,'_edit_last','1'),(2129,553,'fave_agent_position','Licensed Agent'),(2130,553,'fave_agent_company','Lantern Realty and Development'),(2131,553,'fave_agent_website','https://lantern-realty.com/'),(2132,553,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2134,553,'fave_agent_agencies','45'),(2135,553,'_primary_term_agent_category','7'),(2136,553,'slide_template',''),(2137,555,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2138,555,'_edit_lock','1600544193:1'),(2139,556,'_wp_attached_file','2019/11/Hosanna_Hill.jpeg'),(2140,556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2729;s:6:\"height\";i:2703;s:4:\"file\";s:25:\"2019/11/Hosanna_Hill.jpeg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-300x297.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-768x761.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:761;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Hosanna_Hill-1024x1014.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1014;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Hosanna_Hill-1170x600.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-570x340.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-810x430.jpeg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Hosanna_Hill-1170x738.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Hosanna_Hill-1440x610.jpeg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-350x347.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-485x480.jpeg\";s:5:\"width\";i:485;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1573817705\";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:{}}}'),(2141,555,'_thumbnail_id','556'),(2142,555,'_edit_last','1'),(2143,555,'fave_agent_email','hill.hosanna@gmail.com'),(2144,555,'fave_agent_position','Licensed Agent'),(2145,555,'fave_agent_company','Lantern Realty and Development'),(2146,555,'fave_agent_mobile','336-317-8050'),(2147,555,'fave_agent_website','https://lantern-realty.com/'),(2148,555,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2149,555,'fave_agent_agencies','45'),(2150,555,'_primary_term_agent_category','7'),(2151,555,'slide_template',''),(2152,558,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2153,558,'_edit_lock','1600544429:1'),(2154,558,'_thumbnail_id','591'),(2155,558,'_edit_last','1'),(2156,558,'fave_agent_position','Licensed Agent'),(2157,558,'fave_agent_company','Lantern Realty and Development'),(2158,558,'fave_agent_website','https://lantern-realty.com/'),(2159,558,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2161,558,'fave_agent_agencies','758'),(2162,558,'_primary_term_agent_category','4'),(2163,558,'slide_template',''),(2164,560,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2165,560,'_edit_lock','1600546423:1'),(2166,561,'_wp_attached_file','2019/11/Kimberly_Trask.jpg'),(2167,561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3190;s:6:\"height\";i:3072;s:4:\"file\";s:26:\"2019/11/Kimberly_Trask.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-768x740.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:740;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Kimberly_Trask-1024x986.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:986;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-150x144.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Kimberly_Trask-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:27:\"Kimberly_Trask-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Kimberly_Trask-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-350x337.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-498x480.jpg\";s:5:\"width\";i:498;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1573817819\";s:9:\"copyright\";s:24:\"Rachel Wells Photography\";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:{}}}'),(2168,560,'_thumbnail_id','561'),(2169,560,'_edit_last','1'),(2170,560,'fave_agent_email','kimberlyktrask@gmail.com'),(2171,560,'fave_agent_position','Licensed Agent'),(2172,560,'fave_agent_company','Lantern Realty and Development'),(2173,560,'fave_agent_mobile','336-906-0848'),(2174,560,'fave_agent_website','https://lantern-realty.com/'),(2175,560,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3391,560,'fave_agent_logo','22'),(2177,560,'fave_agent_agencies','45'),(2178,560,'_primary_term_agent_category','7'),(2179,560,'slide_template',''),(2180,563,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2181,563,'_edit_lock','1656029205:1'),(2182,563,'_thumbnail_id','2333'),(2183,563,'_edit_last','1'),(2184,563,'fave_agent_position','Licensed Agent'),(2185,563,'fave_agent_company','Lantern Realty and Development'),(2186,563,'fave_agent_website','https://lantern-realty.com/'),(2187,563,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2189,563,'fave_agent_agencies','45'),(2190,563,'_primary_term_agent_category','7'),(2192,434,'fave_agent_email','ricksellsnc@gmail.com'),(2193,434,'fave_agent_mobile','704-491-2458'),(2195,442,'fave_agent_email','crtbroker@gmail.com'),(2196,442,'fave_agent_mobile','704-701-0129'),(2198,549,'fave_agent_email','ecaudill12@gmail.com'),(2199,549,'fave_agent_mobile','704-791-7012'),(2201,551,'fave_agent_email','ygarciarealty@gmail.com'),(2202,551,'fave_agent_mobile','704-907-9573'),(2204,553,'fave_agent_email','1cathyhager@gmail.com'),(2205,553,'fave_agent_mobile','980-521-4429'),(2207,558,'fave_agent_email','dmiltzrealtor@gmail.com'),(2208,558,'fave_agent_mobile','704-634-6289'),(2211,563,'fave_agent_email','briannewatsonrealtor@gmail.com'),(2212,563,'fave_agent_mobile','704-791-3272'),(2214,565,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2215,565,'_edit_lock','1613657579:1'),(2216,566,'_wp_attached_file','2019/11/April_Bird.jpg'),(2217,566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:434;s:6:\"height\";i:444;s:4:\"file\";s:22:\"2019/11/April_Bird.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"April_Bird-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"April_Bird-293x300.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"April_Bird-147x150.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:22:\"April_Bird-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:22:\"April_Bird-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:22:\"April_Bird-434x340.jpg\";s:5:\"width\";i:434;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:22:\"April_Bird-434x430.jpg\";s:5:\"width\";i:434;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:22:\"April_Bird-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:22:\"April_Bird-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"April_Bird-350x358.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1573817742\";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:{}}}'),(2218,565,'_thumbnail_id','566'),(2219,565,'_edit_last','1'),(2220,565,'fave_agent_email','abirdhomes@gmail.com'),(2221,565,'fave_agent_position','Licensed Agent'),(2222,565,'fave_agent_company','Lantern Realty and Development'),(2223,565,'fave_agent_mobile','901-569-3161'),(2224,565,'fave_agent_website','https://lantern-realty.com/'),(2225,565,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9256,565,'fave_agent_logo','22'),(2227,565,'fave_agent_agencies','760'),(2228,565,'_primary_term_agent_category','7'),(2229,565,'slide_template',''),(2297,589,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2505;s:6:\"height\";i:2560;s:4:\"file\";s:33:\"2019/11/Brianne_Watson-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-294x300.jpg\";s:5:\"width\";i:294;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Brianne_Watson-1002x1024.jpg\";s:5:\"width\";i:1002;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-768x785.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"Brianne_Watson-1503x1536.jpg\";s:5:\"width\";i:1503;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:28:\"Brianne_Watson-2004x2048.jpg\";s:5:\"width\";i:2004;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-147x150.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Brianne_Watson-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:27:\"Brianne_Watson-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Brianne_Watson-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-350x358.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-470x480.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:{}}s:14:\"original_image\";s:18:\"Brianne_Watson.jpg\";}'),(2234,572,'_wp_attached_file','2019/11/Cathy_Hager.jpg'),(2235,572,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:842;s:6:\"height\";i:887;s:4:\"file\";s:23:\"2019/11/Cathy_Hager.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-768x809.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:809;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-142x150.jpg\";s:5:\"width\";i:142;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-842x600.jpg\";s:5:\"width\";i:842;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-842x738.jpg\";s:5:\"width\";i:842;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-842x610.jpg\";s:5:\"width\";i:842;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-350x369.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-456x480.jpg\";s:5:\"width\";i:456;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1446310323\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:16:\"0.00588235294118\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2236,573,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2237,573,'_edit_lock','1600543917:1'),(2238,574,'_wp_attached_file','2020/01/Deborah_Griffin.jpg'),(2239,574,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:755;s:6:\"height\";i:710;s:4:\"file\";s:27:\"2020/01/Deborah_Griffin.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-300x282.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-150x141.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-755x600.jpg\";s:5:\"width\";i:755;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-755x430.jpg\";s:5:\"width\";i:755;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-755x610.jpg\";s:5:\"width\";i:755;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-350x329.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:329;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-510x480.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579205686\";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:{}}}'),(2240,573,'_thumbnail_id','574'),(2241,573,'_edit_last','1'),(2242,573,'fave_agent_email','deborahg142@gmail.com'),(2243,573,'fave_agent_position','Licensed Agent'),(2244,573,'fave_agent_company','Lantern Realty and Development'),(2245,573,'fave_agent_mobile','980-428-2462'),(2246,573,'fave_agent_website','https://lantern-realty.com/'),(2247,573,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2248,573,'fave_agent_agencies','757'),(2249,573,'_primary_term_agent_category','7'),(2250,573,'slide_template',''),(2251,576,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2252,576,'_edit_lock','1653533733:1'),(2253,577,'_wp_attached_file','2020/01/Marguerite_Keller.jpg'),(2254,577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:478;s:6:\"height\";i:578;s:4:\"file\";s:29:\"2020/01/Marguerite_Keller.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-248x300.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-124x150.jpg\";s:5:\"width\";i:124;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-478x340.jpg\";s:5:\"width\";i:478;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-478x430.jpg\";s:5:\"width\";i:478;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-350x423.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-397x480.jpg\";s:5:\"width\";i:397;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS-1Ds Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"47\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2255,576,'_thumbnail_id','577'),(2256,576,'_edit_last','1'),(2257,576,'fave_agent_email','margkellerhomes@gmail.com'),(2258,576,'fave_agent_position','Licensed Agent'),(2259,576,'fave_agent_company','Lantern Realty and Development'),(2260,576,'fave_agent_mobile','704-245-2739'),(2261,576,'fave_agent_website','https://lantern-realty.com/'),(2262,576,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2263,576,'fave_agent_agencies','757'),(2264,576,'_primary_term_agent_category','7'),(14882,2686,'_wp_attached_file','2022/05/AJHeadshots-1-1-scaled.jpg'),(2266,579,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2267,579,'_edit_lock','1600546482:1'),(2268,580,'_wp_attached_file','2020/01/Melissa_Yates.png'),(2269,580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2385;s:6:\"height\";i:2228;s:4:\"file\";s:25:\"2020/01/Melissa_Yates.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-300x280.png\";s:5:\"width\";i:300;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Melissa_Yates-1024x957.png\";s:5:\"width\";i:1024;s:6:\"height\";i:957;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-768x717.png\";s:5:\"width\";i:768;s:6:\"height\";i:717;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Melissa_Yates-1536x1435.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1435;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"Melissa_Yates-2048x1913.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1913;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Melissa_Yates-1170x600.png\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-570x340.png\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-810x430.png\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Melissa_Yates-1170x738.png\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Melissa_Yates-1440x610.png\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-350x327.png\";s:5:\"width\";i:350;s:6:\"height\";i:327;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-514x480.png\";s:5:\"width\";i:514;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2270,579,'_thumbnail_id','580'),(2271,579,'_edit_last','1'),(2283,584,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2284,584,'_edit_last','1'),(2285,584,'_edit_lock','1583278856:1'),(2286,584,'slide_template','default'),(2287,584,'_tmm_head','a:1:{i:0;a:15:{s:14:\"_tmm_firstname\";s:4:\"John\";s:13:\"_tmm_lastname\";s:3:\"Doe\";s:8:\"_tmm_job\";s:16:\"Licensed Realtor\";s:9:\"_tmm_desc\";s:22:\"<p>Full Length Bio</p>\";s:10:\"_tmm_photo\";s:73:\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin.jpg\";s:14:\"_tmm_photo_url\";s:0:\"\";s:13:\"_tmm_sc_type1\";s:7:\"website\";s:14:\"_tmm_sc_title1\";s:15:\"Lantern Website\";s:12:\"_tmm_sc_url1\";s:22:\"www.lantern-realty.com\";s:13:\"_tmm_sc_type2\";s:8:\"facebook\";s:14:\"_tmm_sc_title2\";s:26:\"facebook.com/lanternrealty\";s:12:\"_tmm_sc_url2\";s:0:\"\";s:13:\"_tmm_sc_type3\";s:5:\"phone\";s:14:\"_tmm_sc_title3\";s:12:\"555-555-5555\";s:12:\"_tmm_sc_url3\";s:0:\"\";}}'),(2273,579,'fave_agent_email','melissayates4u@gmail.com'),(2274,579,'fave_agent_position','Licensed Agent'),(2275,579,'fave_agent_company','Lantern Realty and Development'),(2276,579,'fave_agent_mobile','704-239-3835'),(2277,579,'fave_agent_website','https://lantern-realty.com/'),(2278,579,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2279,579,'fave_agent_agencies','757'),(2280,579,'_primary_term_agent_category','4'),(2281,579,'slide_template',''),(2288,584,'_tmm_color','#1e73be'),(2289,584,'_tmm_columns','4'),(2290,584,'_tmm_original_font','yes'),(2291,584,'_tmm_piclink_beh','same'),(2625,661,'fave_adv_search_pos','under_menu'),(2296,589,'_wp_attached_file','2019/11/Brianne_Watson-scaled.jpg'),(2298,591,'_wp_attached_file','2019/11/Deanna_Miltz.jpg'),(2299,591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1365;s:6:\"height\";i:1365;s:4:\"file\";s:24:\"2019/11/Deanna_Miltz.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-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:26:\"Deanna_Miltz-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:24:\"Deanna_Miltz-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Deanna_Miltz-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"Deanna_Miltz-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Deanna_Miltz-1365x610.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:{}}}'),(2300,592,'_wp_attached_file','2019/11/Evonne_Caudill.jpg'),(2301,592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:909;s:6:\"height\";i:1076;s:4:\"file\";s:26:\"2019/11/Evonne_Caudill.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-253x300.jpg\";s:5:\"width\";i:253;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Evonne_Caudill-865x1024.jpg\";s:5:\"width\";i:865;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-768x909.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:909;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-127x150.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-909x600.jpg\";s:5:\"width\";i:909;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-909x738.jpg\";s:5:\"width\";i:909;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-909x610.jpg\";s:5:\"width\";i:909;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-350x414.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-406x480.jpg\";s:5:\"width\";i:406;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G920V\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1539456996\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"2.2\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:15:\"0.0416666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2457,627,'_wp_attached_file','2019/11/Yira_Garcia.jpg'),(2458,627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:506;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2019/11/Yira_Garcia.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-150x148.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-506x340.jpg\";s:5:\"width\";i:506;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-506x430.jpg\";s:5:\"width\";i:506;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-350x346.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-486x480.jpg\";s:5:\"width\";i:486;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:{}}}'),(3316,551,'fave_agent_logo','28'),(3263,549,'fave_agent_logo','22'),(3265,598,'fave_agent_logo','22'),(5731,601,'fave_agent_logo','22'),(5726,604,'fave_agent_logo','22'),(3322,553,'fave_agent_logo','22'),(3320,573,'fave_agent_logo','22'),(3336,555,'fave_agent_logo','22'),(3705,608,'fave_agent_logo','22'),(14881,576,'fave_agent_logo','22'),(3356,558,'fave_agent_logo','22'),(2306,596,'_wp_attached_file','2020/04/Shelly_Arledge.jpg'),(2307,596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:640;s:4:\"file\";s:26:\"2020/04/Shelly_Arledge.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-120x150.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-512x600.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-512x340.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-512x430.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-512x610.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-350x438.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-384x480.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1552403622\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2318,598,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2319,598,'_edit_lock','1600543242:1'),(2320,599,'_wp_attached_file','2020/04/Jody_Clodfelter.jpg'),(2321,599,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2007;s:6:\"height\";i:2070;s:4:\"file\";s:27:\"2020/04/Jody_Clodfelter.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-291x300.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Jody_Clodfelter-993x1024.jpg\";s:5:\"width\";i:993;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-768x792.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"Jody_Clodfelter-1489x1536.jpg\";s:5:\"width\";i:1489;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"Jody_Clodfelter-1986x2048.jpg\";s:5:\"width\";i:1986;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-145x150.jpg\";s:5:\"width\";i:145;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:28:\"Jody_Clodfelter-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:28:\"Jody_Clodfelter-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:28:\"Jody_Clodfelter-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-350x361.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-465x480.jpg\";s:5:\"width\";i:465;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1587996388\";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:{}}}'),(2322,598,'_thumbnail_id','599'),(2323,598,'_edit_last','1'),(2324,598,'fave_agent_email','jodyc1972@gmail.com'),(2325,598,'fave_agent_position','Licensed Agent'),(2326,598,'fave_agent_company','Lantern Realty and Development'),(2327,598,'fave_agent_mobile','704-438-2190'),(2328,598,'fave_agent_website','https://lantern-realty.com/'),(2329,598,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2330,598,'fave_agent_agencies','759'),(2331,598,'_primary_term_agent_category','7'),(2332,598,'slide_template',''),(2334,601,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2335,601,'_edit_lock','1602979479:1'),(2336,602,'_wp_attached_file','2020/04/Amanda_Cody.jpg'),(2337,602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:487;s:6:\"height\";i:449;s:4:\"file\";s:23:\"2020/04/Amanda_Cody.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-300x277.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-150x138.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-487x340.jpg\";s:5:\"width\";i:487;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-487x430.jpg\";s:5:\"width\";i:487;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-350x323.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1587996870\";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:{}}}'),(2338,601,'_thumbnail_id','602'),(2339,601,'_edit_last','1'),(2340,601,'fave_agent_email','amandaearnhardt@yahoo.com'),(2341,601,'fave_agent_position','Licensed Agent'),(2342,601,'fave_agent_company','Lantern Realty and Development'),(2343,601,'fave_agent_mobile','980-581-1399'),(2344,601,'fave_agent_website','https://lantern-realty.com/'),(2345,601,'fave_agent_facebook','https://www.facebook.com/amandacodyrealestate/'),(2346,601,'fave_agent_agencies','759'),(2347,601,'_primary_term_agent_category','7'),(2348,601,'slide_template',''),(2349,604,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2350,604,'_edit_lock','1602978111:1'),(2351,605,'_wp_attached_file','2020/04/Mike_Fullerton-scaled.jpg'),(2352,605,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2530;s:4:\"file\";s:33:\"2020/04/Mike_Fullerton-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1024x1012.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1012;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-768x759.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:759;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1536x1518.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-2048x2024.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-150x148.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Mike_Fullerton-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:27:\"Mike_Fullerton-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Mike_Fullerton-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-350x346.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-486x480.jpg\";s:5:\"width\";i:486;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1587996736\";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:{}}s:14:\"original_image\";s:18:\"Mike_Fullerton.jpg\";}'),(2353,604,'_thumbnail_id','1127'),(2354,604,'_edit_last','1'),(2355,604,'fave_agent_email','mikefullerton72@gmail.com'),(2356,604,'fave_agent_position','Licensed Agent'),(2357,604,'fave_agent_company','Lantern Realty and Development'),(2358,604,'fave_agent_mobile','980-318-4961'),(2359,604,'fave_agent_website','https://lantern-realty.com/'),(2360,604,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2361,604,'fave_agent_agencies','759'),(2362,604,'_primary_term_agent_category','7'),(2363,604,'slide_template',''),(2364,608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2365,608,'_edit_lock','1613657662:1'),(2366,609,'_wp_attached_file','2020/04/Will_Hedrick.jpeg'),(2367,609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:436;s:6:\"height\";i:456;s:4:\"file\";s:25:\"2020/04/Will_Hedrick.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-287x300.jpeg\";s:5:\"width\";i:287;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-143x150.jpeg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-436x340.jpeg\";s:5:\"width\";i:436;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-436x430.jpeg\";s:5:\"width\";i:436;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-350x366.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"tyleremma\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:664:\"{\"total_effects_actions\":0,\"total_draw_time\":321621,\"layers_used\":2,\"effects_tried\":0,\"total_draw_actions\":0,\"total_editor_actions\":{\"border\":0,\"frame\":0,\"mask\":0,\"lensflare\":0,\"clipart\":0,\"text\":0,\"square_fit\":0,\"shape_mask\":0,\"callout\":0},\"effects_applied\":0,\"uid\":\"96B45E87-F0FC-45A6-BC29-33A7951ADC1F_1587503546920\",\"width\":993,\"photos_added\":0,\"total_effects_time\":0,\"tools_used\":{\"tilt_shift\":0,\"resize\":0,\"adjust\":0,\"curves\":0,\"motion\":0,\"perspective\":0,\"clone\":0,\"crop\":0,\"enhance\":0,\"selection\":0,\"free_crop\":0,\"flip_rotate\":0,\"shape_crop\":0,\"stretch\":0},\"origin\":\"gallery\",\"height\":1497,\"subsource\":\"done_button\",\"total_editor_time\":325,\"brushes_used\":1}\";s:17:\"created_timestamp\";s:10:\"1571684951\";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:{}}}'),(2368,608,'_thumbnail_id','609'),(2369,608,'_edit_last','1'),(2370,608,'fave_agent_email','will@thewillhedrick.com'),(2371,608,'fave_agent_position','Licensed Agent'),(2372,608,'fave_agent_company','Lantern Realty and Development'),(2373,608,'fave_agent_mobile','704-773-9204'),(2374,608,'fave_agent_website','https://lantern-realty.com/'),(2375,608,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2376,608,'fave_agent_agencies','45'),(2377,608,'_primary_term_agent_category','7'),(2378,608,'slide_template',''),(2381,612,'_wp_attached_file','2020/04/Ashley_Hines.jpg'),(2382,612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:990;s:6:\"height\";i:1412;s:4:\"file\";s:24:\"2020/04/Ashley_Hines.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-210x300.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Ashley_Hines-718x1024.jpg\";s:5:\"width\";i:718;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Ashley_Hines-768x1095.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1095;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-105x150.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-990x600.jpg\";s:5:\"width\";i:990;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-990x738.jpg\";s:5:\"width\";i:990;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-990x610.jpg\";s:5:\"width\";i:990;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-350x499.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-337x480.jpg\";s:5:\"width\";i:337;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:{}}}'),(8826,1465,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.5024834949772707393123027941328473389148712158203125;s:5:\"bytes\";i:8491;s:11:\"size_before\";i:565131;s:10:\"size_after\";i:556640;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:8491;s:11:\"size_before\";i:88011;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(2396,615,'_wp_attached_file','2020/04/MaClay_Miller.jpg'),(2397,615,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:817;s:6:\"height\";i:911;s:4:\"file\";s:25:\"2020/04/MaClay_Miller.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-768x856.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:856;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-817x600.jpg\";s:5:\"width\";i:817;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-817x738.jpg\";s:5:\"width\";i:817;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-817x610.jpg\";s:5:\"width\";i:817;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-350x390.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-430x480.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:10:\"iPhone10,2\";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:{}}}'),(2409,617,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2410,617,'_edit_lock','1600546464:1'),(2411,618,'_wp_attached_file','2020/04/Susan_Starnes-scaled.jpg'),(2412,618,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:32:\"2020/04/Susan_Starnes-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Susan_Starnes-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Susan_Starnes-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Susan_Starnes-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"Susan_Starnes-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Susan_Starnes-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Susan_Starnes-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Susan_Starnes-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-350x525.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-320x480.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531338810\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"Susan_Starnes.jpg\";}'),(2413,617,'_thumbnail_id','618'),(2414,617,'_edit_last','1'),(2415,617,'fave_agent_email','susansellsnchomes@gmail.com'),(2416,617,'fave_agent_position','Licensed Agent'),(2417,617,'fave_agent_company','Lantern Realty and Development'),(2418,617,'fave_agent_mobile','704-305-0040'),(2419,617,'fave_agent_website','https://lantern-realty.com/'),(2420,617,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2421,617,'fave_agent_agencies','758'),(2422,617,'_primary_term_agent_category','7'),(2423,617,'slide_template',''),(2424,620,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2425,620,'_edit_lock','1600546498:1'),(2426,621,'_wp_attached_file','2020/04/Tricia_Strickland.jpg'),(2427,621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:387;s:6:\"height\";i:382;s:4:\"file\";s:29:\"2020/04/Tricia_Strickland.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-150x148.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-387x340.jpg\";s:5:\"width\";i:387;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-350x345.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1568978716\";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:{}}}'),(2428,620,'_thumbnail_id','621'),(2429,620,'_edit_last','1'),(2430,620,'fave_agent_email','tricia.strickland927@gmail.com'),(2431,620,'fave_agent_position','Licensed Agent'),(2432,620,'fave_agent_company','Lantern Realty and Development'),(2433,620,'fave_agent_mobile','704-791-7314'),(2434,620,'fave_agent_website','https://lantern-realty.com/'),(2435,620,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2436,620,'fave_agent_agencies','45'),(2437,620,'_primary_term_agent_category','7'),(2438,620,'slide_template',''),(2439,623,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2440,623,'_edit_lock','1641510586:1'),(2441,624,'_wp_attached_file','2020/04/Min_Zhang.jpg'),(2442,624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:719;s:4:\"file\";s:21:\"2020/04/Min_Zhang.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-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:21:\"Min_Zhang-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-720x600.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-720x430.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-720x610.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-481x480.jpg\";s:5:\"width\";i:481;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:25:\"Canon PowerShot SD1300 IS\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515598156\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:6:\"17.275\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2443,623,'_thumbnail_id','624'),(2444,623,'_edit_last','1'),(2445,623,'fave_agent_email','realtymin77@gmail.com'),(2446,623,'fave_agent_position','Licensed Agent'),(2447,623,'fave_agent_company','Lantern Realty and Development'),(2448,623,'fave_agent_mobile','319-471-1622'),(2449,623,'fave_agent_website','https://lantern-realty.com/'),(2450,623,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2451,623,'fave_agent_agencies','758'),(2452,623,'_primary_term_agent_category','7'),(11817,2205,'_wp_attached_file','2022/01/headshot.jpg'),(2624,661,'fave_adv_search','hide'),(2623,661,'fave_adv_search_enable','global'),(2622,661,'fave_main_menu_trans','no'),(2621,661,'fave_page_header_video_overlay','yes'),(2620,661,'fave_page_header_image_opacity','0.5'),(2619,661,'fave_page_header_search','0'),(2618,661,'fave_header_full_screen_type','screen_fix'),(2617,661,'fave_header_full_screen','0'),(2615,661,'fave_page_background','yes'),(2614,661,'fave_page_sidebar','right_sidebar'),(2613,661,'fave_page_breadcrumb','show'),(2612,661,'fave_page_title','show'),(2611,661,'fave_agent_order','ASC'),(2610,661,'fave_agent_orderby','None'),(2609,661,'fave_agency_order','ASC'),(2608,661,'fave_agency_orderby','None'),(2607,661,'fave_properties_sort_halfmap','d_date'),(2604,661,'fave_prop_no','9'),(2605,661,'fave_listings_tabs','enable'),(2606,661,'fave_prop_no_halfmap','9'),(2603,661,'fave_featured_prop_no','4'),(2602,661,'fave_properties_sort','d_date'),(2601,661,'fave_default_view','list_view'),(2600,661,'_edit_last','1'),(2599,661,'_edit_lock','1600541694:1'),(2598,661,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5727,411,'fave_agent_visible','0'),(3106,744,'_edit_last','1'),(2504,645,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2505,645,'_edit_lock','1653529133:1'),(2506,646,'_wp_attached_file','2020/05/Ashley-Ferlauto.jpg'),(2507,646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:633;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2020/05/Ashley-Ferlauto.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-150x118.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-633x430.jpg\";s:5:\"width\";i:633;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-350x276.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-608x480.jpg\";s:5:\"width\";i:608;s:6:\"height\";i:480;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:{}}}'),(2508,645,'_thumbnail_id','646'),(2509,645,'_edit_last','1'),(2510,645,'fave_agent_email','ashleyferlauto@gmail.com'),(2511,645,'fave_agent_position','Principal Broker - Tennessee'),(2512,645,'fave_agent_company','Lantern Realty and Development'),(2513,645,'fave_agent_mobile','980-333-8085'),(2514,645,'fave_agent_website','lantern-realty.com'),(2515,645,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(14878,645,'fave_agent_logo','28'),(2517,645,'fave_agent_agencies','45'),(2518,645,'_primary_term_agent_category','7'),(14876,645,'fave_agent_visible','0'),(2521,649,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2522,650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2523,651,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2524,651,'user_registration_form_setting_login_options','admin_approval'),(2525,651,'user_registration_form_setting_default_user_role','houzez_agent'),(2526,651,'user_registration_form_setting_enable_strong_password',''),(2527,651,'user_registration_form_setting_minimum_password_strength','3'),(2528,651,'user_registration_form_setting_redirect_options',''),(2529,651,'user_registration_form_setting_form_submit_class',''),(2530,651,'user_registration_form_setting_form_submit_label','Submit'),(2531,651,'user_registration_form_setting_enable_recaptcha_support',''),(2532,651,'user_registration_form_template','Rounded Edge'),(2533,651,'user_registration_form_custom_class',''),(2534,651,'user_registration_form_row_ids','[\"0\"]'),(2535,650,'_edit_lock','1602388792:1'),(2616,661,'fave_header_type','none'),(2539,655,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2540,655,'_um_custom_fields','a:6:{s:10:\"user_login\";a:15:{s:5:\"title\";s:8:\"Username\";s:7:\"metakey\";s:10:\"user_login\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:8:\"Username\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:0;s:8:\"validate\";s:15:\"unique_username\";s:9:\"min_chars\";i:3;s:9:\"max_chars\";i:24;s:8:\"position\";s:1:\"1\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:10:\"user_email\";a:13:{s:5:\"title\";s:14:\"E-mail Address\";s:7:\"metakey\";s:10:\"user_email\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:14:\"E-mail Address\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"validate\";s:12:\"unique_email\";s:8:\"position\";s:1:\"4\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";s:1:\"5\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:10:\"first_name\";a:12:{s:5:\"title\";s:10:\"First Name\";s:7:\"metakey\";s:10:\"first_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"First Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";s:1:\"2\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"last_name\";a:12:{s:5:\"title\";s:9:\"Last Name\";s:7:\"metakey\";s:9:\"last_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Last Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";s:1:\"3\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),(2541,655,'_um_mode','register'),(2542,655,'_um_core','register'),(2543,655,'_um_register_use_custom_settings','0'),(2544,656,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2545,656,'_um_custom_fields','a:3:{s:8:\"username\";a:13:{s:5:\"title\";s:18:\"Username or E-mail\";s:7:\"metakey\";s:8:\"username\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:18:\"Username or E-mail\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:0;s:8:\"validate\";s:24:\"unique_username_or_email\";s:8:\"position\";s:1:\"1\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";s:1:\"2\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),(2546,656,'_um_mode','login'),(2547,656,'_um_core','login'),(2548,656,'_um_login_use_custom_settings','0'),(2549,657,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2550,657,'_um_custom_fields','a:1:{s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),(2551,657,'_um_mode','profile'),(2552,657,'_um_core','profile'),(2553,657,'_um_profile_use_custom_settings','0'),(2554,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2555,658,'_um_core','members'),(2556,658,'_um_template','members'),(2557,658,'_um_mode','directory'),(2558,658,'_um_view_types','a:1:{i:0;s:4:\"grid\";}'),(2559,658,'_um_default_view','grid'),(2560,658,'_um_roles','a:0:{}'),(2561,658,'_um_has_profile_photo','0'),(2562,658,'_um_has_cover_photo','0'),(2563,658,'_um_show_these_users',''),(2564,658,'_um_sortby','user_registered_desc'),(2565,658,'_um_sortby_custom',''),(2566,658,'_um_sortby_custom_label',''),(2567,658,'_um_enable_sorting','0'),(2568,658,'_um_sorting_fields','a:0:{}'),(2569,658,'_um_profile_photo','1'),(2570,658,'_um_cover_photos','1'),(2571,658,'_um_show_name','1'),(2572,658,'_um_show_tagline','0'),(2573,658,'_um_tagline_fields','a:0:{}'),(2574,658,'_um_show_userinfo','0'),(2575,658,'_um_reveal_fields','a:0:{}'),(2576,658,'_um_show_social','0'),(2577,658,'_um_userinfo_animate','1'),(2578,658,'_um_search','0'),(2579,658,'_um_roles_can_search','a:0:{}'),(2580,658,'_um_filters','0'),(2581,658,'_um_roles_can_filter','a:0:{}'),(2582,658,'_um_search_fields','a:0:{}'),(2583,658,'_um_filters_expanded','0'),(2584,658,'_um_filters_is_collapsible','1'),(2585,658,'_um_search_filters','a:0:{}'),(2586,658,'_um_must_search','0'),(2587,658,'_um_max_users',''),(2588,658,'_um_profiles_per_page','12'),(2589,658,'_um_profiles_per_page_mobile','6'),(2590,658,'_um_directory_header','{total_users} Members'),(2591,658,'_um_directory_header_single','{total_users} Member'),(2592,658,'_um_directory_no_users','We are sorry. We cannot find any users who match your search criteria.'),(2593,1,'_um_core','pages_settings'),(2594,2,'_um_core','password-reset'),(2595,649,'_um_core','account'),(2626,661,'slide_template','default'),(2627,661,'_wpb_vc_js_status','false'),(2628,661,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(2629,663,'_wp_attached_file','2020/05/Lantern-Main-Office-Kannapolis.jpg'),(2630,663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:452;s:4:\"file\";s:42:\"2020/05/Lantern-Main-Office-Kannapolis.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-300x234.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-150x117.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-580x430.jpg\";s:5:\"width\";i:580;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-350x273.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:273;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1590594944\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2633,674,'_wp_attached_file','2020/05/Lantern-Salisbury-Office.jpg'),(2634,674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:809;s:4:\"file\";s:36:\"2020/05/Lantern-Salisbury-Office.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-133x150.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-720x600.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-720x430.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-720x738.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-720x610.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-350x393.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-427x480.jpg\";s:5:\"width\";i:427;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1590742077\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2635,686,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2636,686,'_menu_item_type','custom'),(2637,686,'_menu_item_menu_item_parent','0'),(2638,686,'_menu_item_object_id','686'),(2639,686,'_menu_item_object','custom'),(2640,686,'_menu_item_target',''),(2641,686,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2642,686,'_menu_item_xfn',''),(2643,686,'_menu_item_url','/'),(2645,687,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2646,687,'_menu_item_type','custom'),(2647,687,'_menu_item_menu_item_parent','0'),(2648,687,'_menu_item_object_id','687'),(2649,687,'_menu_item_object','custom'),(2650,687,'_menu_item_target',''),(2651,687,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2652,687,'_menu_item_xfn',''),(2653,687,'_menu_item_url','/lantern-listings/'),(2676,690,'_menu_item_type','custom'),(2655,688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2656,688,'_menu_item_type','custom'),(2657,688,'_menu_item_menu_item_parent','687'),(2658,688,'_menu_item_object_id','688'),(2659,688,'_menu_item_object','custom'),(2660,688,'_menu_item_target',''),(2661,688,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2662,688,'_menu_item_xfn',''),(2663,688,'_menu_item_url','/lantern-listings/'),(2665,689,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2666,689,'_menu_item_type','custom'),(2667,689,'_menu_item_menu_item_parent','687'),(2668,689,'_menu_item_object_id','689'),(2669,689,'_menu_item_object','custom'),(2670,689,'_menu_item_target',''),(2671,689,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2672,689,'_menu_item_xfn',''),(2673,689,'_menu_item_url','/recently-sold/'),(2675,690,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2677,690,'_menu_item_menu_item_parent','0'),(2678,690,'_menu_item_object_id','690'),(2679,690,'_menu_item_object','custom'),(2680,690,'_menu_item_target',''),(2681,690,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2682,690,'_menu_item_xfn',''),(2683,690,'_menu_item_url','#'),(2761,698,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2685,691,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2686,691,'_menu_item_type','custom'),(2687,691,'_menu_item_menu_item_parent','690'),(2688,691,'_menu_item_object_id','691'),(2689,691,'_menu_item_object','custom'),(2690,691,'_menu_item_target',''),(2691,691,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2692,691,'_menu_item_xfn',''),(2693,691,'_menu_item_url','/homes-for-sale-search/'),(2760,698,'_menu_item_target',''),(2695,692,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2696,692,'_menu_item_type','custom'),(2697,692,'_menu_item_menu_item_parent','690'),(2698,692,'_menu_item_object_id','692'),(2699,692,'_menu_item_object','custom'),(2700,692,'_menu_item_target',''),(2701,692,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2702,692,'_menu_item_xfn',''),(2703,692,'_menu_item_url','#'),(2759,698,'_menu_item_object','custom'),(2705,693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2706,693,'_menu_item_type','custom'),(2707,693,'_menu_item_menu_item_parent','692'),(2708,693,'_menu_item_object_id','693'),(2709,693,'_menu_item_object','custom'),(2710,693,'_menu_item_target',''),(2711,693,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2712,693,'_menu_item_xfn',''),(2713,693,'_menu_item_url','/listing-report/Kannapolis-Concord/815186'),(2758,698,'_menu_item_object_id','698'),(2715,694,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2716,694,'_menu_item_type','custom'),(2717,694,'_menu_item_menu_item_parent','692'),(2718,694,'_menu_item_object_id','694'),(2719,694,'_menu_item_object','custom'),(2720,694,'_menu_item_target',''),(2721,694,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2722,694,'_menu_item_xfn',''),(2723,694,'_menu_item_url','/listing-report/Salisbury/81519'),(2757,698,'_menu_item_menu_item_parent','0'),(2725,695,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2726,695,'_menu_item_type','custom'),(2727,695,'_menu_item_menu_item_parent','692'),(2728,695,'_menu_item_object_id','695'),(2729,695,'_menu_item_object','custom'),(2730,695,'_menu_item_target',''),(2731,695,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2732,695,'_menu_item_xfn',''),(2733,695,'_menu_item_url','/listing-report/Rockwell-Granite-Quarry-Gold-Hill/815189'),(2756,698,'_menu_item_type','custom'),(2735,696,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2736,696,'_menu_item_type','custom'),(2737,696,'_menu_item_menu_item_parent','692'),(2738,696,'_menu_item_object_id','696'),(2739,696,'_menu_item_object','custom'),(2740,696,'_menu_item_target',''),(2741,696,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2742,696,'_menu_item_xfn',''),(2743,696,'_menu_item_url','/listing-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187'),(2745,697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2746,697,'_menu_item_type','custom'),(2747,697,'_menu_item_menu_item_parent','692'),(2748,697,'_menu_item_object_id','697'),(2749,697,'_menu_item_object','custom'),(2750,697,'_menu_item_target',''),(2751,697,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2752,697,'_menu_item_xfn',''),(2753,697,'_menu_item_url','/listing-report/Charlotte/815191'),(2755,698,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2762,698,'_menu_item_xfn',''),(2763,698,'_menu_item_url','#'),(2765,699,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2766,699,'_menu_item_type','custom'),(2767,699,'_menu_item_menu_item_parent','698'),(2768,699,'_menu_item_object_id','699'),(2769,699,'_menu_item_object','custom'),(2770,699,'_menu_item_target',''),(2771,699,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2772,699,'_menu_item_xfn',''),(2773,699,'_menu_item_url','/property-organizer-login/'),(2883,710,'_menu_item_url','/market-report/Salisbury/815190'),(2775,700,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2776,700,'_menu_item_type','custom'),(2777,700,'_menu_item_menu_item_parent','698'),(2778,700,'_menu_item_object_id','700'),(2779,700,'_menu_item_object','custom'),(2780,700,'_menu_item_target',''),(2781,700,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2782,700,'_menu_item_xfn',''),(2783,700,'_menu_item_url','/property-organizer-view-saved-search-list/'),(2882,710,'_menu_item_xfn',''),(2785,701,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2786,701,'_menu_item_type','custom'),(2787,701,'_menu_item_menu_item_parent','698'),(2788,701,'_menu_item_object_id','701'),(2789,701,'_menu_item_object','custom'),(2790,701,'_menu_item_target',''),(2791,701,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2792,701,'_menu_item_xfn',''),(2793,701,'_menu_item_url','/property-organizer-saved-listings/'),(2795,702,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2796,702,'_menu_item_type','post_type'),(2797,702,'_menu_item_menu_item_parent','698'),(2798,702,'_menu_item_object_id','237'),(2799,702,'_menu_item_object','page'),(2800,702,'_menu_item_target',''),(2801,702,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2802,702,'_menu_item_xfn',''),(2803,702,'_menu_item_url',''),(2881,710,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2805,703,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2806,703,'_menu_item_type','post_type'),(2807,703,'_menu_item_menu_item_parent','698'),(2808,703,'_menu_item_object_id','508'),(2809,703,'_menu_item_object','page'),(2810,703,'_menu_item_target',''),(2811,703,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2812,703,'_menu_item_xfn',''),(2813,703,'_menu_item_url',''),(2880,710,'_menu_item_target',''),(2815,704,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2816,704,'_menu_item_type','custom'),(2817,704,'_menu_item_menu_item_parent','698'),(2818,704,'_menu_item_object_id','704'),(2819,704,'_menu_item_object','custom'),(2820,704,'_menu_item_target',''),(2821,704,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2822,704,'_menu_item_xfn',''),(2823,704,'_menu_item_url','https://ryanivory.excellencebyarc.com/'),(2879,710,'_menu_item_object','custom'),(2825,705,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2826,705,'_menu_item_type','custom'),(2827,705,'_menu_item_menu_item_parent','0'),(2828,705,'_menu_item_object_id','705'),(2829,705,'_menu_item_object','custom'),(2830,705,'_menu_item_target',''),(2831,705,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2832,705,'_menu_item_xfn',''),(2833,705,'_menu_item_url','#'),(2878,710,'_menu_item_object_id','710'),(2835,706,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2836,706,'_menu_item_type','custom'),(2837,706,'_menu_item_menu_item_parent','705'),(2838,706,'_menu_item_object_id','706'),(2839,706,'_menu_item_object','custom'),(2840,706,'_menu_item_target',''),(2841,706,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2842,706,'_menu_item_xfn',''),(2843,706,'_menu_item_url','/valuation-form/'),(2877,710,'_menu_item_menu_item_parent','707'),(2845,707,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2846,707,'_menu_item_type','custom'),(2847,707,'_menu_item_menu_item_parent','705'),(2848,707,'_menu_item_object_id','707'),(2849,707,'_menu_item_object','custom'),(2850,707,'_menu_item_target',''),(2851,707,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2852,707,'_menu_item_xfn',''),(2853,707,'_menu_item_url','#'),(2876,710,'_menu_item_type','custom'),(2855,708,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2856,708,'_menu_item_type','custom'),(2857,708,'_menu_item_menu_item_parent','707'),(2858,708,'_menu_item_object_id','708'),(2859,708,'_menu_item_object','custom'),(2860,708,'_menu_item_target',''),(2861,708,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2862,708,'_menu_item_xfn',''),(2863,708,'_menu_item_url','/market-report/Kannapolis-Concord/815186'),(2865,709,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2866,709,'_menu_item_type','custom'),(2867,709,'_menu_item_menu_item_parent','707'),(2868,709,'_menu_item_object_id','709'),(2869,709,'_menu_item_object','custom'),(2870,709,'_menu_item_target',''),(2871,709,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2872,709,'_menu_item_xfn',''),(2873,709,'_menu_item_url','/market-report/Landis-China-Grove/815188'),(2875,710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2950,717,'_menu_item_target',''),(2885,711,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2886,711,'_menu_item_type','custom'),(2887,711,'_menu_item_menu_item_parent','707'),(2888,711,'_menu_item_object_id','711'),(2889,711,'_menu_item_object','custom'),(2890,711,'_menu_item_target',''),(2891,711,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2892,711,'_menu_item_xfn',''),(2893,711,'_menu_item_url','/market-report/Rockwell-Granite-Quarry-Gold-Hill/815189'),(2949,717,'_menu_item_object','custom'),(2895,712,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2896,712,'_menu_item_type','custom'),(2897,712,'_menu_item_menu_item_parent','707'),(2898,712,'_menu_item_object_id','712'),(2899,712,'_menu_item_object','custom'),(2900,712,'_menu_item_target',''),(2901,712,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2902,712,'_menu_item_xfn',''),(2903,712,'_menu_item_url','/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187'),(2948,717,'_menu_item_object_id','717'),(2905,713,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2906,713,'_menu_item_type','custom'),(2907,713,'_menu_item_menu_item_parent','707'),(2908,713,'_menu_item_object_id','713'),(2909,713,'_menu_item_object','custom'),(2910,713,'_menu_item_target',''),(2911,713,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2912,713,'_menu_item_xfn',''),(2913,713,'_menu_item_url','/market-report/Charlotte/815191'),(2947,717,'_menu_item_menu_item_parent','0'),(2915,714,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2916,714,'_menu_item_type','post_type'),(2917,714,'_menu_item_menu_item_parent','705'),(2918,714,'_menu_item_object_id','508'),(2919,714,'_menu_item_object','page'),(2920,714,'_menu_item_target',''),(2921,714,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2922,714,'_menu_item_xfn',''),(2923,714,'_menu_item_url',''),(2946,717,'_menu_item_type','custom'),(2925,715,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2926,715,'_menu_item_type','post_type'),(2927,715,'_menu_item_menu_item_parent','0'),(2928,715,'_menu_item_object_id','101'),(2929,715,'_menu_item_object','page'),(2930,715,'_menu_item_target',''),(2931,715,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2932,715,'_menu_item_xfn',''),(2933,715,'_menu_item_url',''),(2945,717,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2935,716,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2936,716,'_menu_item_type','custom'),(2937,716,'_menu_item_menu_item_parent','0'),(2938,716,'_menu_item_object_id','716'),(2939,716,'_menu_item_object','custom'),(2940,716,'_menu_item_target',''),(2941,716,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2942,716,'_menu_item_xfn',''),(2943,716,'_menu_item_url','/contact-form/'),(2951,717,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2952,717,'_menu_item_xfn',''),(2953,717,'_menu_item_url','/'),(2954,718,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2955,718,'_menu_item_type','custom'),(2956,718,'_menu_item_menu_item_parent','0'),(2957,718,'_menu_item_object_id','718'),(2958,718,'_menu_item_object','custom'),(2959,718,'_menu_item_target',''),(2960,718,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2961,718,'_menu_item_xfn',''),(2962,718,'_menu_item_url','/homes-for-sale-featured/'),(2963,719,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2964,719,'_menu_item_type','custom'),(2965,719,'_menu_item_menu_item_parent','0'),(2966,719,'_menu_item_object_id','719'),(2967,719,'_menu_item_object','custom'),(2968,719,'_menu_item_target',''),(2969,719,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2970,719,'_menu_item_xfn',''),(2971,719,'_menu_item_url','#'),(2972,720,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2973,720,'_menu_item_type','custom'),(2974,720,'_menu_item_menu_item_parent','719'),(2975,720,'_menu_item_object_id','720'),(2976,720,'_menu_item_object','custom'),(2977,720,'_menu_item_target',''),(2978,720,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2979,720,'_menu_item_xfn',''),(2980,720,'_menu_item_url','/homes-for-sale-search/'),(2981,721,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2982,721,'_menu_item_type','custom'),(2983,721,'_menu_item_menu_item_parent','719'),(2984,721,'_menu_item_object_id','721'),(2985,721,'_menu_item_object','custom'),(2986,721,'_menu_item_target',''),(2987,721,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2988,721,'_menu_item_xfn',''),(2989,721,'_menu_item_url','/homes-for-sale-map-search/'),(2990,722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2991,722,'_menu_item_type','custom'),(2992,722,'_menu_item_menu_item_parent','719'),(2993,722,'_menu_item_object_id','722'),(2994,722,'_menu_item_object','custom'),(2995,722,'_menu_item_target',''),(2996,722,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2997,722,'_menu_item_xfn',''),(2998,722,'_menu_item_url','/open-home-search/'),(2999,723,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3000,723,'_menu_item_type','custom'),(3001,723,'_menu_item_menu_item_parent','719'),(3002,723,'_menu_item_object_id','723'),(3003,723,'_menu_item_object','custom'),(3004,723,'_menu_item_target',''),(3005,723,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3006,723,'_menu_item_xfn',''),(3007,723,'_menu_item_url','/homes-for-sale-search-advanced/'),(3008,724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3009,724,'_menu_item_type','custom'),(3010,724,'_menu_item_menu_item_parent','0'),(3011,724,'_menu_item_object_id','724'),(3012,724,'_menu_item_object','custom'),(3013,724,'_menu_item_target',''),(3014,724,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3015,724,'_menu_item_xfn',''),(3016,724,'_menu_item_url','/email-alerts/'),(3017,725,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3018,725,'_menu_item_type','custom'),(3019,725,'_menu_item_menu_item_parent','0'),(3020,725,'_menu_item_object_id','725'),(3021,725,'_menu_item_object','custom'),(3022,725,'_menu_item_target',''),(3023,725,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3024,725,'_menu_item_xfn',''),(3025,725,'_menu_item_url','#'),(3026,726,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3027,726,'_menu_item_type','custom'),(3028,726,'_menu_item_menu_item_parent','0'),(3029,726,'_menu_item_object_id','726'),(3030,726,'_menu_item_object','custom'),(3031,726,'_menu_item_target',''),(3032,726,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3033,726,'_menu_item_xfn',''),(3034,726,'_menu_item_url','#'),(3035,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3036,727,'_menu_item_type','custom'),(3037,727,'_menu_item_menu_item_parent','726'),(3038,727,'_menu_item_object_id','727'),(3039,727,'_menu_item_object','custom'),(3040,727,'_menu_item_target',''),(3041,727,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3042,727,'_menu_item_xfn',''),(3043,727,'_menu_item_url','/property-organizer-login/'),(3044,728,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3045,728,'_menu_item_type','custom'),(3046,728,'_menu_item_menu_item_parent','726'),(3047,728,'_menu_item_object_id','728'),(3048,728,'_menu_item_object','custom'),(3049,728,'_menu_item_target',''),(3050,728,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3051,728,'_menu_item_xfn',''),(3052,728,'_menu_item_url','/valuation-form/'),(3053,729,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3054,729,'_menu_item_type','custom'),(3055,729,'_menu_item_menu_item_parent','0'),(3056,729,'_menu_item_object_id','729'),(3057,729,'_menu_item_object','custom'),(3058,729,'_menu_item_target',''),(3059,729,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3060,729,'_menu_item_xfn',''),(3061,729,'_menu_item_url','/contact-form/'),(3062,730,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3063,730,'_menu_item_type','custom'),(3064,730,'_menu_item_menu_item_parent','0'),(3065,730,'_menu_item_object_id','730'),(3066,730,'_menu_item_object','custom'),(3067,730,'_menu_item_target',''),(3068,730,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3069,730,'_menu_item_xfn',''),(3070,730,'_menu_item_url','/mortgage-calculator/'),(3090,733,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3072,37,'fave_agent_service_area','service area'),(3073,37,'fave_agent_specialties','specialties'),(3075,37,'rs_page_bg_color',''),(3091,733,'_edit_lock','1590781639:1'),(3092,733,'_edit_last','1'),(3093,114,'houzez_total_rating','5'),(3094,733,'review_post_type','houzez_agent'),(3095,733,'review_agent_id','114'),(3096,733,'review_stars','5'),(3097,733,'slide_template',''),(3098,733,'rs_page_bg_color',''),(3099,649,'_edit_lock','1602354028:1'),(3107,744,'fave_agent_company','Lantern Realty and Development'),(3108,744,'fave_agent_email','kimsadler.realtor@gmail.com'),(3109,744,'fave_agent_position','Licensed Agent'),(3110,744,'fave_agent_mobile','704-798-8338'),(3111,744,'fave_agent_website','https://lantern-realty.com/'),(3112,744,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3229,744,'fave_agent_logo','22'),(3114,744,'slide_template',''),(3115,744,'rs_page_bg_color',''),(3116,747,'_wp_attached_file','2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg'),(3117,747,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1834;s:6:\"height\";i:1834;s:4:\"file\";s:49:\"2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"46D6A567-550F-4552-9EC3-30E04A3317B5-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"46D6A567-550F-4552-9EC3-30E04A3317B5-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:496;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:\"NIKON D40\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1466597042\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3118,744,'_thumbnail_id','747'),(3120,744,'fave_agent_agencies','45'),(3122,744,'_primary_term_agent_category','4'),(3127,45,'fave_agency_email','contact@lantern-realty.com'),(3128,45,'fave_agency_phone','(704) 298-0087'),(3129,45,'fave_agency_web','https://lantern-realty.com/'),(3130,45,'fave_agency_address','119 West Ave, Kannapolis, NC 28081'),(3131,45,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(3132,45,'rs_page_bg_color',''),(3136,753,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3137,753,'_edit_lock','1603068564:1'),(3138,753,'_edit_last','1'),(3139,753,'fave_agency_orderby','None'),(3140,753,'fave_agency_order','ASC'),(3141,753,'fave_agent_orderby','None'),(3142,753,'fave_agent_order','ASC'),(3143,753,'fave_listing_page_content_area','0'),(3144,753,'fave_prop_no','9'),(3145,753,'fave_properties_sort','d_date'),(3146,753,'fave_listings_tabs','disable'),(3147,753,'fave_header_type','none'),(3148,753,'fave_page_header_image_opacity','0.35'),(3149,753,'fave_page_header_search','0'),(3150,753,'fave_header_full_screen','0'),(3151,753,'fave_page_title','show'),(3152,753,'fave_page_breadcrumb','show'),(3153,753,'fave_page_sidebar','right_sidebar'),(3154,753,'fave_page_background','yes'),(3155,753,'fave_main_menu_trans','no'),(3156,753,'fave_adv_search_enable','global'),(3157,753,'fave_adv_search','hide'),(3158,753,'fave_adv_search_pos','under_menu'),(3159,753,'slide_template',''),(3160,753,'rs_page_bg_color',''),(3161,753,'_wpb_vc_js_status','false'),(3162,753,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:3:\"yes\";s:16:\"selected_sidebar\";s:13:\"agent-sidebar\";}'),(3163,753,'_elementor_edit_mode','builder'),(3164,753,'_elementor_template_type','wp-page'),(3165,753,'_elementor_version','3.0.11'),(3166,755,'_elementor_edit_mode','builder'),(3167,755,'_elementor_template_type','kit'),(3168,755,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3169,755,'_elementor_version','2.9.9'),(3184,757,'fave_agency_web','https://lantern-realty.com/'),(3183,757,'fave_agency_phone','(704) 298-0087'),(3178,757,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3179,757,'_edit_lock','1600540920:1'),(3180,757,'_thumbnail_id','674'),(3181,757,'_edit_last','1'),(3182,757,'fave_agency_email','contact@lantern-realty.com'),(3176,753,'_wp_page_template','template/template-agencies.php'),(3185,757,'fave_agency_address','105 North Main Suite B, Salisbury, NC 28144'),(3186,757,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(3187,757,'slide_template',''),(3188,757,'rs_page_bg_color',''),(3189,758,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3190,758,'_edit_lock','1650418518:1'),(3191,758,'_thumbnail_id','21'),(3192,758,'_edit_last','1'),(3193,758,'fave_agency_email','contact@lantern-realty.com'),(3194,758,'fave_agency_phone','(704) 298-0087'),(3195,758,'fave_agency_web','https://lantern-realty.com/'),(3196,758,'fave_agency_address','4350 Main Street, Suite 215, Harrisburg, NC 28075'),(3197,758,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(3199,758,'rs_page_bg_color',''),(3200,759,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3201,759,'_edit_lock','1645154063:1'),(3202,759,'_thumbnail_id','1125'),(3203,759,'_edit_last','1'),(3204,759,'fave_agency_email','lrdalbemarle@gmail.com'),(3205,759,'fave_agency_phone','(980) 318-4961'),(3206,759,'fave_agency_web','https://lantern-realty.com/'),(3207,759,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(12206,758,'fave_agency_visible','0'),(3209,759,'rs_page_bg_color',''),(3210,759,'fave_agency_address','113 S. Second Street, Albemarle, NC 28001'),(3211,760,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3212,760,'_edit_lock','1645151608:1'),(3213,760,'_thumbnail_id','1363'),(3214,760,'_edit_last','1'),(3215,760,'fave_agency_email','LanternRealtyMooresville@gmail.com'),(3216,760,'fave_agency_phone','(704) 980-9379'),(3217,760,'fave_agency_web','https://lantern-realty.com/'),(3218,760,'fave_agency_address','106 Langtree Village Drive Suite 301, Mooresville, NC 28117'),(3219,760,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(3220,760,'slide_template',''),(3221,760,'rs_page_bg_color',''),(3222,661,'fave_listing_page_content_area','0'),(3223,661,'rs_page_bg_color','#ffffff'),(3235,370,'rs_page_bg_color',''),(3237,411,'rs_page_bg_color',''),(3239,416,'rs_page_bg_color',''),(3241,468,'rs_page_bg_color',''),(3243,546,'rs_page_bg_color',''),(3245,565,'rs_page_bg_color',''),(3249,361,'_wp_desired_post_slug','tanner-bost'),(3251,361,'rs_page_bg_color',''),(3253,126,'rs_page_bg_color',''),(3256,123,'_wp_desired_post_slug','woody-brown'),(3258,123,'rs_page_bg_color',''),(3260,528,'rs_page_bg_color',''),(3262,380,'rs_page_bg_color',''),(3264,549,'rs_page_bg_color',''),(3266,598,'rs_page_bg_color',''),(3268,470,'rs_page_bg_color',''),(3271,144,'_wp_desired_post_slug','wesley-cook'),(3275,601,'rs_page_bg_color',''),(3279,383,'rs_page_bg_color',''),(3281,135,'rs_page_bg_color',''),(3283,645,'rs_page_bg_color',''),(3285,604,'rs_page_bg_color',''),(3288,358,'_wp_desired_post_slug','tabitha-furr'),(3291,421,'_wp_desired_post_slug','erica-henry'),(3297,478,'_wp_desired_post_slug','leslie-liles'),(3300,319,'_wp_desired_post_slug','wanda-prince'),(3303,489,'_wp_desired_post_slug','bridget-quinn'),(3306,138,'_wp_desired_post_slug','kyle-runyon'),(3309,436,'_wp_desired_post_slug','jill-sawant'),(3312,132,'_wp_desired_post_slug','grant-stevens'),(3315,129,'_wp_desired_post_slug','jennifer-wood'),(3317,551,'rs_page_bg_color',''),(3319,393,'rs_page_bg_color',''),(3321,573,'rs_page_bg_color',''),(3323,553,'rs_page_bg_color',''),(3325,419,'rs_page_bg_color',''),(3328,419,'_wp_desired_post_slug','donna-hawkins'),(3331,377,'rs_page_bg_color',''),(3333,608,'rs_page_bg_color',''),(3337,555,'rs_page_bg_color',''),(3339,487,'rs_page_bg_color',''),(3343,497,'rs_page_bg_color',''),(3345,473,'rs_page_bg_color',''),(3347,390,'rs_page_bg_color',''),(3349,476,'rs_page_bg_color',''),(3351,481,'rs_page_bg_color',''),(3353,503,'rs_page_bg_color',''),(3355,400,'rs_page_bg_color',''),(3357,558,'rs_page_bg_color',''),(3359,576,'rs_page_bg_color',''),(3361,484,'rs_page_bg_color',''),(3365,120,'_wp_desired_post_slug','krysta-kemp'),(3368,322,'rs_page_bg_color',''),(3370,424,'rs_page_bg_color',''),(3373,430,'rs_page_bg_color',''),(3375,427,'rs_page_bg_color',''),(3377,434,'rs_page_bg_color',''),(8825,1465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:640;s:4:\"file\";s:15:\"2020/12/pic.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:452;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 8 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549041193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.87\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3383,141,'rs_page_bg_color',''),(3385,439,'rs_page_bg_color',''),(3387,442,'rs_page_bg_color',''),(3388,563,'rs_page_bg_color',''),(3390,444,'rs_page_bg_color',''),(3392,560,'rs_page_bg_color',''),(3394,373,'rs_page_bg_color',''),(3395,617,'rs_page_bg_color',''),(3396,579,'rs_page_bg_color',''),(3397,620,'rs_page_bg_color',''),(3398,623,'rs_page_bg_color',''),(3399,101,'fave_listing_page_content_area','0'),(3400,101,'rs_page_bg_color','#ffffff'),(3401,101,'_elementor_edit_mode','builder'),(3402,101,'_elementor_template_type','wp-page'),(3403,101,'_elementor_version','3.6.5'),(3409,101,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"216ee74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2602e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 105 N State Street -<\\/p><p style=\\\"text-align: center;\\\">Lexington, North Carolina 27293<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"363d16b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"bf088c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tennessee Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96a9bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 416 E. Elk Avenue -<\\/p><p style=\\\"text-align: center;\\\">Elizabethton, Tennessee 37643<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d53d11\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"tennessee\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"f5d031b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Raleigh Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acff562\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 4909 Unicon Drive, Ste. 105 -<\\/p>\\n<p style=\\\"text-align: center;\\\">Wake Forest, North Carolina 27587<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9835305\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"raleigh\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(7173,1235,'_edit_last','1'),(7174,1235,'_wp_page_template','default'),(7175,1235,'_calendar_view','a:1:{s:16:\"default-calendar\";s:4:\"list\";}'),(7176,1235,'_calendar_begins','today'),(7177,1235,'_calendar_begins_nth','1'),(7178,1235,'_calendar_begins_custom_date',''),(7179,1235,'_feed_earliest_event_date','months_before'),(7180,1235,'_feed_earliest_event_date_range','1'),(7181,1235,'_feed_latest_event_date','years_after'),(7182,1235,'_feed_latest_event_date_range','1'),(7183,1235,'_calendar_is_static','no'),(7184,1235,'_no_events_message',''),(7185,1235,'_event_formatting','preserve_linebreaks'),(7186,1235,'_poweredby','no'),(7187,1235,'_feed_timezone_setting','use_custom'),(7188,1235,'_feed_timezone','America/New_York'),(7189,1235,'_calendar_date_format_setting','use_site'),(7190,1235,'_calendar_date_format','l, d F Y'),(7191,1235,'_calendar_date_format_php','F j, Y'),(7192,1235,'_calendar_time_format_setting','use_site'),(7193,1235,'_calendar_time_format','G:i a'),(7194,1235,'_calendar_time_format_php','g:i a'),(7195,1235,'_calendar_datetime_separator',''),(7196,1235,'_calendar_datetime_separator_spacing',''),(7197,1235,'_calendar_week_starts_on_setting','use_site'),(7198,1235,'_calendar_week_starts_on','0'),(7199,1235,'_feed_cache_user_amount','2'),(7200,1235,'_feed_cache_user_unit','3600'),(7201,1235,'_feed_cache','7200'),(7202,1235,'_calendar_version','3.1.33'),(7203,1235,'_google_calendar_id','N2VmMjQ1b2o4dnRsN3QyNzA1cDdiamRoZDBAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ=='),(7204,1235,'_google_events_search_query',''),(7205,1235,'_google_events_recurring','show'),(7206,1235,'_google_events_max_results','2500'),(7207,1235,'_grouped_calendars_source','ids'),(7208,1235,'_grouped_calendars_ids',''),(7209,1235,'_grouped_calendars_category',''),(7210,1235,'_default_calendar_style_theme','light'),(7211,1235,'_default_calendar_style_today','#0166bf'),(7212,1235,'_default_calendar_style_days_events','#6ec1e4'),(7213,1235,'_default_calendar_list_range_span','2'),(7214,1235,'_default_calendar_list_range_type','monthly'),(7215,1235,'_default_calendar_list_header','no'),(7216,1235,'_default_calendar_compact_list','no'),(7217,1235,'_default_calendar_limit_visible_events','no'),(7218,1235,'_default_calendar_visible_events','3'),(7219,1235,'_default_calendar_event_bubble_trigger','hover'),(7220,1235,'_default_calendar_trim_titles','no'),(7221,1235,'_default_calendar_trim_titles_chars','20'),(7222,1235,'_default_calendar_expand_multi_day_events','yes'),(7223,1235,'slide_template',''),(7224,1235,'rs_page_bg_color',''),(7314,1241,'_default_calendar_expand_multi_day_events','yes'),(7315,1241,'slide_template',''),(7316,1241,'rs_page_bg_color',''),(3973,456,'wps_cleaner_media_use','media_image-14'),(7272,1241,'_feed_earliest_event_date_range','1'),(7273,1241,'_feed_latest_event_date','years_after'),(7274,1241,'_feed_latest_event_date_range','1'),(7275,1241,'_calendar_is_static','no'),(7276,1241,'_no_events_message',''),(7277,1241,'_event_formatting','preserve_linebreaks'),(7278,1241,'_poweredby','no'),(7279,1241,'_feed_timezone_setting','use_custom'),(7280,1241,'_feed_timezone','America/New_York'),(7281,1241,'_calendar_date_format_setting','use_site'),(7282,1241,'_calendar_date_format','l, d F Y'),(7283,1241,'_calendar_date_format_php','F j, Y'),(7284,1241,'_calendar_time_format_setting','use_site'),(7285,1241,'_calendar_time_format','G:i a'),(7286,1241,'_calendar_time_format_php','g:i a'),(7287,1241,'_calendar_datetime_separator',''),(7288,1241,'_calendar_datetime_separator_spacing',''),(7289,1241,'_calendar_week_starts_on_setting','use_site'),(7290,1241,'_calendar_week_starts_on','0'),(7291,1241,'_feed_cache_user_amount','2'),(7292,1241,'_feed_cache_user_unit','3600'),(7293,1241,'_feed_cache','7200'),(7294,1241,'_calendar_version','3.1.33'),(7295,1241,'_google_calendar_id','N2VmMjQ1b2o4dnRsN3QyNzA1cDdiamRoZDBAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ=='),(7296,1241,'_google_events_search_query',''),(7297,1241,'_google_events_recurring','show'),(7298,1241,'_google_events_max_results','2500'),(7299,1241,'_grouped_calendars_source','ids'),(7300,1241,'_grouped_calendars_ids',''),(7301,1241,'_grouped_calendars_category',''),(7302,1241,'_default_calendar_style_theme','light'),(7303,1241,'_default_calendar_style_today','#0166bf'),(7304,1241,'_default_calendar_style_days_events','#6ec1e4'),(7305,1241,'_default_calendar_list_range_span','2'),(7306,1241,'_default_calendar_list_range_type','monthly'),(7307,1241,'_default_calendar_list_header','no'),(7308,1241,'_default_calendar_compact_list','no'),(7309,1241,'_default_calendar_limit_visible_events','no'),(7310,1241,'_default_calendar_visible_events','3'),(7311,1241,'_default_calendar_event_bubble_trigger','hover'),(7312,1241,'_default_calendar_trim_titles','no'),(7313,1241,'_default_calendar_trim_titles_chars','20'),(7271,1241,'_feed_earliest_event_date','months_before'),(7270,1241,'_calendar_begins_custom_date',''),(7269,1241,'_calendar_begins_nth','1'),(7263,1241,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7264,1241,'_edit_lock','1603048989:1'),(7265,1241,'_edit_last','1'),(7266,1241,'_wp_page_template','default'),(7267,1241,'_calendar_view','a:1:{s:16:\"default-calendar\";s:4:\"grid\";}'),(7268,1241,'_calendar_begins','today'),(7252,1240,'_wp_page_template','template/template-onepage.php'),(7253,1240,'_elementor_edit_mode','builder'),(7254,1240,'_elementor_template_type','wp-page'),(7255,1240,'_elementor_version','3.0.11'),(7256,1240,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7243,1239,'_wp_page_template','template/template-onepage.php'),(7244,1239,'_elementor_edit_mode','builder'),(7245,1239,'_elementor_template_type','wp-page'),(7246,1239,'_elementor_version','3.0.11'),(7247,1239,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\",\"list_row_header_color\":\"globals\\/colors?id=primary\",\"list_element_text_color\":\"globals\\/colors?id=secondary\",\"list_element_even_color\":\"globals\\/colors?id=555146e2\"},\"eael_event_calendar_default_view\":\"listMonth\",\"day_event_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"day_event_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"event_popup_title_typography_typography\":\"custom\",\"event_popup_date_typography_typography\":\"custom\",\"event_popup_date_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"event_popup_date_icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"event_popup_content_typography_typography\":\"custom\",\"event_popup_content_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(3971,451,'wps_cleaner_media_use','media_image-12'),(3972,453,'wps_cleaner_media_use','media_image-13'),(7262,1241,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7261,1241,'_wp_page_template','default'),(7317,1242,'_wp_page_template','template/template-onepage.php'),(7318,1242,'_elementor_edit_mode','builder'),(7319,1242,'_elementor_template_type','wp-page'),(7320,1242,'_elementor_version','3.0.11'),(7321,1242,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"70d7f95\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1241\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7248,1239,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7230,1236,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7257,1240,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7225,1236,'_wp_page_template','template/template-onepage.php'),(7226,1236,'_elementor_edit_mode','builder'),(7227,1236,'_elementor_template_type','wp-page'),(7228,1236,'_elementor_version','3.0.11'),(7229,1236,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\",\"list_row_header_color\":\"globals\\/colors?id=primary\",\"list_element_text_color\":\"globals\\/colors?id=secondary\",\"list_element_even_color\":\"globals\\/colors?id=555146e2\"},\"eael_event_calendar_default_view\":\"listMonth\",\"day_event_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"day_event_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"event_popup_title_typography_typography\":\"custom\",\"event_popup_date_typography_typography\":\"custom\",\"event_popup_date_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"event_popup_date_icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"event_popup_content_typography_typography\":\"custom\",\"event_popup_content_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7171,1235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7172,1235,'_edit_lock','1603067749:1'),(7165,1233,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3489,781,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3490,781,'_edit_lock','1600610216:1'),(3491,782,'_wp_attached_file','2020/09/Sabine_Amoakon.jpg'),(3492,782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1105;s:6:\"height\";i:1011;s:4:\"file\";s:26:\"2020/09/Sabine_Amoakon.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Sabine_Amoakon-1024x937.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:937;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-768x703.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:703;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:27:\"Sabine_Amoakon-1105x785.jpg\";s:5:\"width\";i:1105;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-656x600.jpg\";s:5:\"width\";i:656;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Sabine_Amoakon-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-496x454.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593174411\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.87\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3493,781,'_thumbnail_id','782'),(3494,781,'_edit_last','1'),(3495,781,'fave_agent_company','Lantern Realty and Development'),(3496,781,'fave_agent_email','sab1.homes@outlook.com'),(3497,781,'fave_agent_position','Licensed Agent'),(3498,781,'fave_agent_mobile','704-433-8462'),(3499,781,'fave_agent_website','https://lantern-realty.com/'),(3500,781,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3501,781,'fave_agent_logo','22'),(3502,781,'fave_agent_agencies','45'),(3503,781,'_primary_term_agent_category','4'),(3504,781,'slide_template',''),(3505,781,'rs_page_bg_color',''),(3514,785,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3515,785,'_edit_lock','1600610549:1'),(3516,786,'_wp_attached_file','2020/09/Cheryl_Baxter.jpg'),(3517,786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:25:\"2020/09/Cheryl_Baxter.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Cheryl_Baxter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Cheryl_Baxter-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(3518,785,'_thumbnail_id','786'),(3519,785,'_edit_last','1'),(3520,785,'fave_agent_company','Lantern Realty and Development'),(3521,785,'fave_agent_email','cmbaxter2@gmail.com'),(3522,785,'fave_agent_position','Licensed Agent'),(3523,785,'fave_agent_mobile','704-796-8843'),(3524,785,'fave_agent_website','https://lantern-realty.com/'),(3525,785,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3526,785,'fave_agent_logo','22'),(3527,785,'fave_agent_agencies','45'),(3528,785,'_primary_term_agent_category','7'),(3529,785,'slide_template',''),(3530,785,'rs_page_bg_color',''),(3531,788,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3532,788,'_edit_lock','1612743858:1'),(3533,789,'_wp_attached_file','2020/09/Dale_Bullock.jpg'),(3534,789,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:777;s:6:\"height\";i:909;s:4:\"file\";s:24:\"2020/09/Dale_Bullock.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-768x898.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:898;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-777x785.jpg\";s:5:\"width\";i:777;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-513x600.jpg\";s:5:\"width\";i:513;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Dale_Bullock-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-496x580.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:580;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:{}}}'),(3535,788,'_thumbnail_id','789'),(3536,788,'_edit_last','1'),(3537,788,'fave_agent_company','Lantern Realty and Development'),(3538,788,'fave_agent_email','dale.bullock2014realtor@gmail.com'),(3539,788,'fave_agent_position','Licensed Agent'),(9062,788,'fave_agent_visible','0'),(3540,788,'fave_agent_mobile','704-791-5457'),(3541,788,'fave_agent_website','https://lantern-realty.com/'),(3542,788,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9063,788,'fave_agent_logo','22'),(3544,788,'fave_agent_agencies','45'),(3545,788,'_primary_term_agent_category','7'),(3546,788,'slide_template',''),(3547,788,'rs_page_bg_color',''),(3548,791,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3549,791,'_edit_lock','1600610934:1'),(3550,792,'_wp_attached_file','2020/09/Emily_Chandler.jpg'),(3551,792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:704;s:4:\"file\";s:26:\"2020/09/Emily_Chandler.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-511x600.jpg\";s:5:\"width\";i:511;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Emily_Chandler-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-496x582.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:582;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1594134378\";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:{}}}'),(3552,791,'_thumbnail_id','792'),(3553,791,'_edit_last','1'),(3554,791,'fave_agent_company','Lantern Realty and Development'),(3555,791,'fave_agent_email','emilychandler.realtor@gmail.com'),(3556,791,'fave_agent_position','Licensed Agent'),(3557,791,'fave_agent_mobile','615-397-1925'),(3558,791,'fave_agent_website','https://lantern-realty.com/'),(3559,791,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3567,791,'fave_agent_logo','22'),(3561,791,'fave_agent_agencies','758'),(3562,791,'_primary_term_agent_category','7'),(3563,791,'slide_template',''),(3564,791,'rs_page_bg_color',''),(3566,791,'fave_agent_license','297265'),(3568,795,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3569,795,'_edit_lock','1637541321:1'),(3570,796,'_wp_attached_file','2020/09/Meredith_Christy.png'),(3571,796,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:651;s:4:\"file\";s:28:\"2020/09/Meredith_Christy.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-276x300.png\";s:5:\"width\";i:276;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-600x564.png\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-553x600.png\";s:5:\"width\";i:553;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"Meredith_Christy-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-496x538.png\";s:5:\"width\";i:496;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3572,795,'_thumbnail_id','796'),(3573,795,'_edit_last','1'),(3574,795,'fave_agent_company','Lantern Realty and Development'),(3575,795,'fave_agent_email','meredith@meredithchristy.com'),(3576,795,'fave_agent_position','Licensed Agent'),(3577,795,'fave_agent_license','NC 298605'),(3578,795,'fave_agent_mobile','980-248-4097'),(3579,795,'fave_agent_website','https://lantern-realty.com/'),(3580,795,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3581,795,'fave_agent_logo','22'),(3582,795,'fave_agent_agencies','758'),(3583,795,'_primary_term_agent_category','7'),(11667,2163,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3585,795,'rs_page_bg_color',''),(3586,798,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3587,798,'_edit_lock','1600611671:1'),(3588,799,'_wp_attached_file','2020/09/Tracie_Clark.jpg'),(3589,799,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:713;s:4:\"file\";s:24:\"2020/09/Tracie_Clark.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-252x300.jpg\";s:5:\"width\";i:252;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-505x600.jpg\";s:5:\"width\";i:505;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Tracie_Clark-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-496x589.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:589;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599842996\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.87\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.041666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3590,798,'_thumbnail_id','799'),(3591,798,'_edit_last','1'),(3592,798,'fave_agent_company','Lantern Realty and Development'),(3593,798,'fave_agent_email','tracieclarksells@gmail.com'),(3594,798,'fave_agent_position','Licensed Agent'),(3595,798,'fave_agent_license','NC 238413'),(3596,798,'fave_agent_mobile','704-900-4637'),(3597,798,'fave_agent_website','https://lantern-realty.com/'),(3598,798,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3599,798,'fave_agent_logo','22'),(3600,798,'fave_agent_agencies','758'),(3601,798,'_primary_term_agent_category','7'),(3602,798,'slide_template',''),(3603,798,'rs_page_bg_color',''),(3604,801,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3605,801,'_edit_lock','1600611716:1'),(3606,801,'_thumbnail_id','22'),(3607,801,'_edit_last','1'),(3608,801,'fave_agent_company','Lantern Realty and Development'),(3609,801,'fave_agent_email','mdavis@thewhiteoakgrove.com'),(3610,801,'fave_agent_position','Licensed Agent'),(3611,801,'fave_agent_license','NC 289518'),(3612,801,'fave_agent_website','https://lantern-realty.com/'),(3613,801,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3614,801,'fave_agent_logo','22'),(3615,801,'fave_agent_agencies','45'),(3616,801,'_primary_term_agent_category','7'),(3617,801,'slide_template',''),(3618,801,'rs_page_bg_color',''),(3619,803,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3620,803,'_edit_lock','1600611995:1'),(3623,803,'_wp_desired_post_slug',''),(3624,803,'_edit_last','1'),(3625,803,'fave_agent_company','Lantern Realty and Development'),(3626,803,'fave_agent_email','kim@kimsellsconcord.com'),(3627,803,'fave_agent_position','Licensed Agent'),(3628,803,'fave_agent_mobile','704-778-6959'),(3629,803,'fave_agent_website','https://lantern-realty.com/'),(3630,803,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3631,803,'fave_agent_agencies','45'),(3632,803,'_primary_term_agent_category','7'),(3633,803,'slide_template',''),(3634,803,'rs_page_bg_color',''),(3635,805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3636,805,'_edit_lock','1600612250:1'),(3637,806,'_wp_attached_file','2020/09/China_Dunphy.jpg'),(3638,806,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:696;s:4:\"file\";s:24:\"2020/09/China_Dunphy.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-517x600.jpg\";s:5:\"width\";i:517;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"China_Dunphy-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-496x575.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:575;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:{}}}'),(3639,805,'_thumbnail_id','806'),(3640,805,'_edit_last','1'),(3641,805,'fave_agent_company','Lantern Realty and Development'),(3642,805,'fave_agent_position','Licensed Agent'),(3643,805,'fave_agent_license','NC 293885'),(3644,805,'fave_agent_mobile','704-701-0177'),(3645,805,'fave_agent_website','https://lantern-realty.com/'),(3646,805,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3647,805,'fave_agent_logo','22'),(3648,805,'fave_agent_agencies','45'),(3649,805,'_primary_term_agent_category','7'),(3650,805,'slide_template',''),(3651,805,'rs_page_bg_color',''),(3652,808,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3653,808,'_edit_lock','1600612317:1'),(3654,809,'_wp_attached_file','2020/09/Ivonne_Erion.jpg'),(3655,809,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:648;s:4:\"file\";s:24:\"2020/09/Ivonne_Erion.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-278x300.jpg\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-556x600.jpg\";s:5:\"width\";i:556;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Ivonne_Erion-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-496x536.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:536;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:{}}}'),(3656,808,'_thumbnail_id','809'),(3657,808,'_edit_last','1'),(3658,808,'fave_agent_company','Lantern Realty and Development'),(3659,808,'fave_agent_email','ivonne@ivonneerion.com'),(3660,808,'fave_agent_position','Licensed Agent'),(3661,808,'fave_agent_license','NC 289340'),(3662,808,'fave_agent_mobile','704-796-3530'),(3663,808,'fave_agent_website','https://lantern-realty.com/'),(3664,808,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3665,808,'fave_agent_logo','22'),(3666,808,'fave_agent_agencies','45'),(3667,808,'_primary_term_agent_category','7'),(3668,808,'slide_template',''),(3669,808,'rs_page_bg_color',''),(3670,811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3671,811,'_edit_lock','1645147996:1'),(3672,812,'_wp_attached_file','2020/09/Jeff_Franklin.jpg'),(3673,812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:605;s:4:\"file\";s:25:\"2020/09/Jeff_Franklin.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-595x600.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Jeff_Franklin-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-496x500.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:500;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:{}}}'),(3674,811,'_thumbnail_id','812'),(3675,811,'_edit_last','1'),(3676,811,'fave_agent_company','Lantern Realty and Development'),(3677,811,'fave_agent_email','jeff.franklin.realtor@gmail.com'),(3678,811,'fave_agent_position','Licensed Agent'),(3679,811,'fave_agent_license','NC 298704'),(3680,811,'fave_agent_mobile','704-787-4888'),(3681,811,'fave_agent_website','https://lantern-realty.com/'),(3682,811,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3683,811,'fave_agent_logo','22'),(3684,811,'fave_agent_agencies','757'),(3685,811,'_primary_term_agent_category','7'),(11943,2265,'_wp_attached_file','2019/06/Julie_Nutter-1.jpg'),(3687,811,'rs_page_bg_color',''),(3688,814,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3689,814,'_edit_lock','1600612918:1'),(3690,814,'_thumbnail_id','22'),(3691,814,'_edit_last','1'),(3692,814,'fave_agent_company','Lantern Realty and Development'),(3693,814,'fave_agent_email','conardhaywood@gmail.com'),(3694,814,'fave_agent_position','Licensed Agent'),(3695,814,'fave_agent_license','NC 319615'),(3696,814,'fave_agent_mobile','704-467-5102'),(3697,814,'fave_agent_website','https://lantern-realty.com/'),(3698,814,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3699,814,'fave_agent_logo','22'),(3700,814,'fave_agent_agencies','45'),(3701,814,'_primary_term_agent_category','7'),(3702,814,'slide_template',''),(3703,814,'rs_page_bg_color',''),(3704,608,'fave_agent_license','NC 314736'),(3706,816,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3707,816,'_edit_lock','1600613194:1'),(3708,817,'_wp_attached_file','2020/09/Donna_Hiner.jpg'),(3709,817,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:618;s:6:\"height\";i:649;s:4:\"file\";s:23:\"2020/09/Donna_Hiner.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-286x300.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-618x564.jpg\";s:5:\"width\";i:618;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-571x600.jpg\";s:5:\"width\";i:571;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"Donna_Hiner-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-496x521.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:521;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:{}}}'),(3710,816,'_thumbnail_id','817'),(3711,816,'_edit_last','1'),(3712,816,'fave_agent_company','Lantern Realty and Development'),(3713,816,'fave_agent_email','donnasellsrealestate1@gmail.com'),(3714,816,'fave_agent_position','Licensed Agent'),(3715,816,'fave_agent_license','NC 272915'),(3716,816,'fave_agent_mobile','704-956-9898'),(3717,816,'fave_agent_website','https://lantern-realty.com/'),(3718,816,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3719,816,'fave_agent_logo','22'),(3720,816,'fave_agent_agencies','758'),(3721,816,'_primary_term_agent_category','7'),(3722,816,'slide_template',''),(3723,816,'rs_page_bg_color',''),(3724,819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3725,819,'_edit_lock','1645147949:1'),(3726,820,'_wp_attached_file','2020/09/Priscilla_Johnson.png'),(3727,820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:773;s:6:\"height\";i:845;s:4:\"file\";s:29:\"2020/09/Priscilla_Johnson.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-274x300.png\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-768x840.png\";s:5:\"width\";i:768;s:6:\"height\";i:840;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-773x785.png\";s:5:\"width\";i:773;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-549x600.png\";s:5:\"width\";i:549;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:28:\"Priscilla_Johnson-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-496x542.png\";s:5:\"width\";i:496;s:6:\"height\";i:542;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3728,819,'_thumbnail_id','820'),(3729,819,'_edit_last','1'),(3730,819,'fave_agent_company','Lantern Realty and Development'),(3731,819,'fave_agent_email','priscillajrealtor@gmail.com'),(3732,819,'fave_agent_position','Licensed Agent'),(3733,819,'fave_agent_mobile','704-891-5386'),(3734,819,'fave_agent_website','https://lantern-realty.com/'),(3735,819,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11942,819,'fave_agent_logo','22'),(3738,819,'_primary_term_agent_category','6'),(3740,819,'rs_page_bg_color',''),(3741,822,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3742,822,'_edit_lock','1600613470:1'),(3743,823,'_wp_attached_file','2020/09/Cheyenne_Kidd.jpg'),(3744,823,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:609;s:4:\"file\";s:25:\"2020/09/Cheyenne_Kidd.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-296x300.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-591x600.jpg\";s:5:\"width\";i:591;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Cheyenne_Kidd-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-496x503.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:503;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:{}}}'),(3745,822,'_thumbnail_id','823'),(3746,822,'_edit_last','1'),(3747,822,'fave_agent_company','Lantern Realty and Development'),(3748,822,'fave_agent_email','cheyennekidd00@gmail.com'),(3749,822,'fave_agent_position','Licensed Agent'),(3750,822,'fave_agent_license','NC 318995'),(3751,822,'fave_agent_mobile','980-939-3809'),(3752,822,'fave_agent_website','https://lantern-realty.com/'),(3753,822,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3754,822,'fave_agent_logo','22'),(3755,822,'fave_agent_agencies','757'),(3756,822,'_primary_term_agent_category','7'),(3757,822,'slide_template',''),(3758,822,'rs_page_bg_color',''),(3759,825,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3760,825,'_edit_lock','1600613861:1'),(3761,826,'_wp_attached_file','2020/09/Dawn_Lamb.jpg'),(3762,826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:722;s:6:\"height\";i:796;s:4:\"file\";s:21:\"2020/09/Dawn_Lamb.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-272x300.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-722x785.jpg\";s:5:\"width\";i:722;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-722x564.jpg\";s:5:\"width\";i:722;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-544x600.jpg\";s:5:\"width\";i:544;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"Dawn_Lamb-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-496x547.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:547;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:{}}}'),(3763,825,'_thumbnail_id','826'),(3764,825,'_edit_last','1'),(3765,825,'fave_agent_company','Lantern Realty and Development'),(3766,825,'fave_agent_email','dawnlambrealtor@gmail.com'),(3767,825,'fave_agent_position','Licensed Agent'),(3768,825,'fave_agent_license','NC 315881'),(3769,825,'fave_agent_mobile','980-781-7385'),(3770,825,'fave_agent_website','https://lantern-realty.com/'),(3771,825,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3772,825,'fave_agent_logo','22'),(3773,825,'fave_agent_agencies','45'),(3774,825,'_primary_term_agent_category','7'),(3775,825,'slide_template',''),(3776,825,'rs_page_bg_color',''),(3777,828,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3778,828,'_edit_lock','1600614053:1'),(3779,829,'_wp_attached_file','2020/09/Connie_Merrell.jpg'),(3780,829,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:795;s:6:\"height\";i:770;s:4:\"file\";s:26:\"2020/09/Connie_Merrell.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-300x291.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-768x744.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-619x600.jpg\";s:5:\"width\";i:619;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Connie_Merrell-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-496x480.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:480;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:{}}}'),(3781,828,'_thumbnail_id','829'),(3782,828,'_edit_last','1'),(3783,828,'fave_agent_company','Lantern Realty and Development'),(3784,828,'fave_agent_email','connie.merrell.realtor@gmail.com'),(3785,828,'fave_agent_position','Licensed Agent'),(3786,828,'fave_agent_license','NC 320338'),(3787,828,'fave_agent_mobile','704-701-1678'),(3788,828,'fave_agent_website','https://lantern-realty.com/'),(3789,828,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3790,828,'fave_agent_logo','22'),(3791,828,'fave_agent_agencies','45'),(3792,828,'_primary_term_agent_category','7'),(3793,828,'slide_template',''),(3794,828,'rs_page_bg_color',''),(3795,831,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3796,831,'_edit_lock','1600614292:1'),(3797,832,'_wp_attached_file','2020/09/Rachel_Monrad.jpg'),(3798,832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:212;s:6:\"height\";i:226;s:4:\"file\";s:25:\"2020/09/Rachel_Monrad.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Rachel_Monrad-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Rachel_Monrad-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(3799,831,'_thumbnail_id','832'),(3800,831,'_edit_last','1'),(3801,831,'fave_agent_company','Lantern Realty and Development'),(3802,831,'fave_agent_email','rachel@randsrealtygroup.com'),(3803,831,'fave_agent_position','Licensed Agent'),(3804,831,'fave_agent_license','NC 251860'),(3805,831,'fave_agent_mobile','704-682-9422'),(3806,831,'fave_agent_website','https://lantern-realty.com/'),(3807,831,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3808,831,'fave_agent_logo','22'),(3809,831,'fave_agent_agencies','760'),(3810,831,'_primary_term_agent_category','7'),(3811,831,'slide_template',''),(3812,831,'rs_page_bg_color',''),(3813,834,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3814,834,'_edit_lock','1600614602:1'),(3815,834,'_thumbnail_id','22'),(3816,834,'_edit_last','1'),(3817,834,'fave_agent_company','Lantern Realty and Development'),(3818,834,'fave_agent_email','rodneque@aol.com'),(3819,834,'fave_agent_position','Licensed Agent'),(3820,834,'fave_agent_license','NC 197764'),(3821,834,'fave_agent_mobile','704-239-3617'),(3822,834,'fave_agent_website','https://lantern-realty.com/'),(3823,834,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3824,834,'fave_agent_logo','22'),(3825,834,'fave_agent_agencies','757'),(3826,834,'_primary_term_agent_category','7'),(3827,834,'slide_template',''),(3828,834,'rs_page_bg_color',''),(3829,836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3830,836,'_edit_lock','1600614866:1'),(3831,837,'_wp_attached_file','2020/09/Kelly_Robinson.jpg'),(3832,837,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:464;s:6:\"height\";i:454;s:4:\"file\";s:26:\"2020/09/Kelly_Robinson.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Kelly_Robinson-300x294.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Kelly_Robinson-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Kelly_Robinson-464x444.jpg\";s:5:\"width\";i:464;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Kelly_Robinson-464x438.jpg\";s:5:\"width\";i:464;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Kelly_Robinson-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(3833,836,'_thumbnail_id','837'),(3834,836,'_edit_last','1'),(3835,836,'fave_agent_company','Lantern Realty and Development'),(3836,836,'fave_agent_email','kelly.robinson.realtor@gmail.com'),(3837,836,'fave_agent_position','Licensed Agent'),(3838,836,'fave_agent_license','NC 316981'),(3839,836,'fave_agent_mobile','704-699-2268'),(3840,836,'fave_agent_website','https://lantern-realty.com/'),(3841,836,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3842,836,'fave_agent_logo','22'),(3843,836,'fave_agent_agencies','45'),(3844,836,'_primary_term_agent_category','7'),(3845,836,'slide_template',''),(3846,836,'rs_page_bg_color',''),(3847,839,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3848,839,'_edit_lock','1600615060:1'),(3849,840,'_wp_attached_file','2020/09/Hayley_Rogers.jpg'),(3850,840,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:651;s:4:\"file\";s:25:\"2020/09/Hayley_Rogers.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-276x300.jpg\";s:5:\"width\";i:276;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-553x600.jpg\";s:5:\"width\";i:553;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Hayley_Rogers-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-496x538.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1471538763\";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:{}}}'),(3851,839,'_thumbnail_id','840'),(3852,839,'_edit_last','1'),(3853,839,'fave_agent_company','Lantern Realty and Development'),(3854,839,'fave_agent_email','hayley.realestate.rogers@gmail.com'),(3855,839,'fave_agent_position','Licensed Agent'),(3856,839,'fave_agent_mobile','704-431-2816'),(3857,839,'fave_agent_website','https://lantern-realty.com/'),(3858,839,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3859,839,'fave_agent_logo','22'),(3860,839,'fave_agent_agencies','758'),(3861,839,'_primary_term_agent_category','7'),(3862,839,'slide_template',''),(3863,839,'rs_page_bg_color',''),(3864,842,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3865,842,'_edit_lock','1600615225:1'),(3866,843,'_wp_attached_file','2020/09/Sarah_Romesburg.jpg'),(3867,843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:219;s:6:\"height\";i:260;s:4:\"file\";s:27:\"2020/09/Sarah_Romesburg.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Sarah_Romesburg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"Sarah_Romesburg-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(3868,842,'_thumbnail_id','843'),(3869,842,'_edit_last','1'),(3870,842,'fave_agent_company','Lantern Realty and Development'),(3871,842,'fave_agent_email','sarah@randsrealtygroup.com'),(3872,842,'fave_agent_position','Licensed Agent'),(3873,842,'fave_agent_license','NC 279215'),(3874,842,'fave_agent_mobile','336-466-1646'),(3875,842,'fave_agent_website','https://lantern-realty.com/'),(3876,842,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3877,842,'fave_agent_logo','22'),(3878,842,'fave_agent_agencies','760'),(3879,842,'_primary_term_agent_category','7'),(3880,842,'slide_template',''),(3881,842,'rs_page_bg_color',''),(3882,845,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3883,845,'_edit_lock','1600615398:1'),(3884,846,'_wp_attached_file','2020/09/Chelsi_Sherin.jpg'),(3885,846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:789;s:6:\"height\";i:1001;s:4:\"file\";s:25:\"2020/09/Chelsi_Sherin.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-768x974.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:974;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-789x785.jpg\";s:5:\"width\";i:789;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-473x600.jpg\";s:5:\"width\";i:473;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Chelsi_Sherin-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-496x629.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 11\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1584705821\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:18:\"0.0032679738562092\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3886,845,'_thumbnail_id','846'),(3887,845,'_edit_last','1'),(3888,845,'fave_agent_company','Lantern Realty and Development'),(3889,845,'fave_agent_email','chelsi.sherin@gmail.com'),(3890,845,'fave_agent_position','Licensed Agent'),(3891,845,'fave_agent_license','NC 317621'),(3892,845,'fave_agent_mobile','570-690-3723'),(3893,845,'fave_agent_website','https://lantern-realty.com/'),(3894,845,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3895,845,'fave_agent_logo','22'),(3896,845,'fave_agent_agencies','45'),(3897,845,'_primary_term_agent_category','7'),(3898,845,'slide_template',''),(3899,845,'rs_page_bg_color',''),(3900,848,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3901,848,'_edit_lock','1645153695:1'),(3902,848,'_thumbnail_id','2258'),(3903,848,'_edit_last','1'),(3904,848,'fave_agent_company','Lantern Realty and Development'),(3905,848,'fave_agent_email','hbsidesrealty@gmail.com'),(3906,848,'fave_agent_position','Licensed Agent'),(11934,848,'fave_agent_visible','0'),(3907,848,'fave_agent_license','NC 322169'),(3908,848,'fave_agent_mobile','704-699-2092'),(3909,848,'fave_agent_website','https://lantern-realty.com/'),(3910,848,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(12201,848,'fave_agent_logo','22'),(3912,848,'fave_agent_agencies','45'),(3913,848,'_primary_term_agent_category','7'),(11936,2261,'_wp_attached_file','2019/06/Jessica_Cloward-1.jpg'),(3915,848,'rs_page_bg_color',''),(3918,851,'_wp_attached_file','2020/09/Ellen_Thomas.jpg'),(3919,851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:633;s:4:\"file\";s:24:\"2020/09/Ellen_Thomas.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-569x600.jpg\";s:5:\"width\";i:569;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Ellen_Thomas-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-496x523.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"XT1575\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1532615335\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.67\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.03333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9770,1664,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:22:\"2021/03/147-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:7:\"147.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:7:\"147.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1638;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:397;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:29:\"Copyright Lifetouch Inc. 2019\";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:{}}s:14:\"original_image\";s:7:\"147.jpg\";}'),(9769,1664,'_wp_attached_file','2021/03/147-scaled.jpg'),(10850,1884,'_wp_attached_file','2021/06/PicsArt_06-08-09.58.13-scaled.jpg'),(10851,1884,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1761;s:6:\"height\";i:2560;s:4:\"file\";s:41:\"2021/06/PicsArt_06-08-09.58.13-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-206x300.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"PicsArt_06-08-09.58.13-704x1024.jpg\";s:5:\"width\";i:704;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-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:35:\"PicsArt_06-08-09.58.13-768x1117.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"PicsArt_06-08-09.58.13-1056x1536.jpg\";s:5:\"width\";i:1056;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"PicsArt_06-08-09.58.13-1408x2048.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:35:\"PicsArt_06-08-09.58.13-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-413x600.jpg\";s:5:\"width\";i:413;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:33:\"PicsArt_06-08-09.58.13-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-496x721.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:15:\"360855432028101\";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:{}}s:14:\"original_image\";s:26:\"PicsArt_06-08-09.58.13.jpg\";}'),(3934,853,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3935,853,'_edit_lock','1613699294:1'),(3936,853,'_thumbnail_id','1590'),(3937,853,'_edit_last','1'),(3938,853,'fave_agent_company','Lantern Realty and Development'),(3939,853,'fave_agent_email','richard.wilson4565@gmail.com'),(3940,853,'fave_agent_position','Licensed Agent'),(9259,853,'fave_agent_visible','0'),(3941,853,'fave_agent_license','NC 321788'),(3942,853,'fave_agent_mobile','704-996-9902'),(3943,853,'fave_agent_website','https://lantern-realty.com/'),(3944,853,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9264,853,'fave_agent_logo','22'),(3946,853,'fave_agent_agencies','45'),(3947,853,'_primary_term_agent_category','7'),(3948,853,'slide_template',''),(3949,853,'rs_page_bg_color',''),(3950,424,'fave_agent_license','NC 303207'),(3952,528,'fave_agent_license','NC 302340'),(7852,1302,'_edit_last','1'),(7851,1302,'_wp_page_template','template/template-onepage.php'),(7850,1302,'_edit_lock','1603069317:1'),(7849,1302,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7848,1302,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3964,755,'_elementor_page_settings','a:7:{s:11:\"viewport_md\";s:0:\"\";s:11:\"viewport_lg\";s:0:\"\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:8:\"2dd0bd27\";s:5:\"title\";s:14:\"Saved Color #5\";s:5:\"color\";s:7:\"#4054B2\";}i:1;a:3:{s:3:\"_id\";s:8:\"5f616f78\";s:5:\"title\";s:14:\"Saved Color #6\";s:5:\"color\";s:7:\"#23A455\";}i:2;a:3:{s:3:\"_id\";s:8:\"69ee5813\";s:5:\"title\";s:14:\"Saved Color #7\";s:5:\"color\";s:4:\"#000\";}i:3;a:3:{s:3:\"_id\";s:8:\"555146e2\";s:5:\"title\";s:14:\"Saved Color #8\";s:5:\"color\";s:4:\"#FFF\";}i:4;a:3:{s:3:\"_id\";s:7:\"d9cbdc1\";s:5:\"title\";s:17:\"Lantern Dark Blue\";s:5:\"color\";s:7:\"#053a72\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:16:\"Primary Headline\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:18:\"Secondary Headline\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:9:\"Body Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:11:\"Accent Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:15:\"viewport_mobile\";s:0:\"\";s:15:\"viewport_tablet\";s:0:\"\";}'),(7160,1233,'_wp_page_template','template/template-onepage.php'),(7161,1233,'_elementor_edit_mode','builder'),(7162,1233,'_elementor_template_type','wp-page'),(7163,1233,'_elementor_version','3.0.11'),(7164,1233,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\",\"list_row_header_color\":\"globals\\/colors?id=primary\",\"list_element_text_color\":\"globals\\/colors?id=secondary\",\"list_element_even_color\":\"globals\\/colors?id=555146e2\"},\"eael_event_calendar_default_view\":\"listMonth\",\"day_event_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"day_event_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"event_popup_title_typography_typography\":\"custom\",\"event_popup_date_typography_typography\":\"custom\",\"event_popup_date_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"event_popup_date_icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"event_popup_content_typography_typography\":\"custom\",\"event_popup_content_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7156,1232,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5812,193,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.8344022246349833693557229707948863506317138671875;s:5:\"bytes\";i:204665;s:11:\"size_before\";i:1889029;s:10:\"size_after\";i:1684364;s:4:\"time\";d:0.41000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:3312;s:11:\"size_before\";i:26402;s:10:\"size_after\";i:23090;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7082;s:11:\"size_before\";i:64863;s:10:\"size_after\";i:57781;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2518;s:11:\"size_before\";i:20293;s:10:\"size_after\";i:17775;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:30433;s:11:\"size_before\";i:268415;s:10:\"size_after\";i:237982;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:10258;s:11:\"size_before\";i:93418;s:10:\"size_after\";i:83160;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:10709;s:11:\"size_before\";i:97720;s:10:\"size_after\";i:87011;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:16040;s:11:\"size_before\";i:155867;s:10:\"size_after\";i:139827;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:22791;s:11:\"size_before\";i:204514;s:10:\"size_after\";i:181723;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:30920;s:11:\"size_before\";i:295131;s:10:\"size_after\";i:264211;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:28516;s:11:\"size_before\";i:266477;s:10:\"size_after\";i:237961;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:11444;s:11:\"size_before\";i:106132;s:10:\"size_after\";i:94688;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:2805;s:11:\"size_before\";i:20991;s:10:\"size_after\";i:18186;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:13505;s:11:\"size_before\";i:132332;s:10:\"size_after\";i:118827;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:14332;s:11:\"size_before\";i:136474;s:10:\"size_after\";i:122142;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(7151,1232,'_wp_page_template','template/template-onepage.php'),(7152,1232,'_elementor_edit_mode','builder'),(7153,1232,'_elementor_template_type','wp-page'),(7154,1232,'_elementor_version','3.0.11'),(7155,1232,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7148,1231,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7140,1230,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5741,1127,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.37747292229048667877577827312052249908447265625;s:5:\"bytes\";i:92787;s:11:\"size_before\";i:989467;s:10:\"size_after\";i:896680;s:4:\"time\";d:0.230000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6065;s:11:\"size_before\";i:62069;s:10:\"size_after\";i:56004;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:2076;s:11:\"size_before\";i:20138;s:10:\"size_after\";i:18062;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:15575;s:11:\"size_before\";i:159829;s:10:\"size_after\";i:144254;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:18230;s:11:\"size_before\";i:224247;s:10:\"size_after\";i:206017;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:14922;s:11:\"size_before\";i:156265;s:10:\"size_after\";i:141343;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:20514;s:11:\"size_before\";i:210952;s:10:\"size_after\";i:190438;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1223;s:11:\"size_before\";i:11587;s:10:\"size_after\";i:10364;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:14182;s:11:\"size_before\";i:144380;s:10:\"size_after\";i:130198;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(8525,1367,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:828;s:6:\"height\";i:821;s:4:\"file\";s:20:\"2020/10/IMG_0917.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:12:\"IMG_0917.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:12:\"IMG_0917.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:762;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:828;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:492;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:{}}}'),(8524,1367,'_wp_attached_file','2020/10/IMG_0917.jpg'),(5740,1129,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.75397465587676659737326190224848687648773193359375;s:5:\"bytes\";i:1827;s:11:\"size_before\";i:38431;s:10:\"size_after\";i:36604;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:957;s:11:\"size_before\";i:23189;s:10:\"size_after\";i:22232;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:870;s:11:\"size_before\";i:15242;s:10:\"size_after\";i:14372;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5256,1052,'_wp_attached_file','2020/10/Donna_Hawkins-scaled.jpg'),(5257,1052,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2061;s:6:\"height\";i:2560;s:4:\"file\";s:32:\"2020/10/Donna_Hawkins-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-242x300.jpg\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Donna_Hawkins-824x1024.jpg\";s:5:\"width\";i:824;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-768x954.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:954;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1237x1536.jpg\";s:5:\"width\";i:1237;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1649x2048.jpg\";s:5:\"width\";i:1649;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:26:\"Donna_Hawkins-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-483x600.jpg\";s:5:\"width\";i:483;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Donna_Hawkins-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-496x616.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:616;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:{}}s:14:\"original_image\";s:17:\"Donna_Hawkins.jpg\";}'),(4395,916,'_edit_lock','1602509728:1'),(4394,916,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4072,878,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4073,878,'_edit_lock','1602354126:1'),(4074,878,'_wp_page_template','template/user_dashboard_crm.php'),(4075,878,'_edit_last','1'),(4076,878,'fave_listing_page_content_area','0'),(4077,878,'fave_prop_no','9'),(4078,878,'fave_properties_sort','d_date'),(4079,878,'fave_listings_tabs','disable'),(4080,878,'fave_properties_min_beds','0'),(4081,878,'fave_properties_min_baths','0'),(4082,878,'fave_agency_orderby','None'),(4083,878,'fave_agency_order','ASC'),(4084,878,'fave_agent_orderby','None'),(4085,878,'fave_agent_order','ASC'),(4086,878,'fave_header_type','none'),(4087,878,'fave_page_header_image_opacity','0.35'),(4088,878,'fave_page_header_search','0'),(4089,878,'fave_header_full_screen','0'),(4090,878,'fave_adv_search_enable','global'),(4091,878,'fave_adv_search','hide'),(4092,878,'fave_adv_search_pos','under_menu'),(4093,878,'fave_page_title','show'),(4094,878,'fave_page_breadcrumb','show'),(4095,878,'fave_page_sidebar','right_sidebar'),(4096,878,'fave_page_background','yes'),(4097,878,'fave_main_menu_trans','no'),(4098,878,'slide_template','default'),(4099,878,'rs_page_bg_color','#ffffff'),(4100,878,'_wpb_vc_js_status','false'),(4101,878,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4102,880,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4103,880,'_edit_lock','1602354115:1'),(4104,880,'_wp_page_template','template/user_dashboard_profile.php'),(4105,880,'_edit_last','1'),(4106,880,'fave_listing_page_content_area','0'),(4107,880,'fave_prop_no','9'),(4108,880,'fave_properties_sort','d_date'),(4109,880,'fave_listings_tabs','disable'),(4110,880,'fave_properties_min_beds','0'),(4111,880,'fave_properties_min_baths','0'),(4112,880,'fave_agency_orderby','None'),(4113,880,'fave_agency_order','ASC'),(4114,880,'fave_agent_orderby','None'),(4115,880,'fave_agent_order','ASC'),(4116,880,'fave_header_type','none'),(4117,880,'fave_page_header_image_opacity','0.35'),(4118,880,'fave_page_header_search','0'),(4119,880,'fave_header_full_screen','0'),(4120,880,'fave_adv_search_enable','global'),(4121,880,'fave_adv_search','hide'),(4122,880,'fave_adv_search_pos','under_menu'),(4123,880,'fave_page_title','show'),(4124,880,'fave_page_breadcrumb','show'),(4125,880,'fave_page_sidebar','right_sidebar'),(4126,880,'fave_page_background','yes'),(4127,880,'fave_main_menu_trans','no'),(4128,880,'slide_template','default'),(4129,880,'rs_page_bg_color','#ffffff'),(4130,880,'_wpb_vc_js_status','false'),(4131,880,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4132,882,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4133,882,'_edit_lock','1618361379:1'),(4134,882,'_edit_last','1'),(4135,882,'fave_listing_page_content_area','0'),(4136,882,'fave_prop_no','9'),(4137,882,'fave_properties_sort','d_date'),(4138,882,'fave_listings_tabs','disable'),(4139,882,'fave_properties_min_beds','0'),(4140,882,'fave_properties_min_baths','0'),(4141,882,'fave_agency_orderby','None'),(4142,882,'fave_agency_order','ASC'),(4143,882,'fave_agent_orderby','None'),(4144,882,'fave_agent_order','ASC'),(4145,882,'fave_header_type','none'),(4146,882,'fave_page_header_image_opacity','0.35'),(4147,882,'fave_page_header_search','0'),(4148,882,'fave_header_full_screen','0'),(4149,882,'fave_adv_search_enable','global'),(4150,882,'fave_adv_search','hide'),(4151,882,'fave_adv_search_pos','under_menu'),(4152,882,'fave_page_title','show'),(4153,882,'fave_page_breadcrumb','show'),(4154,882,'fave_page_sidebar','right_sidebar'),(4155,882,'fave_page_background','yes'),(4156,882,'fave_main_menu_trans','no'),(4157,882,'slide_template','default'),(4158,882,'rs_page_bg_color','#ffffff'),(4159,882,'_wpb_vc_js_status','false'),(4160,882,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4161,882,'_wp_page_template','template/template-onepage.php'),(4162,882,'_elementor_edit_mode','builder'),(4166,882,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-graduation-cap\",\"title\":\"Training Links\",\"text\":\"Links to Lantern published training videos and materials.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-training-links\\/\"},\"_id\":\"38d3048\"}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"70d7f95\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1241\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(4164,882,'_elementor_template_type','wp-page'),(4165,882,'_elementor_version','3.1.1'),(7081,1224,'_wp_page_template','template/template-onepage.php'),(7082,1224,'_elementor_edit_mode','builder'),(7083,1224,'_elementor_template_type','wp-page'),(7084,1224,'_elementor_version','3.0.11'),(7085,1224,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6697,1174,'_wp_page_template','template/template-onepage.php'),(6698,1174,'_elementor_edit_mode','builder'),(6699,1174,'_elementor_template_type','wp-page'),(6700,1174,'_elementor_version','3.0.11'),(6701,1174,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5806,145,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.6067185890773085787941454327665269374847412109375;s:5:\"bytes\";i:89393;s:11:\"size_before\";i:842796;s:10:\"size_after\";i:753403;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:2623;s:11:\"size_before\";i:23312;s:10:\"size_after\";i:20689;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:7023;s:11:\"size_before\";i:65129;s:10:\"size_after\";i:58106;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2428;s:11:\"size_before\";i:21407;s:10:\"size_after\";i:18979;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7719;s:11:\"size_before\";i:72117;s:10:\"size_after\";i:64398;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:8312;s:11:\"size_before\";i:75794;s:10:\"size_after\";i:67482;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:10777;s:11:\"size_before\";i:110878;s:10:\"size_after\";i:100101;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:13789;s:11:\"size_before\";i:135605;s:10:\"size_after\";i:121816;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9673;s:11:\"size_before\";i:88697;s:10:\"size_after\";i:79024;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2009;s:11:\"size_before\";i:17563;s:10:\"size_after\";i:15554;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:10484;s:11:\"size_before\";i:97970;s:10:\"size_after\";i:87486;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:14556;s:11:\"size_before\";i:134324;s:10:\"size_after\";i:119768;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(7143,1231,'_wp_page_template','template/template-onepage.php'),(7144,1231,'_elementor_edit_mode','builder'),(7135,1230,'_wp_page_template','template/template-onepage.php'),(7136,1230,'_elementor_edit_mode','builder'),(7137,1230,'_elementor_template_type','wp-page'),(7138,1230,'_elementor_version','3.0.11'),(7139,1230,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7131,1229,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6694,1173,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7122,1228,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5807,172,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.562797354836387597742941579781472682952880859375;s:5:\"bytes\";i:320109;s:11:\"size_before\";i:2056886;s:10:\"size_after\";i:1736777;s:4:\"time\";d:0.8800000000000001154631945610162802040576934814453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3025;s:11:\"size_before\";i:18106;s:10:\"size_after\";i:15081;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5413;s:11:\"size_before\";i:31215;s:10:\"size_after\";i:25802;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:21073;s:11:\"size_before\";i:128592;s:10:\"size_after\";i:107519;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:32059;s:11:\"size_before\";i:198363;s:10:\"size_after\";i:166304;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:1810;s:11:\"size_before\";i:10392;s:10:\"size_after\";i:8582;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:44082;s:11:\"size_before\";i:291412;s:10:\"size_after\";i:247330;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:10180;s:11:\"size_before\";i:62889;s:10:\"size_after\";i:52709;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:10208;s:11:\"size_before\";i:63025;s:10:\"size_after\";i:52817;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:17321;s:11:\"size_before\";i:107504;s:10:\"size_after\";i:90183;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:27148;s:11:\"size_before\";i:171101;s:10:\"size_after\";i:143953;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:30206;s:11:\"size_before\";i:223126;s:10:\"size_after\";i:192920;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:54374;s:11:\"size_before\";i:357721;s:10:\"size_after\";i:303347;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.010000000000001563194018672220408916473388671875;s:5:\"bytes\";i:10221;s:11:\"size_before\";i:63838;s:10:\"size_after\";i:53617;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2490;s:11:\"size_before\";i:15414;s:10:\"size_after\";i:12924;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6328;s:11:\"size_before\";i:37677;s:10:\"size_after\";i:31349;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:44171;s:11:\"size_before\";i:276511;s:10:\"size_after\";i:232340;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(6689,1173,'_wp_page_template','template/template-onepage.php'),(6690,1173,'_elementor_edit_mode','builder'),(6681,1172,'_wp_page_template','template/template-onepage.php'),(6682,1172,'_elementor_edit_mode','builder'),(6683,1172,'_elementor_template_type','wp-page'),(6684,1172,'_elementor_version','3.0.11'),(6685,1172,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6691,1173,'_elementor_template_type','wp-page'),(6692,1173,'_elementor_version','3.0.11'),(6693,1173,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7113,1227,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8857,1491,'_wp_attached_file','2021/01/2021-Educational-Calendar-1.xlsx'),(7126,1229,'_wp_page_template','template/template-onepage.php'),(7127,1229,'_elementor_edit_mode','builder'),(7128,1229,'_elementor_template_type','wp-page'),(7129,1229,'_elementor_version','3.0.11'),(7130,1229,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7117,1228,'_wp_page_template','template/template-onepage.php'),(7118,1228,'_elementor_edit_mode','builder'),(7119,1228,'_elementor_template_type','wp-page'),(7120,1228,'_elementor_version','3.0.11'),(7121,1228,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5808,186,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.2239991871769344555787029094062745571136474609375;s:5:\"bytes\";i:125124;s:11:\"size_before\";i:1023593;s:10:\"size_after\";i:898469;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:3591;s:11:\"size_before\";i:25436;s:10:\"size_after\";i:21845;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:9203;s:11:\"size_before\";i:73777;s:10:\"size_after\";i:64574;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3237;s:11:\"size_before\";i:23246;s:10:\"size_after\";i:20009;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:10638;s:11:\"size_before\";i:85909;s:10:\"size_after\";i:75271;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11115;s:11:\"size_before\";i:89645;s:10:\"size_after\";i:78530;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:16519;s:11:\"size_before\";i:143371;s:10:\"size_after\";i:126852;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:22742;s:11:\"size_before\";i:182577;s:10:\"size_after\";i:159835;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12511;s:11:\"size_before\";i:102570;s:10:\"size_after\";i:90059;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2781;s:11:\"size_before\";i:19070;s:10:\"size_after\";i:16289;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:11764;s:11:\"size_before\";i:96089;s:10:\"size_after\";i:84325;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:21023;s:11:\"size_before\";i:181903;s:10:\"size_after\";i:160880;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(7108,1227,'_wp_page_template','template/template-onepage.php'),(7109,1227,'_elementor_edit_mode','builder'),(7110,1227,'_elementor_template_type','wp-page'),(7111,1227,'_elementor_version','3.0.11'),(7112,1227,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7104,1226,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8860,1494,'_wp_attached_file','2021/01/2021-Educational-Calendar-2.xlsx'),(8865,1497,'_wp_attached_file','2021/01/2021-Educational-Calendar-3.xlsx'),(7145,1231,'_elementor_template_type','wp-page'),(7146,1231,'_elementor_version','3.0.11'),(7147,1231,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7090,1225,'_wp_page_template','template/template-onepage.php'),(7091,1225,'_elementor_edit_mode','builder'),(7092,1225,'_elementor_template_type','wp-page'),(7093,1225,'_elementor_version','3.0.11'),(7094,1225,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Announcement Archive\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7100,1226,'_elementor_edit_mode','builder'),(7101,1226,'_elementor_template_type','wp-page'),(7102,1226,'_elementor_version','3.0.11'),(7103,1226,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(4331,906,'_wp_attached_file','2020/10/LANTERN_BC_cmp.jpg'),(4332,906,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1980;s:6:\"height\";i:1530;s:4:\"file\";s:26:\"2020/10/LANTERN_BC_cmp.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"LANTERN_BC_cmp-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-768x593.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:593;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"LANTERN_BC_cmp-1536x1187.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:27:\"LANTERN_BC_cmp-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-776x600.jpg\";s:5:\"width\";i:776;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"LANTERN_BC_cmp-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-496x383.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:383;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:{}}}'),(7095,1225,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8878,1501,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.056007765499380912643800911610014736652374267578125;s:5:\"bytes\";i:32898;s:11:\"size_before\";i:3115318;s:10:\"size_after\";i:3082420;s:4:\"time\";d:1.5500000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:32898;s:11:\"size_before\";i:341140;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(7099,1226,'_wp_page_template','template/template-onepage.php'),(7086,1224,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4354,910,'_wp_attached_file','2020/10/Lantern-Yard-signs-All-8-17-08.jpg'),(4355,910,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2201;s:6:\"height\";i:1700;s:4:\"file\";s:42:\"2020/10/Lantern-Yard-signs-All-8-17-08.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Lantern-Yard-signs-All-8-17-08-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-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:\"Lantern-Yard-signs-All-8-17-08-768x593.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:593;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"Lantern-Yard-signs-All-8-17-08-1536x1186.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:44:\"Lantern-Yard-signs-All-8-17-08-2048x1582.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1582;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:43:\"Lantern-Yard-signs-All-8-17-08-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-777x600.jpg\";s:5:\"width\";i:777;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:41:\"Lantern-Yard-signs-All-8-17-08-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-496x383.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:383;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:{}}}'),(7077,1223,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7055,1221,'_wp_page_template','template/template-onepage.php'),(7056,1221,'_elementor_edit_mode','builder'),(7057,1221,'_elementor_template_type','wp-page'),(7058,1221,'_elementor_version','3.0.11'),(7059,1221,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7060,1221,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"10\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7063,1222,'_wp_page_template','template/template-onepage.php'),(7064,1222,'_elementor_edit_mode','builder'),(7065,1222,'_elementor_template_type','wp-page'),(7066,1222,'_elementor_version','3.0.11'),(7067,1222,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7068,1222,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"10\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7017,1217,'fave_agency_order','ASC'),(7018,1217,'fave_agent_orderby','None'),(7019,1217,'fave_agent_order','ASC'),(7020,1217,'fave_header_type','none'),(7021,1217,'fave_page_header_image_opacity','0.35'),(7022,1217,'fave_page_header_search','0'),(7023,1217,'fave_header_full_screen','0'),(7024,1217,'fave_adv_search_enable','global'),(7025,1217,'fave_adv_search','hide'),(7026,1217,'fave_adv_search_pos','under_menu'),(7027,1217,'fave_page_title','show'),(7028,1217,'fave_page_breadcrumb','show'),(7029,1217,'fave_page_sidebar','right_sidebar'),(7030,1217,'fave_page_background','yes'),(7031,1217,'fave_main_menu_trans','no'),(7032,1217,'_genesis_noindex','1'),(7033,1217,'_genesis_nofollow','1'),(7034,1217,'_genesis_noarchive','1'),(7035,1217,'exclude_local_search','1'),(7036,1217,'slide_template','default'),(7037,1217,'rs_page_bg_color','#ffffff'),(7038,1217,'passster_activate_protection','true'),(7039,1217,'passster_protection_type','password'),(7040,1217,'passster_password','lantern704'),(7041,1217,'_wpb_vc_js_status','false'),(7042,1217,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(7043,1217,'_elementor_edit_mode','builder'),(7044,1217,'_elementor_template_type','wp-page'),(7045,1217,'_elementor_version','3.1.1'),(7046,1217,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7047,1217,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"30\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7048,1220,'_wp_page_template','template/template-onepage.php'),(7049,1220,'_elementor_edit_mode','builder'),(7050,1220,'_elementor_template_type','wp-page'),(7051,1220,'_elementor_version','3.0.11'),(7052,1220,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7053,1220,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"10\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9926,1731,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"10\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9921,1731,'_wp_page_template','template/template-onepage.php'),(9922,1731,'_elementor_edit_mode','builder'),(9923,1731,'_elementor_template_type','wp-page'),(9924,1731,'_elementor_version','3.0.11'),(9925,1731,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7004,1218,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7015,1217,'fave_properties_min_baths','0'),(7014,1217,'fave_properties_min_beds','0'),(7008,1217,'_wp_page_template','template/template-onepage.php'),(7009,1217,'_edit_last','1'),(7010,1217,'fave_listing_page_content_area','0'),(7011,1217,'fave_prop_no','9'),(7012,1217,'fave_properties_sort','d_date'),(7013,1217,'fave_listings_tabs','disable'),(7016,1217,'fave_agency_orderby','None'),(4390,868,'_wp_desired_post_slug','erp-subscription'),(4393,880,'_wp_desired_post_slug','profile'),(4396,916,'_wp_page_template','template/template-onepage.php'),(4397,916,'_edit_last','1'),(4398,916,'fave_listing_page_content_area','0'),(4399,916,'fave_prop_no','9'),(4400,916,'fave_properties_sort','d_date'),(4401,916,'fave_listings_tabs','disable'),(4402,916,'fave_properties_min_beds','0'),(4403,916,'fave_properties_min_baths','0'),(4404,916,'fave_agency_orderby','None'),(4405,916,'fave_agency_order','ASC'),(4406,916,'fave_agent_orderby','None'),(4407,916,'fave_agent_order','ASC'),(4408,916,'fave_header_type','none'),(4409,916,'fave_page_header_image_opacity','0.35'),(4410,916,'fave_page_header_search','0'),(4411,916,'fave_header_full_screen','0'),(4412,916,'fave_adv_search_enable','global'),(4413,916,'fave_adv_search','hide'),(4414,916,'fave_adv_search_pos','under_menu'),(4415,916,'fave_page_title','show'),(4416,916,'fave_page_breadcrumb','show'),(4417,916,'fave_page_sidebar','right_sidebar'),(4418,916,'fave_page_background','yes'),(4419,916,'fave_main_menu_trans','no'),(4420,916,'_genesis_noindex','1'),(4421,916,'_genesis_nofollow','1'),(4422,916,'_genesis_noarchive','1'),(4423,916,'exclude_local_search','1'),(4424,916,'slide_template','default'),(4425,916,'rs_page_bg_color','#ffffff'),(4426,916,'_wpb_vc_js_status','false'),(4427,916,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(6971,1214,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7072,1223,'_wp_page_template','template/template-onepage.php'),(6999,1218,'_wp_page_template','template/template-onepage.php'),(7000,1218,'_elementor_edit_mode','builder'),(7001,1218,'_elementor_template_type','wp-page'),(7002,1218,'_elementor_version','3.0.11'),(7003,1218,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"d2c6c76\"}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6975,1196,'_edit_last','1'),(6976,1196,'_wp_page_template','default'),(6984,1194,'_wp_page_template','default'),(6983,1194,'_edit_last','1'),(6979,1196,'slide_template',''),(6980,1196,'rs_page_bg_color',''),(6981,1196,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6982,1196,'_edit_lock','1603042484:1'),(6997,1217,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6987,1194,'slide_template',''),(6988,1194,'rs_page_bg_color',''),(6989,1194,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6990,1194,'_edit_lock','1603042469:1'),(6993,1194,'_wp_old_date','2020-10-18'),(6996,1196,'_wp_old_date','2020-10-18'),(6998,1217,'_edit_lock','1618360420:1'),(6957,1213,'_wp_page_template','template/template-onepage.php'),(6958,1213,'_elementor_edit_mode','builder'),(6959,1213,'_elementor_template_type','wp-page'),(6960,1213,'_elementor_version','3.0.11'),(10988,1911,'_wp_page_template','template/template-onepage.php'),(10989,1911,'_elementor_edit_mode','builder'),(10990,1911,'_elementor_template_type','wp-page'),(10991,1911,'_elementor_version','3.0.11'),(10992,1911,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10993,1911,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6939,1211,'_wp_page_template','template/template-onepage.php'),(8876,1501,'_wp_attached_file','2021/01/IMG_7791-Small.jpg'),(8877,1501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:955;s:4:\"file\";s:26:\"2021/01/IMG_7791-Small.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.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:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:917;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:503;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1572658616\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6948,1212,'_wp_page_template','template/template-onepage.php'),(6949,1212,'_elementor_edit_mode','builder'),(6950,1212,'_elementor_template_type','wp-page'),(6951,1212,'_elementor_version','3.0.11'),(6952,1212,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6953,1212,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6961,1213,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6962,1213,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6912,1208,'_wp_page_template','template/template-onepage.php'),(6913,1208,'_elementor_edit_mode','builder'),(6914,1208,'_elementor_template_type','wp-page'),(6915,1208,'_elementor_version','3.0.11'),(6916,1208,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6917,1208,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6924,1209,'_elementor_version','3.0.11'),(6925,1209,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6926,1209,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6910,1206,'_tablepress_table_options','{\"last_editor\":1,\"table_head\":true,\"table_foot\":false,\"alternating_row_colors\":true,\"row_hover\":true,\"print_name\":false,\"print_name_position\":\"above\",\"print_description\":false,\"print_description_position\":\"below\",\"extra_css_classes\":\"\",\"use_datatables\":true,\"datatables_sort\":true,\"datatables_filter\":true,\"datatables_paginate\":true,\"datatables_lengthchange\":true,\"datatables_paginate_entries\":10,\"datatables_info\":true,\"datatables_scrollx\":false,\"datatables_custom_commands\":\"\"}'),(6911,1206,'_tablepress_table_visibility','{\"rows\":[1,1,1,1,1,1],\"columns\":[1,1,1,1,1,1,1,1,1,1]}'),(6921,1209,'_wp_page_template','template/template-onepage.php'),(6922,1209,'_elementor_edit_mode','builder'),(6923,1209,'_elementor_template_type','wp-page'),(6930,1210,'_wp_page_template','template/template-onepage.php'),(6931,1210,'_elementor_edit_mode','builder'),(6932,1210,'_elementor_template_type','wp-page'),(6933,1210,'_elementor_version','3.0.11'),(6934,1210,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6935,1210,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(4460,916,'_elementor_edit_mode','builder'),(4461,916,'_elementor_template_type','wp-page'),(4462,916,'_elementor_version','3.0.9'),(4463,916,'_elementor_data','[{\"id\":\"3023e99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36f31bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"69d5c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"2a88dc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Agent Registration\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b973675\",\"elType\":\"widget\",\"settings\":{\"title\":\"Progress\",\"percent\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"inner_text\":\"Become a Lantern Agent\",\"bar_color\":\"#6EC1E4\",\"bar_height\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bar_inner_typography_typography\":\"custom\",\"bar_inner_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#085D81\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"80ab5f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome!<\\/p><p>We\'re so excited that you\'ve decided to join the Lantern Team. Please take a few moments to fill out the form below. The information entered here will allow us to begin processing your information to join our office. Your info will also be sent to our web developer for inclusion on our website. Please respond to all fields and reach out if you have any questions about the form.<\\/p><p>- The Lantern Team<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e7186a5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"bce8c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"846b119\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>New Agent Information Sheet<\\/strong><\\/h4><p style=\\\"text-align: center;\\\">Please complete the form in it\'s entirety.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e798e9\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"936\"}},\"elements\":[],\"widgetType\":\"wp-widget-weforms_widget\"},{\"id\":\"154d349\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"339b1ad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6940,1211,'_elementor_edit_mode','builder'),(6941,1211,'_elementor_template_type','wp-page'),(6942,1211,'_elementor_version','3.0.11'),(6943,1211,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6944,1211,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6661,1169,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5809,187,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.3887346505316546796393595286644995212554931640625;s:5:\"bytes\";i:229925;s:11:\"size_before\";i:2018881;s:10:\"size_after\";i:1788956;s:4:\"time\";d:0.56999999999999995115018691649311222136020660400390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:4002;s:11:\"size_before\";i:27811;s:10:\"size_after\";i:23809;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:9174;s:11:\"size_before\";i:71887;s:10:\"size_after\";i:62713;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3253;s:11:\"size_before\";i:22589;s:10:\"size_after\";i:19336;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:31374;s:11:\"size_before\";i:277522;s:10:\"size_after\";i:246148;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:10576;s:11:\"size_before\";i:90275;s:10:\"size_after\";i:79699;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:11329;s:11:\"size_before\";i:95500;s:10:\"size_after\";i:84171;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:16434;s:11:\"size_before\";i:149227;s:10:\"size_after\";i:132793;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:23003;s:11:\"size_before\";i:207012;s:10:\"size_after\";i:184009;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:37192;s:11:\"size_before\";i:348602;s:10:\"size_after\";i:311410;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:32375;s:11:\"size_before\";i:295425;s:10:\"size_after\";i:263050;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:13864;s:11:\"size_before\";i:114136;s:10:\"size_after\";i:100272;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2850;s:11:\"size_before\";i:20475;s:10:\"size_after\";i:17625;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:16487;s:11:\"size_before\";i:142146;s:10:\"size_after\";i:125659;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:18012;s:11:\"size_before\";i:156274;s:10:\"size_after\";i:138262;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(6670,1170,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6860,1191,'_wp_page_template','template/template-onepage.php'),(6861,1191,'_elementor_edit_mode','builder'),(6862,1191,'_elementor_template_type','wp-page'),(6863,1191,'_elementor_version','3.0.11'),(6864,1191,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6865,1191,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6890,1203,'_wp_page_template','template/template-onepage.php'),(6891,1203,'_elementor_edit_mode','builder'),(6892,1203,'_elementor_template_type','wp-page'),(6893,1203,'_elementor_version','3.0.11'),(6894,1203,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6895,1203,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6882,1201,'_wp_page_template','template/template-onepage.php'),(6883,1201,'_elementor_edit_mode','builder'),(6884,1201,'_elementor_template_type','wp-page'),(6885,1201,'_elementor_version','3.0.11'),(6886,1201,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6887,1201,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6876,1195,'_wp_attached_file','2020/10/2020-Educational-Calendar-1.xlsx'),(6877,1197,'_wp_attached_file','2020/10/2020-Educational-Calendar-2.xlsx'),(6899,1204,'_wp_page_template','template/template-onepage.php'),(6900,1204,'_elementor_edit_mode','builder'),(6880,1199,'_tablepress_table_options','{\"last_editor\":1,\"table_head\":true,\"table_foot\":false,\"alternating_row_colors\":true,\"row_hover\":true,\"print_name\":false,\"print_name_position\":\"above\",\"print_description\":false,\"print_description_position\":\"below\",\"extra_css_classes\":\"\",\"use_datatables\":true,\"datatables_sort\":true,\"datatables_filter\":true,\"datatables_paginate\":true,\"datatables_lengthchange\":true,\"datatables_paginate_entries\":150,\"datatables_info\":true,\"datatables_scrollx\":false,\"datatables_custom_commands\":\"\"}'),(6881,1199,'_tablepress_table_visibility','{\"rows\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"columns\":[1,1,1,1,1,1,1,1]}'),(6904,1204,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6834,1188,'_wp_page_template','template/template-onepage.php'),(6835,1188,'_elementor_edit_mode','builder'),(6825,1187,'_wp_page_template','template/template-onepage.php'),(6826,1187,'_elementor_edit_mode','builder'),(6827,1187,'_elementor_template_type','wp-page'),(6828,1187,'_elementor_version','3.0.11'),(6829,1187,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6830,1187,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a7a63bb\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[vg_sheet_editor editor_id=\\\"1186\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6817,1186,'vgse_post_type','post'),(6818,1186,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6819,1186,'_edit_lock','1603035952:1'),(6820,1186,'_edit_last','1'),(6821,1186,'_wp_page_template','default'),(6822,1186,'slide_template',''),(6823,1186,'rs_page_bg_color',''),(6824,1186,'vgse_columns','a:2:{s:7:\"enabled\";a:0:{}s:8:\"disabled\";a:27:{s:10:\"post_title\";s:5:\"Title\";s:9:\"post_name\";s:8:\"URL Slug\";s:12:\"post_content\";s:7:\"Content\";s:14:\"open_wp_editor\";s:9:\"WP Editor\";s:9:\"view_post\";s:4:\"View\";s:9:\"post_date\";s:4:\"Date\";s:13:\"post_modified\";s:13:\"Modified Date\";s:11:\"post_author\";s:6:\"Author\";s:12:\"post_excerpt\";s:7:\"Excerpt\";s:11:\"post_status\";s:6:\"Status\";s:14:\"comment_status\";s:8:\"Comments\";s:10:\"menu_order\";s:5:\"Order\";s:13:\"_thumbnail_id\";s:14:\"Featured Image\";s:8:\"category\";s:10:\"Categories\";s:8:\"post_tag\";s:4:\"Tags\";s:9:\"post_type\";s:9:\"Post type\";s:19:\"wpse_open_elementor\";s:9:\"Elementor\";s:22:\"_primary_term_category\";s:21:\"Primary Term Category\";s:8:\"_um_core\";s:7:\"Um Core\";s:17:\"_vc_post_settings\";s:16:\"Vc Post Settings\";s:21:\"_wp_desired_post_slug\";s:20:\"Wp Desired Post Slug\";s:12:\"_wp_old_date\";s:11:\"Wp Old Date\";s:17:\"_wp_page_template\";s:16:\"Wp Page Template\";s:30:\"_wp_trash_meta_comments_status\";s:29:\"Wp Trash Meta Comments Status\";s:24:\"passster_protection_type\";s:24:\"Passster Protection Type\";s:16:\"rs_page_bg_color\";s:16:\"Rs Page Bg Color\";s:14:\"slide_template\";s:14:\"Slide Template\";}}'),(8873,1499,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.116694275722437179609869417618028819561004638671875;s:5:\"bytes\";i:5865;s:11:\"size_before\";i:277083;s:10:\"size_after\";i:271218;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:5865;s:11:\"size_before\";i:51068;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45203;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45203;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45203;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45203;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45203;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(6836,1188,'_elementor_template_type','wp-page'),(6837,1188,'_elementor_version','3.0.11'),(6838,1188,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6839,1188,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6852,1190,'_wp_page_template','template/template-onepage.php'),(6843,1189,'_wp_page_template','template/template-onepage.php'),(6844,1189,'_elementor_edit_mode','builder'),(6845,1189,'_elementor_template_type','wp-page'),(6846,1189,'_elementor_version','3.0.11'),(6847,1189,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6848,1189,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3447cd0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-lpwtoc_widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6853,1190,'_elementor_edit_mode','builder'),(6854,1190,'_elementor_template_type','wp-page'),(6855,1190,'_elementor_version','3.0.11'),(6856,1190,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6857,1190,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6901,1204,'_elementor_template_type','wp-page'),(6902,1204,'_elementor_version','3.0.11'),(6903,1204,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6770,1180,'_wp_page_template','template/template-onepage.php'),(6771,1180,'_elementor_edit_mode','builder'),(6772,1180,'_elementor_template_type','wp-page'),(6773,1180,'_elementor_version','3.0.11'),(6774,1180,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6775,1180,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c5946bd\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Ultimate Posts\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No posts found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"5\",\"show_title\":\"on\",\"date_format\":\"F j, Y g:i a\",\"excerpt_length\":\"10\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"custom_fields\":\"Mobile\",\"cats\":[\"\"],\"types\":[\"houzez_agent\"],\"sticky\":\"show\",\"orderby\":\"menu_order\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6778,1181,'_wp_page_template','template/template-onepage.php'),(6779,1181,'_elementor_edit_mode','builder'),(6780,1181,'_elementor_template_type','wp-page'),(6781,1181,'_elementor_version','3.0.11'),(6782,1181,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6783,1181,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c5946bd\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No posts found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"150\",\"show_title\":\"on\",\"date_format\":\"F j, Y g:i a\",\"excerpt_length\":\"10\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"custom_fields\":\"Mobile\",\"cats\":[\"\"],\"types\":[\"houzez_agent\"],\"sticky\":\"show\",\"orderby\":\"menu_order\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6808,1185,'_wp_page_template','template/template-onepage.php'),(6799,1184,'_wp_page_template','template/template-onepage.php'),(6800,1184,'_elementor_edit_mode','builder'),(6801,1184,'_elementor_template_type','wp-page'),(6802,1184,'_elementor_version','3.0.11'),(6803,1184,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6804,1184,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5fd2da1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-ezw_tco\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6795,1183,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6796,1183,'_last_edited_by','1'),(6797,1183,'_last_edited_time','2020-10-18 15:30:31'),(6809,1185,'_elementor_edit_mode','builder'),(6810,1185,'_elementor_template_type','wp-page'),(6811,1185,'_elementor_version','3.0.11'),(6812,1185,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6813,1185,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6715,1175,'fave_properties_min_baths','0'),(6716,1175,'fave_agency_orderby','None'),(6717,1175,'fave_agency_order','ASC'),(6718,1175,'fave_agent_orderby','None'),(6719,1175,'fave_agent_order','ASC'),(6720,1175,'fave_header_type','none'),(6721,1175,'fave_page_header_image_opacity','0.35'),(6722,1175,'fave_page_header_search','0'),(6723,1175,'fave_header_full_screen','0'),(6724,1175,'fave_adv_search_enable','global'),(6725,1175,'fave_adv_search','hide'),(6726,1175,'fave_adv_search_pos','under_menu'),(6727,1175,'fave_page_title','show'),(6728,1175,'fave_page_breadcrumb','show'),(6729,1175,'fave_page_sidebar','right_sidebar'),(6730,1175,'fave_page_background','yes'),(6731,1175,'fave_main_menu_trans','no'),(6732,1175,'_genesis_noindex','1'),(6733,1175,'_genesis_nofollow','1'),(6734,1175,'_genesis_noarchive','1'),(6735,1175,'exclude_local_search','1'),(6736,1175,'slide_template','default'),(6737,1175,'rs_page_bg_color','#ffffff'),(6738,1175,'passster_activate_protection','true'),(6739,1175,'passster_protection_type','password'),(6740,1175,'passster_password','lantern704'),(6741,1175,'_wpb_vc_js_status','false'),(6742,1175,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(6743,1175,'_elementor_edit_mode','builder'),(6744,1175,'_elementor_template_type','wp-page'),(6745,1175,'_elementor_version','3.2.4'),(6752,1175,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6753,1175,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\" datatables_page_length=\\\"150\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6754,1178,'_wp_page_template','template/template-onepage.php'),(6755,1178,'_elementor_edit_mode','builder'),(6756,1178,'_elementor_template_type','wp-page'),(6757,1178,'_elementor_version','3.0.11'),(6758,1178,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6759,1178,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6787,1182,'_wp_page_template','template/template-onepage.php'),(6788,1182,'_elementor_edit_mode','builder'),(6789,1182,'_elementor_template_type','wp-page'),(6790,1182,'_elementor_version','3.0.11'),(6791,1182,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6792,1182,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6762,1179,'_wp_page_template','template/template-onepage.php'),(6763,1179,'_elementor_edit_mode','builder'),(6764,1179,'_elementor_template_type','wp-page'),(6765,1179,'_elementor_version','3.0.11'),(6766,1179,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6767,1179,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c5946bd\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Ultimate Posts\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No posts found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"5\",\"show_title\":\"on\",\"date_format\":\"F j, Y g:i a\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"custom_fields\":\"Mobile\",\"cats\":[\"\"],\"types\":[\"houzez_agent\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6702,1174,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6714,1175,'fave_properties_min_beds','0'),(6713,1175,'fave_listings_tabs','disable'),(7073,1223,'_elementor_edit_mode','builder'),(7074,1223,'_elementor_template_type','wp-page'),(7075,1223,'_elementor_version','3.0.11'),(7076,1223,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6966,1214,'_wp_page_template','template/template-onepage.php'),(6967,1214,'_elementor_edit_mode','builder'),(6968,1214,'_elementor_template_type','wp-page'),(6969,1214,'_elementor_version','3.0.11'),(6970,1214,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"d2c6c76\"}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6706,1175,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6707,1175,'_edit_lock','1603043823:1'),(6708,1175,'_wp_page_template','template/template-onepage.php'),(6709,1175,'_edit_last','1'),(6710,1175,'fave_listing_page_content_area','0'),(6711,1175,'fave_prop_no','9'),(6712,1175,'fave_properties_sort','d_date'),(6678,1171,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6686,1172,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8871,1499,'_wp_attached_file','2021/01/BRPhoto-18.jpeg'),(8872,1499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:23:\"2021/01/BRPhoto-18.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1522300090\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6406,1158,'mec_gcal_id','_8d9lcgrfdpr6asjk6dj38eb668o3edhgc4qm2dhl6pj64php6ph38d3670rj0phncpig'),(6407,1158,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6408,1158,'mec_g_recurrence_rule',''),(6409,1158,'mec_advanced_days',NULL),(6410,1158,'mec_imported_from_google','1'),(6411,1159,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6412,1159,'mec_location_id','17'),(6413,1159,'mec_dont_show_map','0'),(6414,1159,'mec_organizer_id','18'),(6415,1159,'mec_allday','0'),(6416,1159,'mec_hide_time','0'),(6417,1159,'mec_hide_end_time','0'),(6418,1159,'mec_start_date','2020-11-19'),(6419,1159,'mec_start_time_hour','3'),(6420,1159,'mec_start_time_minutes','00'),(6421,1159,'mec_start_time_ampm','PM'),(6422,1159,'mec_start_day_seconds','54000'),(6423,1159,'mec_end_date','2020-11-19'),(6424,1159,'mec_end_time_hour','4'),(6425,1159,'mec_end_time_minutes','30'),(6426,1159,'mec_end_time_ampm','PM'),(6427,1159,'mec_end_day_seconds','59400'),(6428,1159,'mec_repeat_status','0'),(6429,1159,'mec_repeat_type',''),(6430,1159,'mec_repeat_interval',NULL),(6431,1159,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6432,1159,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-19\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-19\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6433,1159,'mec_source','google-calendar'),(6434,1159,'mec_gcal_ical_uid','CSVConvert61650a2f48baea1c926009ab15c88934'),(6435,1159,'mec_gcal_id','_8d9lcgrfdpr6asjk6oojcd9gc4p6cd1oc9gmao9hccsj4dhg60sm2ohh6lhjge1p6cq0'),(6436,1159,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6437,1159,'mec_g_recurrence_rule',''),(6438,1159,'mec_advanced_days',NULL),(6439,1160,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6440,1160,'mec_location_id','17'),(6441,1160,'mec_dont_show_map','0'),(6442,1160,'mec_organizer_id','18'),(6443,1160,'mec_allday','0'),(6444,1160,'mec_hide_time','0'),(6445,1160,'mec_hide_end_time','0'),(6446,1160,'mec_start_date','2020-10-27'),(6447,1160,'mec_start_time_hour','2'),(6448,1160,'mec_start_time_minutes','00'),(6449,1160,'mec_start_time_ampm','PM'),(6450,1160,'mec_start_day_seconds','50400'),(6451,1160,'mec_end_date','2020-10-27'),(6452,1160,'mec_end_time_hour','4'),(6453,1160,'mec_end_time_minutes','00'),(6454,1160,'mec_end_time_ampm','PM'),(6455,1160,'mec_end_day_seconds','57600'),(6456,1160,'mec_repeat_status','0'),(6457,1160,'mec_repeat_type',''),(6458,1160,'mec_repeat_interval',NULL),(6459,1160,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6460,1160,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-27\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-27\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6461,1160,'mec_source','google-calendar'),(6462,1160,'mec_gcal_ical_uid','CSVConvert7853c03bc7eae8f4bb5e3bec26bee6af'),(6463,1160,'mec_gcal_id','_8d9lcgrfdpr6asjk6ss3acr360pm4opnclgmae366hh64db56dh6aopi6ph6ap9mc5j0'),(6464,1160,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6465,1160,'mec_g_recurrence_rule',''),(6466,1160,'mec_advanced_days',NULL),(6467,1161,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6468,1161,'mec_location_id','17'),(6469,1161,'mec_dont_show_map','0'),(6470,1161,'mec_organizer_id','18'),(6471,1161,'mec_allday','0'),(6472,1161,'mec_hide_time','0'),(6473,1161,'mec_hide_end_time','0'),(6474,1161,'mec_start_date','2020-11-05'),(6475,1161,'mec_start_time_hour','9'),(6476,1161,'mec_start_time_minutes','30'),(6477,1161,'mec_start_time_ampm','PM'),(6478,1161,'mec_start_day_seconds','77400'),(6479,1161,'mec_end_date','2020-11-05'),(6480,1161,'mec_end_time_hour','11'),(6481,1161,'mec_end_time_minutes','00'),(6482,1161,'mec_end_time_ampm','PM'),(6483,1161,'mec_end_day_seconds','82800'),(6484,1161,'mec_repeat_status','0'),(6485,1161,'mec_repeat_type',''),(6486,1161,'mec_repeat_interval',NULL),(6487,1161,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6488,1161,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-05\";s:4:\"hour\";s:1:\"9\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-05\";s:4:\"hour\";s:2:\"11\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6511,1162,'mec_end_time_ampm','PM'),(6510,1162,'mec_end_time_minutes','00'),(6509,1162,'mec_end_time_hour','4'),(6489,1161,'mec_source','google-calendar'),(6490,1161,'mec_gcal_ical_uid','CSVConvert89bbd1d125ed6ce31f8041a5ab7e19e1'),(6491,1161,'mec_gcal_id','_8d9lcgrfdpr6asjk70sm4oj465i32chlcli3cor56comce1g6gom2db1c8rmac9pckog'),(6492,1161,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6493,1161,'mec_g_recurrence_rule',''),(6494,1161,'mec_advanced_days',NULL),(6495,1161,'mec_imported_from_google','1'),(6496,1162,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6497,1162,'mec_location_id','17'),(6498,1162,'mec_dont_show_map','0'),(6499,1162,'mec_organizer_id','18'),(6500,1162,'mec_allday','0'),(6501,1162,'mec_hide_time','0'),(6502,1162,'mec_hide_end_time','0'),(6503,1162,'mec_start_date','2020-10-20'),(6504,1162,'mec_start_time_hour','2'),(6505,1162,'mec_start_time_minutes','00'),(6506,1162,'mec_start_time_ampm','PM'),(6507,1162,'mec_start_day_seconds','50400'),(6508,1162,'mec_end_date','2020-10-20'),(6245,1153,'mec_hide_end_time','0'),(6246,1153,'mec_start_date','2020-09-22'),(6247,1153,'mec_start_time_hour','2'),(6248,1153,'mec_start_time_minutes','00'),(6249,1153,'mec_start_time_ampm','PM'),(6250,1153,'mec_start_day_seconds','50400'),(6251,1153,'mec_end_date','2020-09-22'),(6252,1153,'mec_end_time_hour','3'),(6253,1153,'mec_end_time_minutes','30'),(6254,1153,'mec_end_time_ampm','PM'),(4574,936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4597,955,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4595,953,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4594,936,'_weforms_version','1.6.6'),(4583,936,'wpuf_form_settings','a:49:{s:11:\"redirect_to\";s:4:\"page\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:7:\"page_id\";s:3:\"964\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:11:\"Submit Form\";s:18:\"submit_button_cond\";O:8:\"stdClass\":3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:39:\"Form submission hasn\'t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:3:\"100\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";s:13:\"use_theme_css\";s:10:\"wpuf-style\";s:9:\"quiz_form\";s:2:\"no\";s:22:\"shuffle_question_order\";s:2:\"no\";s:13:\"release_grade\";s:16:\"after_submission\";s:18:\"respondent_can_see\";a:3:{i:0;s:16:\"missed_questions\";i:1;s:15:\"correct_answers\";i:2;s:12:\"point_values\";}s:12:\"total_points\";i:0;s:16:\"enable_multistep\";b:0;s:26:\"multistep_progressbar_type\";s:11:\"progressive\";s:21:\"humanpresence_enabled\";b:0;s:21:\"payment_paypal_images\";s:68:\"https://www.paypalobjects.com/webstatic/mktg/logo/AM_mc_vs_dc_ae.jpg\";s:20:\"payment_paypal_label\";s:6:\"PayPal\";s:20:\"payment_stripe_label\";s:11:\"Credit Card\";s:21:\"payment_stripe_images\";a:4:{i:0;s:4:\"visa\";i:1;s:10:\"mastercard\";i:2;s:4:\"amex\";i:3;s:8:\"discover\";}s:25:\"payment_stripe_deactivate\";s:0:\"\";s:11:\"stripe_mode\";s:4:\"live\";s:14:\"stripe_page_id\";s:0:\"\";s:20:\"stripe_override_keys\";s:0:\"\";s:12:\"stripe_email\";s:0:\"\";s:10:\"stripe_key\";s:0:\"\";s:17:\"stripe_secret_key\";s:0:\"\";s:15:\"stripe_key_test\";s:0:\"\";s:22:\"stripe_secret_key_test\";s:0:\"\";s:20:\"stripe_prefill_email\";s:0:\"\";s:23:\"stripe_user_email_field\";s:0:\"\";s:25:\"payment_paypal_deactivate\";s:0:\"\";s:11:\"paypal_mode\";s:4:\"live\";s:11:\"paypal_type\";s:5:\"_cart\";s:15:\"paypal_override\";s:0:\"\";s:12:\"paypal_email\";s:0:\"\";s:14:\"paypal_page_id\";s:0:\"\";s:20:\"paypal_prefill_email\";s:0:\"\";s:23:\"paypal_user_email_field\";s:0:\"\";}'),(4584,936,'notifications','a:1:{i:0;a:14:{s:6:\"active\";s:4:\"true\";s:4:\"type\";s:5:\"email\";s:5:\"smsTo\";s:0:\"\";s:7:\"smsText\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:4:\"name\";s:28:\"Agent and Admin Notification\";s:7:\"subject\";s:19:\"Welcome to Lantern!\";s:2:\"to\";s:12:\"{user_email}\";s:7:\"replyTo\";s:62:\"ch2realty@gmail.com, paulasevert@yahoo.com, deana327@gmail.com\";s:7:\"message\";s:5408:\"<p style=\"line-height: 1.2; font-family: Roboto; color: #7a7a7a; text-align: left;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000; font-size: 16px;\">Hi {name-first:format},</span></p>\n<h2 style=\"line-height: 1.2; font-family: Roboto; color: #7a7a7a; text-align: left;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000;\">Congratulations and welcome to the Lantern team!</span></h2>\n<div style=\"color: #7a7a7a; font-family: Roboto; font-size: 16px;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000;\">&nbsp;</span></div>\n<p style=\"color: #7a7a7a; font-family: Roboto; font-size: 16px;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000; font-size: 16px;\">Your information has been submitted for registration. We will be in touch if any further information is needed. Please allow 48-72 hours for your new agent profile to show on the Lantern website.</span></p>\n<p style=\"color: #7a7a7a; font-family: Roboto; font-size: 16px;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000; font-size: 16px;\">As next steps, please visit our <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\">Team Portal</a> to review all the materials you&rsquo;ll need to start your successful career with Lantern.</span></p>\n<p><span style=\"font-family: arial, helvetica, sans-serif; color: #000000; font-size: 16px;\">Here\'s the information you submitted:</span></p>\n<p><span style=\"font-family: arial, helvetica, sans-serif; color: #000000; font-size: 16px;\">{all_fields}</span></p>\n<p><span style=\"font-size: 10px;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000;\">Reference Info:</span></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 431px; height: 343px;\" border=\"0\" width=\"198\" cellspacing=\"0\" cellpadding=\"0\"><colgroup> <col style=\"width: 50pt;\" span=\"3\" width=\"66\" /> </colgroup>\n<tbody>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt; width: 50pt;\" align=\"right\" width=\"66\" height=\"19\"><span style=\"font-size: 10px;\">1</span></td>\n<td style=\"width: 50pt;\" width=\"66\"><span style=\"font-size: 10px;\">Top Box</span></td>\n<td style=\"width: 50pt;\" width=\"66\"><span style=\"font-size: 10px;\">{name-full:format}</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">2</span></td>\n<td><span style=\"font-size: 10px;\">Big Box</span></td>\n<td><span style=\"font-size: 10px;\">{field:website_bio}</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">3</span></td>\n<td><span style=\"font-size: 10px;\">Email</span></td>\n<td><span style=\"font-size: 10px;\">{user_email}</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">4</span></td>\n<td><span style=\"font-size: 10px;\">Position</span></td>\n<td><span style=\"font-size: 10px;\">Licensed Agent</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">5</span></td>\n<td><span style=\"font-size: 10px;\">Company Name</span></td>\n<td><span style=\"font-size: 10px;\">Lantern Realty and Development</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">6</span></td>\n<td><span style=\"font-size: 10px;\">Mobile</span></td>\n<td>&nbsp;</td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">7</span></td>\n<td><span style=\"font-size: 10px;\">Website</span></td>\n<td><span style=\"font-size: 10px;\">https://lantern-realty.com/</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">8</span></td>\n<td><span style=\"font-size: 10px;\">Facebook</span></td>\n<td><span style=\"font-size: 10px;\">https://www.facebook.com/lanternrealty</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">9</span></td>\n<td colspan=\"2\"><span style=\"font-size: 10px;\">Company Logo</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">10</span></td>\n<td><span style=\"font-size: 10px;\">Categories</span></td>\n<td><span style=\"font-size: 10px;\">Front Page, Licensed Agent, {field:home_office}</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">11</span></td>\n<td><span style=\"font-size: 10px;\">Featured Image</span></td>\n<td><span style=\"font-size: 10px;\">Headshot</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" height=\"19\">&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">12</span></td>\n<td><span style=\"font-size: 10px;\">Order</span></td>\n<td>&nbsp;</td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">13</span></td>\n<td><span style=\"font-size: 10px;\">Agencies</span></td>\n<td><span style=\"font-size: 10px;\">Lantern Realty and Development - {field:home_office}</span></td>\n</tr>\n</tbody>\n</table>\";s:8:\"fromName\";s:30:\"Lantern Realty and Development\";s:11:\"fromAddress\";s:26:\"contant@lantern-realty.com\";s:2:\"cc\";s:62:\"ch2realty@gmail.com, paulasevert@yahoo.com, deana327@gmail.com\";s:3:\"bcc\";s:13:\"{admin_email}\";s:12:\"weforms_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}}}'),(4585,936,'integrations','a:1:{s:5:\"slack\";O:8:\"stdClass\":2:{s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";}}'),(4587,946,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4590,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4596,954,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4592,951,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4593,952,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4606,936,'_weforms_view_count','259'),(6644,1167,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6645,1167,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;s:5:\"align\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:25:\"houzez_elementor_icon_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:10:\"icon_boxes\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_iconbox_style\";a:4:{s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;s:15:\"title_spacing_a\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:14:\"eael-post-grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:33:\"eael_section_post_timeline_layout\";a:2:{s:22:\"eael_post_grid_columns\";i:1;s:19:\"eael_excerpt_length\";i:1;}s:23:\"section_post_grid_links\";a:3:{s:19:\"image_link_nofollow\";i:1;s:19:\"title_link_nofollow\";i:1;s:23:\"read_more_link_nofollow\";i:1;}}}}s:19:\"eael-event-calendar\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:18:\"eael_event_section\";a:2:{s:24:\"eael_event_calendar_type\";i:1;s:16:\"eael_event_items\";i:1;}s:26:\"eael_event_google_calendar\";a:3:{s:25:\"eael_event_google_api_key\";i:1;s:22:\"eael_event_calendar_id\";i:1;s:29:\"eael_google_calendar_end_date\";i:1;}}}}}'),(6632,1166,'mec_source','google-calendar'),(6633,1166,'mec_gcal_ical_uid','CSVConvertfee759cc2b997a19e9c518d4bbd84803'),(6634,1166,'mec_gcal_id','_8d9lcgrfdpr6asjkcpimadpl75hm6cj274sjeo9h75ijiopl64s68d32c9i3gd1o60pg'),(6635,1166,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6636,1166,'mec_g_recurrence_rule',''),(6637,1166,'mec_advanced_days',NULL),(6638,1166,'mec_imported_from_google','1'),(6639,1167,'_wp_page_template','template/template-onepage.php'),(6640,1167,'_elementor_edit_mode','builder'),(6641,1167,'_elementor_template_type','wp-page'),(6642,1167,'_elementor_version','3.0.11'),(6643,1167,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a626a\",\"elType\":\"widget\",\"settings\":{\"eael_post_grid_columns\":\"eael-col-1\",\"show_load_more_text\":\"Load More\",\"eael_excerpt_length\":100,\"excerpt_expanison_indicator\":\"...\",\"eael_read_more_text\":\"Read More\",\"read_more_button_text\":\"Read More\",\"image_link_nofollow\":\"true\",\"title_link_nofollow\":\"true\",\"read_more_link_nofollow\":\"true\"},\"elements\":[],\"widgetType\":\"eael-post-grid\"},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5858,514,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1411756;s:10:\"size_after\";i:1411756;s:4:\"time\";d:1.75;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30121;s:10:\"size_after\";i:30121;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:98768;s:10:\"size_after\";i:98768;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28306;s:10:\"size_after\";i:28306;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:127192;s:10:\"size_after\";i:127192;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:135629;s:10:\"size_after\";i:135629;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:222299;s:10:\"size_after\";i:222299;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:198179;s:10:\"size_after\";i:198179;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:118911;s:10:\"size_after\";i:118911;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25170;s:10:\"size_after\";i:25170;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:131867;s:10:\"size_after\";i:131867;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:295314;s:10:\"size_after\";i:295314;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}}}'),(4655,353,'_wp_desired_post_slug','wpforms-preview'),(4656,964,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4657,964,'_edit_lock','1602512079:1'),(4658,964,'_wp_page_template','template/template-onepage.php'),(4659,964,'_edit_last','1'),(4660,964,'fave_listing_page_content_area','0'),(4661,964,'fave_prop_no','9'),(4662,964,'fave_properties_sort','d_date'),(4663,964,'fave_listings_tabs','disable'),(4664,964,'fave_properties_min_beds','0'),(4665,964,'fave_properties_min_baths','0'),(4666,964,'fave_agency_orderby','None'),(4667,964,'fave_agency_order','ASC'),(4668,964,'fave_agent_orderby','None'),(4669,964,'fave_agent_order','ASC'),(4670,964,'fave_header_type','none'),(4671,964,'fave_page_header_image_opacity','0.35'),(4672,964,'fave_page_header_search','0'),(4673,964,'fave_header_full_screen','0'),(4674,964,'fave_adv_search_enable','global'),(4675,964,'fave_adv_search','hide'),(4676,964,'fave_adv_search_pos','under_menu'),(4677,964,'fave_page_title','show'),(4678,964,'fave_page_breadcrumb','show'),(4679,964,'fave_page_sidebar','right_sidebar'),(4680,964,'fave_page_background','yes'),(4681,964,'fave_main_menu_trans','no'),(4682,964,'slide_template',''),(4683,964,'rs_page_bg_color',''),(4684,964,'_wpb_vc_js_status','false'),(4685,964,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4686,964,'_elementor_edit_mode','builder'),(4687,964,'_elementor_template_type','wp-page'),(4688,964,'_elementor_version','3.0.9'),(5859,515,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.9861286254728867106678080745041370391845703125;s:5:\"bytes\";i:856;s:11:\"size_before\";i:3172;s:10:\"size_after\";i:2316;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:856;s:11:\"size_before\";i:3172;s:10:\"size_after\";i:2316;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5860,529,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5861,529,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.92063944726600510648495401255786418914794921875;s:5:\"bytes\";i:263579;s:11:\"size_before\";i:3327749;s:10:\"size_after\";i:3064170;s:4:\"time\";d:1.340000000000000301980662698042578995227813720703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:2114;s:11:\"size_before\";i:21023;s:10:\"size_after\";i:18909;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5457;s:11:\"size_before\";i:56534;s:10:\"size_after\";i:51077;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:36302;s:11:\"size_before\";i:510522;s:10:\"size_after\";i:474220;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:36572;s:11:\"size_before\";i:510662;s:10:\"size_after\";i:474090;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1878;s:11:\"size_before\";i:17551;s:10:\"size_after\";i:15673;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:32276;s:11:\"size_before\";i:404279;s:10:\"size_after\";i:372003;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5990;s:11:\"size_before\";i:69247;s:10:\"size_after\";i:63257;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6541;s:11:\"size_before\";i:73767;s:10:\"size_after\";i:67226;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:10226;s:11:\"size_before\";i:125466;s:10:\"size_after\";i:115240;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:16539;s:11:\"size_before\";i:214903;s:10:\"size_after\";i:198364;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:39476;s:11:\"size_before\";i:498428;s:10:\"size_after\";i:458952;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:38498;s:11:\"size_before\";i:474585;s:10:\"size_after\";i:436087;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:8016;s:11:\"size_before\";i:88388;s:10:\"size_after\";i:80372;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1468;s:11:\"size_before\";i:15118;s:10:\"size_after\";i:13650;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9;s:5:\"bytes\";i:10902;s:11:\"size_before\";i:121111;s:10:\"size_after\";i:110209;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11324;s:11:\"size_before\";i:126165;s:10:\"size_after\";i:114841;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(4701,964,'_elementor_data','[{\"id\":\"8995e8a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"16eb73b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8800882\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2f9025\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54e154d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b013c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Agent Form Submitted!\",\"size\":\"xxl\",\"align\":\"center\",\"header_size\":\"h1\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"719cdd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Progress\",\"percent\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"inner_text\":\"Become a Lantern Agent\",\"bar_color\":\"#6EC1E4\",\"bar_height\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"bar_inner_typography_typography\":\"custom\",\"bar_inner_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#085D81\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"73678f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"0b56402\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74ccb86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Congratulations and welcome to the team!<\\/h2><div>\\u00a0<\\/div><p>Your information has been submitted for registration. We will be in touch if any further information is needed. Please allow 48-72 hours for your new agent profile to show on the Lantern website.<\\/p><p>As next steps, please visit our Team Portal to review all the materials you\'ll need to start your successful career with Lantern.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aa30678\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Team Portal\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xl\",\"selected_icon\":{\"value\":\"fas fa-chalkboard-teacher\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f388190\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f46dd9e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3a4fe02\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4904850\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6593,1165,'mec_start_day_seconds','50400'),(6594,1165,'mec_end_date','2020-10-29'),(6595,1165,'mec_end_time_hour','3'),(6596,1165,'mec_end_time_minutes','30'),(6597,1165,'mec_end_time_ampm','PM'),(6598,1165,'mec_end_day_seconds','55800'),(6599,1165,'mec_repeat_status','0'),(6600,1165,'mec_repeat_type',''),(6601,1165,'mec_repeat_interval',NULL),(6602,1165,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6603,1165,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-29\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-29\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6604,1165,'mec_source','google-calendar'),(6605,1165,'mec_gcal_ical_uid','CSVConvertfd971c756530269a98351062491798f1'),(6606,1165,'mec_gcal_id','_8d9lcgrfdpr6asjkcpi3idphccrjadhl6co34dhpc4sjgcpl64o3cchk74ojee9ocoog'),(6607,1165,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6608,1165,'mec_g_recurrence_rule',''),(6609,1165,'mec_advanced_days',NULL),(6610,1166,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6611,1166,'mec_location_id','17'),(6612,1166,'mec_dont_show_map','0'),(6613,1166,'mec_organizer_id','18'),(6614,1166,'mec_allday','0'),(6615,1166,'mec_hide_time','0'),(6616,1166,'mec_hide_end_time','0'),(6617,1166,'mec_start_date','2020-10-13'),(6618,1166,'mec_start_time_hour','8'),(6619,1166,'mec_start_time_minutes','30'),(6620,1166,'mec_start_time_ampm','PM'),(6621,1166,'mec_start_day_seconds','73800'),(6622,1166,'mec_end_date','2020-10-13'),(6623,1166,'mec_end_time_hour','10'),(6624,1166,'mec_end_time_minutes','00'),(6625,1166,'mec_end_time_ampm','PM'),(6626,1166,'mec_end_day_seconds','79200'),(6627,1166,'mec_repeat_status','0'),(6628,1166,'mec_repeat_type',''),(6629,1166,'mec_repeat_interval',NULL),(6630,1166,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6631,1166,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-13\";s:4:\"hour\";s:1:\"8\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-13\";s:4:\"hour\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6592,1165,'mec_start_time_ampm','PM'),(6591,1165,'mec_start_time_minutes','00'),(6590,1165,'mec_start_time_hour','2'),(6589,1165,'mec_start_date','2020-10-29'),(6573,1164,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6574,1164,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-09-29\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-09-29\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6575,1164,'mec_source','google-calendar'),(6576,1164,'mec_gcal_ical_uid','CSVConvertef725a9a5f09dad2469a3b75c525a764'),(6577,1164,'mec_gcal_id','_8d9lcgrfdpr6asjkclj3echlc4sm2db660sm8ob468q3ceb16dh3edb36kp3ao9n6oq0'),(6578,1164,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6579,1164,'mec_g_recurrence_rule',''),(6580,1164,'mec_advanced_days',NULL),(6581,1164,'mec_imported_from_google','1'),(6582,1165,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6583,1165,'mec_location_id','17'),(6584,1165,'mec_dont_show_map','0'),(6585,1165,'mec_organizer_id','18'),(6586,1165,'mec_allday','0'),(6587,1165,'mec_hide_time','0'),(6588,1165,'mec_hide_end_time','0'),(6531,1163,'mec_hide_end_time','0'),(6532,1163,'mec_start_date','2020-11-12'),(6533,1163,'mec_start_time_hour','3'),(6534,1163,'mec_start_time_minutes','00'),(6535,1163,'mec_start_time_ampm','PM'),(6536,1163,'mec_start_day_seconds','54000'),(6537,1163,'mec_end_date','2020-11-12'),(6538,1163,'mec_end_time_hour','4'),(6539,1163,'mec_end_time_minutes','30'),(6540,1163,'mec_end_time_ampm','PM'),(6541,1163,'mec_end_day_seconds','59400'),(6542,1163,'mec_repeat_status','0'),(6543,1163,'mec_repeat_type',''),(6544,1163,'mec_repeat_interval',NULL),(6545,1163,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6546,1163,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-12\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-12\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6547,1163,'mec_source','google-calendar'),(6548,1163,'mec_gcal_ical_uid','CSVConvertecc54fb5484ac7c07cea14adb3370035'),(6549,1163,'mec_gcal_id','_8d9lcgrfdpr6asjkclhm6d9kcph3ad1o6hgm6dr360rm6pb164q62p326cpjec1g6cqg'),(6571,1164,'mec_repeat_type',''),(6572,1164,'mec_repeat_interval',NULL),(6570,1164,'mec_repeat_status','0'),(6569,1164,'mec_end_day_seconds','57600'),(6568,1164,'mec_end_time_ampm','PM'),(6550,1163,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6551,1163,'mec_g_recurrence_rule',''),(6552,1163,'mec_advanced_days',NULL),(6553,1164,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6554,1164,'mec_location_id','17'),(6555,1164,'mec_dont_show_map','0'),(6556,1164,'mec_organizer_id','18'),(6557,1164,'mec_allday','0'),(6558,1164,'mec_hide_time','0'),(6559,1164,'mec_hide_end_time','0'),(6560,1164,'mec_start_date','2020-09-29'),(6561,1164,'mec_start_time_hour','2'),(6562,1164,'mec_start_time_minutes','00'),(6563,1164,'mec_start_time_ampm','PM'),(6564,1164,'mec_start_day_seconds','50400'),(6565,1164,'mec_end_date','2020-09-29'),(6566,1164,'mec_end_time_hour','4'),(6567,1164,'mec_end_time_minutes','00'),(6512,1162,'mec_end_day_seconds','57600'),(6513,1162,'mec_repeat_status','0'),(6514,1162,'mec_repeat_type',''),(6515,1162,'mec_repeat_interval',NULL),(6516,1162,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6517,1162,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-20\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-20\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6518,1162,'mec_source','google-calendar'),(6519,1162,'mec_gcal_ical_uid','CSVConvertb6167b7bbc0ff1be6a30db5fa4a36e34'),(6520,1162,'mec_gcal_id','_8d9lcgrfdpr6asjkc8r32dhnc8rm4oj361j6ccb2ckr62cpgchh3apj16hgj6dj56cq0'),(6521,1162,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6522,1162,'mec_g_recurrence_rule',''),(6523,1162,'mec_advanced_days',NULL),(6524,1162,'mec_imported_from_google','1'),(6525,1163,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6526,1163,'mec_location_id','17'),(6527,1163,'mec_dont_show_map','0'),(6528,1163,'mec_organizer_id','18'),(6529,1163,'mec_allday','0'),(6530,1163,'mec_hide_time','0'),(5835,417,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.1077122853870235985596082173287868499755859375;s:5:\"bytes\";i:132014;s:11:\"size_before\";i:1306072;s:10:\"size_after\";i:1174058;s:4:\"time\";d:0.480000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:2780;s:11:\"size_before\";i:24584;s:10:\"size_after\";i:21804;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7329;s:11:\"size_before\";i:68731;s:10:\"size_after\";i:61402;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:2719;s:11:\"size_before\";i:22874;s:10:\"size_after\";i:20155;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:19519;s:11:\"size_before\";i:202214;s:10:\"size_after\";i:182695;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7761;s:11:\"size_before\";i:74455;s:10:\"size_after\";i:66694;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:8400;s:11:\"size_before\";i:79140;s:10:\"size_after\";i:70740;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11052;s:11:\"size_before\";i:117569;s:10:\"size_after\";i:106517;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:14000;s:11:\"size_before\";i:147807;s:10:\"size_after\";i:133807;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:20057;s:11:\"size_before\";i:208339;s:10:\"size_after\";i:188282;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:9882;s:11:\"size_before\";i:93871;s:10:\"size_after\";i:83989;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2073;s:11:\"size_before\";i:18168;s:10:\"size_after\";i:16095;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:11114;s:11:\"size_before\";i:104974;s:10:\"size_after\";i:93860;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:15328;s:11:\"size_before\";i:143346;s:10:\"size_after\";i:128018;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5836,423,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.704825452644481487141092657111585140228271484375;s:5:\"bytes\";i:324370;s:11:\"size_before\";i:3726324;s:10:\"size_after\";i:3401954;s:4:\"time\";d:0.890000000000000124344978758017532527446746826171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2144;s:11:\"size_before\";i:21396;s:10:\"size_after\";i:19252;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:6250;s:11:\"size_before\";i:65503;s:10:\"size_after\";i:59253;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:46213;s:11:\"size_before\";i:480803;s:10:\"size_after\";i:434590;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:64470;s:11:\"size_before\";i:677402;s:10:\"size_after\";i:612932;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2040;s:11:\"size_before\";i:19725;s:10:\"size_after\";i:17685;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:35106;s:11:\"size_before\";i:448523;s:10:\"size_after\";i:413417;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6413;s:11:\"size_before\";i:76626;s:10:\"size_after\";i:70213;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7139;s:11:\"size_before\";i:81652;s:10:\"size_after\";i:74513;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:11382;s:11:\"size_before\";i:140951;s:10:\"size_after\";i:129569;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:18727;s:11:\"size_before\";i:238746;s:10:\"size_after\";i:220019;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:47034;s:11:\"size_before\";i:571624;s:10:\"size_after\";i:524590;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:41352;s:11:\"size_before\";i:527867;s:10:\"size_after\";i:486515;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:9043;s:11:\"size_before\";i:95888;s:10:\"size_after\";i:86845;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1536;s:11:\"size_before\";i:15764;s:10:\"size_after\";i:14228;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:10210;s:11:\"size_before\";i:106690;s:10:\"size_after\";i:96480;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:15311;s:11:\"size_before\";i:157164;s:10:\"size_after\";i:141853;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5787,612,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.684979329076373488760509644635021686553955078125;s:5:\"bytes\";i:231316;s:11:\"size_before\";i:2663403;s:10:\"size_after\";i:2432087;s:4:\"time\";d:0.62000000000000010658141036401502788066864013671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3654;s:11:\"size_before\";i:46554;s:10:\"size_after\";i:42900;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:36575;s:11:\"size_before\";i:399759;s:10:\"size_after\";i:363184;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1459;s:11:\"size_before\";i:18319;s:10:\"size_after\";i:16860;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.25;s:5:\"bytes\";i:41404;s:11:\"size_before\";i:447541;s:10:\"size_after\";i:406137;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1265;s:11:\"size_before\";i:14192;s:10:\"size_after\";i:12927;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:24626;s:11:\"size_before\";i:277870;s:10:\"size_after\";i:253244;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:5061;s:11:\"size_before\";i:63124;s:10:\"size_after\";i:58063;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:5392;s:11:\"size_before\";i:67177;s:10:\"size_after\";i:61785;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9810;s:11:\"size_before\";i:110819;s:10:\"size_after\";i:101009;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:16584;s:11:\"size_before\";i:174771;s:10:\"size_after\";i:158187;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:28898;s:11:\"size_before\";i:345498;s:10:\"size_after\";i:316600;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:23760;s:11:\"size_before\";i:281381;s:10:\"size_after\";i:257621;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:6300;s:11:\"size_before\";i:80138;s:10:\"size_after\";i:73838;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1074;s:11:\"size_before\";i:13407;s:10:\"size_after\";i:12333;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:8934;s:11:\"size_before\";i:115038;s:10:\"size_after\";i:106104;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:8493;s:11:\"size_before\";i:106837;s:10:\"size_after\";i:98344;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:8027;s:11:\"size_before\";i:100978;s:10:\"size_after\";i:92951;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(6269,1154,'mec_location_id','17'),(6255,1153,'mec_end_day_seconds','55800'),(6256,1153,'mec_repeat_status','0'),(6257,1153,'mec_repeat_type',''),(6258,1153,'mec_repeat_interval',NULL),(6259,1153,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6260,1153,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-09-22\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-09-22\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6261,1153,'mec_source','google-calendar'),(6262,1153,'mec_gcal_ical_uid','CSVConvert1c48ff545f8d1632f16ea6395659496b'),(6263,1153,'mec_gcal_id','_8d9lcgrfdpr6asjk65hj8e36coqj8db671i32dhj69j32dj5c4r36e9l6oqjid1p6ph0'),(6264,1153,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6265,1153,'mec_g_recurrence_rule',''),(6266,1153,'mec_advanced_days',NULL),(6267,1153,'mec_imported_from_google','1'),(6268,1154,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6124,1146,'location',''),(6125,1146,'organizer',''),(6126,1146,'tag',''),(6127,1146,'author',''),(4732,972,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6401,1158,'mec_repeat_interval',NULL),(6402,1158,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6403,1158,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-01\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-01\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6404,1158,'mec_source','google-calendar'),(6405,1158,'mec_gcal_ical_uid','CSVConvert3f49f20760a5a656fbf96b44f870f7fe'),(6299,1155,'mec_dont_show_map','0'),(6298,1155,'mec_location_id','17'),(6297,1155,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4758,972,'_weforms_version','1.4.9'),(4749,972,'wpuf_form_settings','a:48:{s:11:\"redirect_to\";s:4:\"page\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:7:\"page_id\";s:3:\"882\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:14:\"Submit Request\";s:18:\"submit_button_cond\";O:8:\"stdClass\":3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:39:\"Form submission hasn\'t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:3:\"100\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";s:13:\"use_theme_css\";s:10:\"wpuf-style\";s:9:\"quiz_form\";s:2:\"no\";s:22:\"shuffle_question_order\";s:2:\"no\";s:13:\"release_grade\";s:16:\"after_submission\";s:18:\"respondent_can_see\";a:3:{i:0;s:16:\"missed_questions\";i:1;s:15:\"correct_answers\";i:2;s:12:\"point_values\";}s:12:\"total_points\";i:0;s:16:\"enable_multistep\";b:1;s:26:\"multistep_progressbar_type\";s:12:\"step_by_step\";s:21:\"payment_paypal_images\";s:68:\"https://www.paypalobjects.com/webstatic/mktg/logo/AM_mc_vs_dc_ae.jpg\";s:20:\"payment_paypal_label\";s:6:\"PayPal\";s:20:\"payment_stripe_label\";s:11:\"Credit Card\";s:21:\"payment_stripe_images\";a:4:{i:0;s:4:\"visa\";i:1;s:10:\"mastercard\";i:2;s:4:\"amex\";i:3;s:8:\"discover\";}s:25:\"payment_stripe_deactivate\";s:0:\"\";s:11:\"stripe_mode\";s:4:\"live\";s:14:\"stripe_page_id\";s:0:\"\";s:20:\"stripe_override_keys\";s:0:\"\";s:12:\"stripe_email\";s:0:\"\";s:10:\"stripe_key\";s:0:\"\";s:17:\"stripe_secret_key\";s:0:\"\";s:15:\"stripe_key_test\";s:0:\"\";s:22:\"stripe_secret_key_test\";s:0:\"\";s:20:\"stripe_prefill_email\";s:0:\"\";s:23:\"stripe_user_email_field\";s:0:\"\";s:25:\"payment_paypal_deactivate\";s:0:\"\";s:11:\"paypal_mode\";s:4:\"live\";s:11:\"paypal_type\";s:5:\"_cart\";s:15:\"paypal_override\";s:0:\"\";s:12:\"paypal_email\";s:0:\"\";s:14:\"paypal_page_id\";s:0:\"\";s:20:\"paypal_prefill_email\";s:0:\"\";s:23:\"paypal_user_email_field\";s:0:\"\";}'),(4750,972,'notifications','a:1:{i:0;a:14:{s:6:\"active\";s:4:\"true\";s:4:\"type\";s:5:\"email\";s:5:\"smsTo\";s:0:\"\";s:7:\"smsText\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:4:\"name\";s:22:\"Submitter Notification\";s:7:\"subject\";s:45:\"[{form_name}] Submission Received #{entry_id}\";s:2:\"to\";s:21:\"{field:email_address}\";s:7:\"replyTo\";s:48:\"{field:email_address},contact@lantern-realty.com\";s:7:\"message\";s:410:\"<p>Thank you for your interest in improving the Lantern website. This email confirms that your request has been sent to our website developer. For simple changes, please allow 48-72 hours for completion. Larger, more complex changes will take longer.</p>\n<p>We will be in touch if there are questions about your request.</p>\n<p>Thanks,</p>\n<p>The Lantern Team</p>\n<p>Submission Details:</p>\n<p>{all_fields}</p>\";s:8:\"fromName\";s:30:\"Lantern Realty and Development\";s:11:\"fromAddress\";s:26:\"contant@lantern-realty.com\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:13:\"{admin_email}\";s:12:\"weforms_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}}}'),(4751,972,'integrations','a:1:{s:5:\"slack\";O:8:\"stdClass\":2:{s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";}}'),(4752,989,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4753,990,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4754,991,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4755,992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4756,993,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4757,994,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6300,1155,'mec_organizer_id','18'),(6301,1155,'mec_allday','0'),(6302,1155,'mec_hide_time','0'),(6303,1155,'mec_hide_end_time','0'),(6304,1155,'mec_start_date','2020-11-10'),(6305,1155,'mec_start_time_hour','3'),(6306,1155,'mec_start_time_minutes','00'),(6307,1155,'mec_start_time_ampm','PM'),(6308,1155,'mec_start_day_seconds','54000'),(6309,1155,'mec_end_date','2020-11-10'),(6310,1155,'mec_end_time_hour','4'),(6311,1155,'mec_end_time_minutes','30'),(6312,1155,'mec_end_time_ampm','PM'),(6313,1155,'mec_end_day_seconds','59400'),(6314,1155,'mec_repeat_status','0'),(6315,1155,'mec_repeat_type',''),(6316,1155,'mec_repeat_interval',NULL),(6317,1155,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6318,1155,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-10\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-10\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6319,1155,'mec_source','google-calendar'),(6320,1155,'mec_gcal_ical_uid','CSVConvert31f88b3385ed5ac9050659c75fd87112'),(6321,1155,'mec_gcal_id','_8d9lcgrfdpr6asjk6comce1oc8pj6e1lcli3aob374o3ac1m6ksm6dplcpi3gdph64p0'),(6322,1155,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6323,1155,'mec_g_recurrence_rule',''),(6324,1155,'mec_advanced_days',NULL),(6325,1155,'mec_imported_from_google','1'),(6326,1156,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6327,1156,'mec_location_id','17'),(6328,1156,'mec_dont_show_map','0'),(6329,1156,'mec_organizer_id','18'),(6330,1156,'mec_allday','0'),(6331,1156,'mec_hide_time','0'),(6332,1156,'mec_hide_end_time','0'),(6333,1156,'mec_start_date','2020-10-13'),(6334,1156,'mec_start_time_hour','2'),(6335,1156,'mec_start_time_minutes','00'),(6336,1156,'mec_start_time_ampm','PM'),(6337,1156,'mec_start_day_seconds','50400'),(6338,1156,'mec_end_date','2020-10-13'),(6339,1156,'mec_end_time_hour','4'),(6340,1156,'mec_end_time_minutes','00'),(6341,1156,'mec_end_time_ampm','PM'),(6342,1156,'mec_end_day_seconds','57600'),(6343,1156,'mec_repeat_status','0'),(6344,1156,'mec_repeat_type',''),(6345,1156,'mec_repeat_interval',NULL),(6346,1156,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6347,1156,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-13\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-13\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6348,1156,'mec_source','google-calendar'),(6349,1156,'mec_gcal_ical_uid','CSVConvert324da41635952b6753baaad7b1f840f5'),(6350,1156,'mec_gcal_id','_8d9lcgrfdpr6asjk6cp38p316gojccpl74qj4ohm6sqj6oj1c5gm8dr265j3gd1gcoqg'),(6351,1156,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6352,1156,'mec_g_recurrence_rule',''),(6353,1156,'mec_advanced_days',NULL),(6354,1157,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6355,1157,'mec_location_id','17'),(6356,1157,'mec_dont_show_map','0'),(6357,1157,'mec_organizer_id','18'),(6358,1157,'mec_allday','0'),(6359,1157,'mec_hide_time','0'),(6360,1157,'mec_hide_end_time','0'),(6361,1157,'mec_start_date','2020-11-17'),(6362,1157,'mec_start_time_hour','3'),(6363,1157,'mec_start_time_minutes','00'),(6364,1157,'mec_start_time_ampm','PM'),(6365,1157,'mec_start_day_seconds','54000'),(6366,1157,'mec_end_date','2020-11-17'),(6367,1157,'mec_end_time_hour','5'),(6368,1157,'mec_end_time_minutes','00'),(6369,1157,'mec_end_time_ampm','PM'),(6370,1157,'mec_end_day_seconds','61200'),(6371,1157,'mec_repeat_status','0'),(6372,1157,'mec_repeat_type',''),(6373,1157,'mec_repeat_interval',NULL),(6374,1157,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6375,1157,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-17\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-17\";s:4:\"hour\";s:1:\"5\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6376,1157,'mec_source','google-calendar'),(6377,1157,'mec_gcal_ical_uid','CSVConvert38218b985943087e1e4b926faf382caf'),(6378,1157,'mec_gcal_id','_8d9lcgrfdpr6asjk6cs34c9oc8sjgd9p6gpj0e1nckomad3274p3cpj1copjgcj3c5j0'),(6379,1157,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6380,1157,'mec_g_recurrence_rule',''),(6381,1157,'mec_advanced_days',NULL),(6382,1158,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6383,1158,'mec_location_id','17'),(6384,1158,'mec_dont_show_map','0'),(6385,1158,'mec_organizer_id','18'),(6386,1158,'mec_allday','0'),(6387,1158,'mec_hide_time','0'),(6388,1158,'mec_hide_end_time','0'),(6389,1158,'mec_start_date','2020-10-01'),(6390,1158,'mec_start_time_hour','2'),(6391,1158,'mec_start_time_minutes','00'),(6392,1158,'mec_start_time_ampm','PM'),(6393,1158,'mec_start_day_seconds','50400'),(6394,1158,'mec_end_date','2020-10-01'),(6395,1158,'mec_end_time_hour','3'),(6396,1158,'mec_end_time_minutes','30'),(6397,1158,'mec_end_time_ampm','PM'),(6398,1158,'mec_end_day_seconds','55800'),(6399,1158,'mec_repeat_status','0'),(6400,1158,'mec_repeat_type',''),(6270,1154,'mec_dont_show_map','0'),(6271,1154,'mec_organizer_id','18'),(6272,1154,'mec_allday','0'),(6273,1154,'mec_hide_time','0'),(6274,1154,'mec_hide_end_time','0'),(6275,1154,'mec_start_date','2020-11-05'),(6276,1154,'mec_start_time_hour','3'),(6277,1154,'mec_start_time_minutes','00'),(6278,1154,'mec_start_time_ampm','PM'),(6279,1154,'mec_start_day_seconds','54000'),(6280,1154,'mec_end_date','2020-11-05'),(6281,1154,'mec_end_time_hour','4'),(6282,1154,'mec_end_time_minutes','30'),(6283,1154,'mec_end_time_ampm','PM'),(6284,1154,'mec_end_day_seconds','59400'),(6285,1154,'mec_repeat_status','0'),(6286,1154,'mec_repeat_type',''),(6287,1154,'mec_repeat_interval',NULL),(6288,1154,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6289,1154,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-05\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-05\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6290,1154,'mec_source','google-calendar'),(6291,1154,'mec_gcal_ical_uid','CSVConvert1f552cc93fe86aeaac5517d13fa3294c'),(6292,1154,'mec_gcal_id','_8d9lcgrfdpr6asjk65j3ad9icdhjicr6cks3cob5c5gm6d9l64rm8c9jcpgj6chp6hhg'),(6293,1154,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6294,1154,'mec_g_recurrence_rule',''),(6295,1154,'mec_advanced_days',NULL),(6296,1154,'mec_imported_from_google','1'),(4766,882,'_genesis_noindex','1'),(4767,882,'_genesis_nofollow','1'),(4768,882,'_genesis_noarchive','1'),(4769,996,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4770,996,'_edit_lock','1602795338:1'),(4771,996,'_wp_page_template','template/template-onepage.php'),(4772,996,'_edit_last','1'),(4773,996,'fave_listing_page_content_area','0'),(4774,996,'fave_prop_no','9'),(4775,996,'fave_properties_sort','d_date'),(4776,996,'fave_listings_tabs','disable'),(4777,996,'fave_properties_min_beds','0'),(4778,996,'fave_properties_min_baths','0'),(4779,996,'fave_agency_orderby','None'),(4780,996,'fave_agency_order','ASC'),(4781,996,'fave_agent_orderby','None'),(4782,996,'fave_agent_order','ASC'),(4783,996,'fave_header_type','none'),(4784,996,'fave_page_header_image_opacity','0.35'),(4785,996,'fave_page_header_search','0'),(4786,996,'fave_header_full_screen','0'),(4787,996,'fave_adv_search_enable','global'),(4788,996,'fave_adv_search','hide'),(4789,996,'fave_adv_search_pos','under_menu'),(4790,996,'fave_page_title','show'),(4791,996,'fave_page_breadcrumb','show'),(4792,996,'fave_page_sidebar','right_sidebar'),(4793,996,'fave_page_background','yes'),(4794,996,'fave_main_menu_trans','no'),(4795,996,'slide_template','default'),(4796,996,'rs_page_bg_color','#ffffff'),(4797,996,'_wpb_vc_js_status','false'),(4798,996,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4799,998,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4800,998,'_edit_lock','1603043825:1'),(4801,998,'_wp_page_template','template/template-onepage.php'),(4802,998,'_edit_last','1'),(4803,998,'fave_listing_page_content_area','0'),(4804,998,'fave_prop_no','9'),(4805,998,'fave_properties_sort','d_date'),(4806,998,'fave_listings_tabs','disable'),(4807,998,'fave_properties_min_beds','0'),(4808,998,'fave_properties_min_baths','0'),(4809,998,'fave_agency_orderby','None'),(4810,998,'fave_agency_order','ASC'),(4811,998,'fave_agent_orderby','None'),(4812,998,'fave_agent_order','ASC'),(4813,998,'fave_header_type','none'),(4814,998,'fave_page_header_image_opacity','0.35'),(4815,998,'fave_page_header_search','0'),(4816,998,'fave_header_full_screen','0'),(4817,998,'fave_adv_search_enable','global'),(4818,998,'fave_adv_search','hide'),(4819,998,'fave_adv_search_pos','under_menu'),(4820,998,'fave_page_title','show'),(4821,998,'fave_page_breadcrumb','show'),(4822,998,'fave_page_sidebar','right_sidebar'),(4823,998,'fave_page_background','yes'),(4824,998,'fave_main_menu_trans','no'),(4825,998,'_genesis_noindex','1'),(4826,998,'_genesis_nofollow','1'),(4827,998,'_genesis_noarchive','1'),(4828,998,'slide_template','default'),(4829,998,'rs_page_bg_color','#ffffff'),(4830,998,'_wpb_vc_js_status','false'),(4831,998,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4832,1000,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4833,1000,'_edit_lock','1603043827:1'),(4834,1000,'_wp_page_template','template/template-onepage.php'),(4835,1000,'_edit_last','1'),(4836,1000,'fave_listing_page_content_area','0'),(4837,1000,'fave_prop_no','9'),(4838,1000,'fave_properties_sort','d_date'),(4839,1000,'fave_listings_tabs','disable'),(4840,1000,'fave_properties_min_beds','0'),(4841,1000,'fave_properties_min_baths','0'),(4842,1000,'fave_agency_orderby','None'),(4843,1000,'fave_agency_order','ASC'),(4844,1000,'fave_agent_orderby','None'),(4845,1000,'fave_agent_order','ASC'),(4846,1000,'fave_header_type','none'),(4847,1000,'fave_page_header_image_opacity','0.35'),(4848,1000,'fave_page_header_search','0'),(4849,1000,'fave_header_full_screen','0'),(4850,1000,'fave_adv_search_enable','global'),(4851,1000,'fave_adv_search','hide'),(4852,1000,'fave_adv_search_pos','under_menu'),(4853,1000,'fave_page_title','show'),(4854,1000,'fave_page_breadcrumb','show'),(4855,1000,'fave_page_sidebar','right_sidebar'),(4856,1000,'fave_page_background','yes'),(4857,1000,'fave_main_menu_trans','no'),(4858,1000,'_genesis_noindex','1'),(4859,1000,'_genesis_nofollow','1'),(4860,1000,'_genesis_noarchive','1'),(4861,1000,'slide_template','default'),(4862,1000,'rs_page_bg_color','#ffffff'),(4863,1000,'_wpb_vc_js_status','false'),(4864,1000,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(6153,1148,'show_past_events','0'),(6154,1148,'sk-options','a:1:{s:9:\"timetable\";a:1:{s:20:\"next_previous_button\";i:1;}}'),(6155,1148,'sf-options','a:1:{s:9:\"timetable\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6156,1148,'sf_status','1'),(6157,1149,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6158,1149,'label',''),(6159,1149,'category',''),(6160,1149,'location',''),(6161,1149,'organizer',''),(6162,1149,'tag',''),(6163,1149,'author',''),(6164,1149,'skin','tile'),(6165,1149,'show_past_events','0'),(6166,1149,'sk-options','a:1:{s:4:\"tile\";a:1:{s:20:\"next_previous_button\";i:1;}}'),(6167,1149,'sf-options','a:1:{s:4:\"tile\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6168,1149,'sf_status','1'),(6169,1150,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6170,1150,'label',''),(6171,1150,'category',''),(6172,1150,'location',''),(6173,1150,'organizer',''),(6174,1150,'tag',''),(6175,1150,'author',''),(6176,1150,'skin','timeline'),(6177,1150,'show_past_events','0'),(6178,1150,'sk-options','a:1:{s:8:\"timeline\";a:1:{s:16:\"load_more_button\";i:1;}}'),(6179,1150,'sf-options','a:1:{s:8:\"timeline\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6180,1150,'sf_status','0'),(6181,1151,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6182,1151,'mec_location_id','17'),(6183,1151,'mec_dont_show_map','0'),(6184,1151,'mec_organizer_id','18'),(6185,1151,'mec_allday','0'),(6186,1151,'mec_hide_time','0'),(6187,1151,'mec_hide_end_time','0'),(6188,1151,'mec_start_date','2020-10-05'),(6189,1151,'mec_start_time_hour','2'),(6190,1151,'mec_start_time_minutes','00'),(6191,1151,'mec_start_time_ampm','PM'),(6192,1151,'mec_start_day_seconds','50400'),(6193,1151,'mec_end_date','2020-10-05'),(6194,1151,'mec_end_time_hour','3'),(6195,1151,'mec_end_time_minutes','30'),(6196,1151,'mec_end_time_ampm','PM'),(6197,1151,'mec_end_day_seconds','55800'),(6198,1151,'mec_repeat_status','0'),(6199,1151,'mec_repeat_type',''),(6200,1151,'mec_repeat_interval',NULL),(6201,1151,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6202,1151,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-05\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-05\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6203,1151,'mec_source','google-calendar'),(6204,1151,'mec_gcal_ical_uid','CSVConvert06082248a247c36703d17366f092f695'),(6205,1151,'mec_gcal_id','_8d9lcgrfdpr6asjk60r30e1i68q3go9i6grm6cpm6so36p1h6spjcdj660sj4phm74qg'),(6206,1151,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6207,1151,'mec_g_recurrence_rule',''),(6208,1151,'mec_advanced_days',NULL),(6209,1151,'mec_imported_from_google','1'),(6210,1152,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6211,1152,'mec_location_id','19'),(6212,1152,'mec_dont_show_map','0'),(6213,1152,'mec_organizer_id','18'),(6214,1152,'mec_allday','0'),(6215,1152,'mec_hide_time','0'),(6216,1152,'mec_hide_end_time','0'),(6217,1152,'mec_start_date','2020-10-07'),(6218,1152,'mec_start_time_hour','3'),(6219,1152,'mec_start_time_minutes','00'),(6220,1152,'mec_start_time_ampm','PM'),(6221,1152,'mec_start_day_seconds','54000'),(6222,1152,'mec_end_date','2020-10-07'),(6223,1152,'mec_end_time_hour','4'),(6224,1152,'mec_end_time_minutes','00'),(6225,1152,'mec_end_time_ampm','PM'),(6226,1152,'mec_end_day_seconds','57600'),(6227,1152,'mec_repeat_status','0'),(6228,1152,'mec_repeat_type',''),(6229,1152,'mec_repeat_interval',NULL),(6230,1152,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6231,1152,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-07\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-07\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6232,1152,'mec_source','google-calendar'),(6233,1152,'mec_gcal_ical_uid','CSVConvert0c40d14a0d8949212a38756cf75ded42'),(6234,1152,'mec_gcal_id','_8d9lcgrfdpr6asjk61hj8c3464q62c3470sj8e9i64p62cpo6sqjcor66sqm8pb46gp0'),(6235,1152,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6236,1152,'mec_g_recurrence_rule',''),(6237,1152,'mec_advanced_days',NULL),(6238,1152,'mec_imported_from_google','1'),(6239,1153,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6240,1153,'mec_location_id','17'),(6241,1153,'mec_dont_show_map','0'),(6242,1153,'mec_organizer_id','18'),(6243,1153,'mec_allday','0'),(6244,1153,'mec_hide_time','0'),(6152,1148,'skin','timetable'),(6150,1148,'tag',''),(6151,1148,'author',''),(6149,1148,'organizer',''),(6128,1146,'skin','masonry'),(6129,1146,'show_past_events','0'),(6130,1146,'sk-options','a:1:{s:7:\"masonry\";a:2:{s:5:\"limit\";i:24;s:9:\"filter_by\";s:8:\"category\";}}'),(6131,1146,'sf-options','a:1:{s:7:\"masonry\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6132,1146,'sf_status','0'),(6133,1147,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6134,1147,'label',''),(6135,1147,'category',''),(6136,1147,'location',''),(6137,1147,'organizer',''),(6138,1147,'tag',''),(6139,1147,'author',''),(6140,1147,'skin','agenda'),(6141,1147,'show_past_events','0'),(6142,1147,'sk-options','a:1:{s:6:\"agenda\";a:1:{s:16:\"load_more_button\";i:1;}}'),(6143,1147,'sf-options','a:1:{s:6:\"agenda\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6144,1147,'sf_status','1'),(6145,1148,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6146,1148,'label',''),(6147,1148,'category',''),(6148,1148,'location',''),(6024,1137,'sf_status','1'),(6025,1138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6026,1138,'label',''),(6027,1138,'category',''),(6028,1138,'location',''),(6029,1138,'organizer',''),(6030,1138,'tag',''),(6031,1138,'author',''),(6032,1138,'skin','weekly_view'),(6033,1138,'show_past_events','1'),(6034,1138,'sk-options','a:1:{s:11:\"weekly_view\";a:2:{s:15:\"start_date_type\";s:19:\"start_current_month\";s:20:\"next_previous_button\";i:1;}}'),(6035,1138,'sf-options','a:1:{s:11:\"weekly_view\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6036,1138,'sf_status','1'),(6037,1139,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6038,1139,'label',''),(6039,1139,'category',''),(6040,1139,'location',''),(6041,1139,'organizer',''),(6042,1139,'tag',''),(6043,1139,'author',''),(6044,1139,'skin','daily_view'),(6045,1139,'show_past_events','1'),(6046,1139,'sk-options','a:1:{s:10:\"daily_view\";a:2:{s:15:\"start_date_type\";s:19:\"start_current_month\";s:20:\"next_previous_button\";i:1;}}'),(6047,1139,'sf-options','a:1:{s:10:\"daily_view\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6048,1139,'sf_status','1'),(6049,1140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6050,1140,'label',''),(6051,1140,'category',''),(6052,1140,'location',''),(6053,1140,'organizer',''),(6054,1140,'tag',''),(6055,1140,'author',''),(6056,1140,'skin','map'),(6057,1140,'show_past_events','1'),(6058,1140,'sk-options','a:1:{s:3:\"map\";a:1:{s:5:\"limit\";i:200;}}'),(6059,1140,'sf-options','a:1:{s:3:\"map\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6060,1140,'sf_status','1'),(6061,1141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6062,1141,'label',''),(6063,1141,'category',''),(6064,1141,'location',''),(6065,1141,'organizer',''),(6066,1141,'tag',''),(6067,1141,'author',''),(6068,1141,'skin','list'),(6069,1141,'show_past_events','0'),(6070,1141,'sk-options','a:1:{s:4:\"list\";a:1:{s:16:\"load_more_button\";i:1;}}'),(6071,1141,'sf-options','a:1:{s:4:\"list\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6072,1141,'sf_status','1'),(6073,1142,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6074,1142,'label',''),(6075,1142,'category',''),(6076,1142,'location',''),(6077,1142,'organizer',''),(6078,1142,'tag',''),(6079,1142,'author',''),(6080,1142,'skin','grid'),(6081,1142,'show_past_events','0'),(6082,1142,'sk-options','a:1:{s:4:\"grid\";a:1:{s:16:\"load_more_button\";i:1;}}'),(6083,1142,'sf-options','a:1:{s:4:\"grid\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6084,1142,'sf_status','1'),(6085,1143,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6086,1143,'label',''),(6087,1143,'category',''),(6088,1143,'location',''),(6089,1143,'organizer',''),(6090,1143,'tag',''),(6091,1143,'author',''),(6092,1143,'skin','carousel'),(6093,1143,'show_past_events','0'),(6094,1143,'sk-options','a:1:{s:8:\"carousel\";a:2:{s:5:\"count\";i:3;s:5:\"limit\";i:12;}}'),(6095,1143,'sf-options','a:1:{s:8:\"carousel\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6096,1143,'sf_status','0'),(6097,1144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6098,1144,'label',''),(6099,1144,'category',''),(6100,1144,'location',''),(6101,1144,'organizer',''),(6102,1144,'tag',''),(6103,1144,'author',''),(6104,1144,'skin','countdown'),(6105,1144,'show_past_events','0'),(6106,1144,'sk-options','a:1:{s:9:\"countdown\";a:2:{s:5:\"style\";s:6:\"style3\";s:8:\"event_id\";s:2:\"-1\";}}'),(6107,1144,'sf-options','a:1:{s:9:\"countdown\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6108,1144,'sf_status','0'),(6109,1145,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6110,1145,'label',''),(6111,1145,'category',''),(6112,1145,'location',''),(6113,1145,'organizer',''),(6114,1145,'tag',''),(6115,1145,'author',''),(6116,1145,'skin','slider'),(6117,1145,'show_past_events','0'),(6118,1145,'sk-options','a:1:{s:6:\"slider\";a:3:{s:5:\"style\";s:2:\"t1\";s:5:\"limit\";i:6;s:8:\"autoplay\";i:3000;}}'),(6119,1145,'sf-options','a:1:{s:6:\"slider\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6120,1145,'sf_status','0'),(6121,1146,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6122,1146,'label',''),(6123,1146,'category',''),(5908,1131,'mec_color','dd823b'),(5909,1132,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5910,1132,'mec_location_id','1'),(5911,1132,'mec_dont_show_map','0'),(5912,1132,'mec_organizer_id','1'),(5913,1132,'mec_allday','0'),(5914,1132,'mec_hide_time','0'),(5915,1132,'mec_hide_end_time','0'),(5916,1132,'mec_start_date','2020-10-18'),(5917,1132,'mec_start_time_hour','8'),(5918,1132,'mec_start_time_minutes','0'),(5919,1132,'mec_start_time_ampm','AM'),(5920,1132,'mec_start_day_seconds','28800'),(5921,1132,'mec_end_date','2020-10-18'),(5922,1132,'mec_end_time_hour','6'),(5923,1132,'mec_end_time_minutes','0'),(5924,1132,'mec_end_time_ampm','PM'),(5925,1132,'mec_end_day_seconds','64800'),(5926,1132,'mec_repeat_status','1'),(5927,1132,'mec_repeat_type','daily'),(5928,1132,'mec_repeat_interval','3'),(5929,1132,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(5930,1132,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-18\";s:4:\"hour\";i:8;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-18\";s:4:\"hour\";i:6;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(5931,1132,'mec_color','a3b745'),(5932,1133,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5933,1133,'mec_location_id','1'),(5934,1133,'mec_dont_show_map','0'),(5935,1133,'mec_organizer_id','1'),(5936,1133,'mec_allday','0'),(5937,1133,'mec_hide_time','0'),(5938,1133,'mec_hide_end_time','0'),(5939,1133,'mec_start_date','2020-10-19'),(5940,1133,'mec_start_time_hour','8'),(5941,1133,'mec_start_time_minutes','0'),(4888,996,'_elementor_edit_mode','builder'),(4889,996,'_elementor_template_type','wp-page'),(4890,996,'_elementor_version','3.0.9'),(4891,998,'_elementor_edit_mode','builder'),(4893,996,'_elementor_data','[{\"id\":\"7ca5b2e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25b9683\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"09c676a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a2af44\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fe5727f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8486b8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Website Change Requests\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f811b5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"68764bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d7b73a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bc4ee7f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"ebda811\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ee5e10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Thank you for your care in keeping our website up-to-date.<\\/h4><p>\\u00a0 \\u00a0 \\u00a0Please use this form to submit change requests directly to our web developer. Things to submit in this form can include, but are not limited to: additions of special content, information corrects, unique ideas, and more. For basic corrections, please allow 48-72 hours to see the changes update. Larger changes may take longer.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ad9dfdd\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"972\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-weforms_widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6023,1137,'sf-options','a:1:{s:12:\"monthly_view\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6022,1137,'sk-options','a:1:{s:12:\"monthly_view\";a:2:{s:15:\"start_date_type\";s:19:\"start_current_month\";s:20:\"next_previous_button\";i:1;}}'),(6021,1137,'show_past_events','1'),(5810,188,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.576052614503595350470277480781078338623046875;s:5:\"bytes\";i:81599;s:11:\"size_before\";i:601051;s:10:\"size_after\";i:519452;s:4:\"time\";d:0.1900000000000000299760216648792265914380550384521484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3705;s:11:\"size_before\";i:25974;s:10:\"size_after\";i:22269;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7585;s:11:\"size_before\";i:60287;s:10:\"size_after\";i:52702;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2714;s:11:\"size_before\";i:18959;s:10:\"size_after\";i:16245;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10173;s:11:\"size_before\";i:84191;s:10:\"size_after\";i:74018;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:10503;s:11:\"size_before\";i:87748;s:10:\"size_after\";i:77245;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:22402;s:11:\"size_before\";i:125090;s:10:\"size_after\";i:102688;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:12318;s:11:\"size_before\";i:101569;s:10:\"size_after\";i:89251;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2701;s:11:\"size_before\";i:18903;s:10:\"size_after\";i:16202;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:9498;s:11:\"size_before\";i:78330;s:10:\"size_after\";i:68832;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5853,490,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.650448425014051423431737930513918399810791015625;s:5:\"bytes\";i:141594;s:11:\"size_before\";i:1636840;s:10:\"size_after\";i:1495246;s:4:\"time\";d:0.49000000000000010214051826551440171897411346435546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:10;s:5:\"bytes\";i:1732;s:11:\"size_before\";i:17315;s:10:\"size_after\";i:15583;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4813;s:11:\"size_before\";i:52417;s:10:\"size_after\";i:47604;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.25;s:5:\"bytes\";i:1623;s:11:\"size_before\";i:15833;s:10:\"size_after\";i:14210;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:19072;s:11:\"size_before\";i:257660;s:10:\"size_after\";i:238588;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:4680;s:11:\"size_before\";i:63287;s:10:\"size_after\";i:58607;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:5133;s:11:\"size_before\";i:66457;s:10:\"size_after\";i:61324;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:8652;s:11:\"size_before\";i:117749;s:10:\"size_after\";i:109097;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:27742;s:11:\"size_before\";i:168551;s:10:\"size_after\";i:140809;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:23902;s:11:\"size_before\";i:313063;s:10:\"size_after\";i:289161;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:19197;s:11:\"size_before\";i:261647;s:10:\"size_after\";i:242450;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6436;s:11:\"size_before\";i:80373;s:10:\"size_after\";i:73937;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1191;s:11:\"size_before\";i:12919;s:10:\"size_after\";i:11728;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:7236;s:11:\"size_before\";i:86503;s:10:\"size_after\";i:79267;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:10185;s:11:\"size_before\";i:123066;s:10:\"size_after\";i:112881;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4901,998,'_elementor_template_type','wp-page'),(4902,998,'_elementor_version','3.0.11'),(5942,1133,'mec_start_time_ampm','AM'),(5943,1133,'mec_start_day_seconds','28800'),(5944,1133,'mec_end_date','2020-10-19'),(5945,1133,'mec_end_time_hour','6'),(5946,1133,'mec_end_time_minutes','0'),(5947,1133,'mec_end_time_ampm','PM'),(5948,1133,'mec_end_day_seconds','64800'),(5949,1133,'mec_repeat_status','1'),(5950,1133,'mec_repeat_type','weekly'),(5951,1133,'mec_repeat_interval','7'),(5952,1133,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(5953,1133,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-19\";s:4:\"hour\";i:8;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-19\";s:4:\"hour\";i:6;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(5954,1133,'mec_color','e14d43'),(5955,1134,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5956,1134,'mec_location_id','1'),(5957,1134,'mec_dont_show_map','0'),(5958,1134,'mec_organizer_id','1'),(5959,1134,'mec_allday','0'),(5960,1134,'mec_hide_time','0'),(5961,1134,'mec_hide_end_time','0'),(5962,1134,'mec_start_date','2020-10-27'),(5963,1134,'mec_start_time_hour','8'),(5964,1134,'mec_start_time_minutes','0'),(5965,1134,'mec_start_time_ampm','AM'),(5966,1134,'mec_start_day_seconds','28800'),(5967,1134,'mec_end_date','2020-10-27'),(5968,1134,'mec_end_time_hour','6'),(5969,1134,'mec_end_time_minutes','0'),(5970,1134,'mec_end_time_ampm','PM'),(5971,1134,'mec_end_day_seconds','64800'),(5972,1134,'mec_repeat_status','1'),(5973,1134,'mec_repeat_type','monthly'),(5974,1134,'mec_repeat_interval',NULL),(5975,1134,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(5976,1134,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-27\";s:4:\"hour\";i:8;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-27\";s:4:\"hour\";i:6;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(5977,1134,'mec_color','00a0d2'),(5978,1135,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5979,1135,'mec_location_id','1'),(5980,1135,'mec_dont_show_map','0'),(5981,1135,'mec_organizer_id','1'),(5982,1135,'mec_allday','0'),(5983,1135,'mec_hide_time','0'),(5984,1135,'mec_hide_end_time','0'),(5985,1135,'mec_start_date','2020-08-20'),(5986,1135,'mec_start_time_hour','8'),(5987,1135,'mec_start_time_minutes','0'),(5988,1135,'mec_start_time_ampm','AM'),(5989,1135,'mec_start_day_seconds','28800'),(5990,1135,'mec_end_date','2020-08-21'),(5991,1135,'mec_end_time_hour','6'),(5992,1135,'mec_end_time_minutes','0'),(5993,1135,'mec_end_time_ampm','PM'),(5994,1135,'mec_end_day_seconds','64800'),(5995,1135,'mec_repeat_status','1'),(5996,1135,'mec_repeat_type','yearly'),(5997,1135,'mec_repeat_interval',NULL),(5998,1135,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(5999,1135,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-08-20\";s:4:\"hour\";i:8;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-08-21\";s:4:\"hour\";i:6;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6000,1135,'mec_color','fdd700'),(6001,1136,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6002,1136,'label',''),(6003,1136,'category',''),(6004,1136,'location',''),(6005,1136,'organizer',''),(6006,1136,'tag',''),(6007,1136,'author',''),(6008,1136,'skin','full_calendar'),(6009,1136,'show_past_events','1'),(6010,1136,'sk-options','a:1:{s:13:\"full_calendar\";a:6:{s:15:\"start_date_type\";s:5:\"today\";s:12:\"default_view\";s:4:\"list\";s:7:\"monthly\";i:1;s:6:\"weekly\";i:1;s:5:\"daily\";i:1;s:4:\"list\";i:1;}}'),(6011,1136,'sf-options','a:1:{s:13:\"full_calendar\";a:2:{s:12:\"month_filter\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6012,1136,'sf_status','1'),(6013,1137,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6014,1137,'label',''),(6015,1137,'category',''),(6016,1137,'location',''),(6017,1137,'organizer',''),(6018,1137,'tag',''),(6019,1137,'author',''),(6020,1137,'skin','monthly_view'),(5906,1131,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(5907,1131,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-23\";s:4:\"hour\";i:8;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-25\";s:4:\"hour\";i:6;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(4912,972,'_weforms_view_count','209'),(4913,998,'_elementor_data','[{\"id\":\"e50ad42\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f96e2a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242c5a7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35266fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d65fa18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68ba931\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Lantern Logos\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd5833b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"8ae74c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8808183\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"442cfd6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Your one stop shop for all Lantern branding and media.<\\/h4><p style=\\\"text-align: center;\\\">If you feel something is missing, please use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request an addition.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b86fdd0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d0c83e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"caption_source\":\"attachment\",\"link_to\":\"file\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7652a2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/lantern_transparent.png\",\"id\":1009},\"align\":\"center\",\"caption_source\":\"attachment\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f48781e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/lantern_LOGO_Square-2.jpg\",\"id\":1010},\"caption_source\":\"attachment\",\"link_to\":\"file\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"081bbe0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signs and Business Cards\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b1a1f50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"73b2899\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"969ab91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><strong>Business Card Vendor:<\\/strong><\\/div><div>Omega Graphics<\\/div><div>293 Brookdale Street, Kannapolis, NC 28083<\\/div><div>Phone: (704) 933-5715<\\/div><div>\\u00a0<\\/div><div>Reference Business Card<br \\/>2 Sided, Full Color, 14pt UV Coated<\\/div><div>\\u00a0<\\/div><div>Online Vendor:<\\/div><p><a href=\\\"https:\\/\\/www.houseofmagnets.com\\/\\\">https:\\/\\/www.houseofmagnets.com\\/<\\/a><\\/p><p>Great for:<\\/p><ul><li>Business Cards<\\/li><li>Magnets<\\/li><li>Apparel<\\/li><li>Signs<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0fd31d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6e054ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/LANTERN_BC_cmp.jpg\",\"id\":906},\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2b9bc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"90752bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"528f302\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><strong>Sign Vendor:<\\/strong><\\/div><div>Omega Graphics<\\/div><div>293 Brookdale Street, Kannapolis, NC 28083<\\/div><div>Phone: (704) 933-5715<\\/div><div>\\u00a0<\\/div><div>Reference Information<\\/div>\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79f4e17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4f3ab8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Yard-signs-All-8-17-08.jpg\",\"id\":910},\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cbbdd1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"fb89be7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1a702\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7d1ee4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Email Signature\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"af82c03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #0b5394;\\\"><b>John Smith\\u00a0<\\/b>\\n<\\/span><\\/div>\\n<div>\\n<div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #0b5394;\\\"><b>Lantern Realty &amp; Development<\\/b><\\/span><\\/div>\\n<div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #000000;\\\"><i>Licensed Realtor<\\/i>\\n<\\/span><\\/div>\\n<div><span style=\\\"font-family: garamond, times new roman, serif;\\\"><span style=\\\"color: #000000;\\\"><b>Phone: (555) 555-5555<\\/b>\\u00a0<\\/span>\\n<\\/span><\\/div>\\n<\\/div>\\n<div><span style=\\\"font-family: garamond, times new roman, serif;\\\"><a href=\\\"https:\\/\\/lantern-realty.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=https:\\/\\/lantern-realty.com\\/&amp;source=gmail&amp;ust=1602518659720000&amp;usg=AFQjCNHqdvTLiGoDEvr-Znne2j_FeROb2Q\\\">Let Us Guide You Home<\\/a>\\n<\\/span><\\/div>\\n<div><img class=\\\"CToWUd\\\" src=\\\"https:\\/\\/ci3.googleusercontent.com\\/proxy\\/74nNqDIzJuR_wWjaTkJvrx5eip9Ni17jksYQSrMkwfZfpbCBw9NkOLtcpopvST_U1bIZr7COpojscD2oXuQPL5y-vPib9iU40jAZT3zGFBKsC7_lBAFnNsSboEgRzyXI7ZCSUEGc2besDA5DjHmzGSwVqgD0GnIBkw=s0-d-e1-ft#https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-1-e1535144736200-1024x388.jpg\\\" width=\\\"200\\\" height=\\\"75\\\" \\/><\\/div>\\n<div><i><b><span style=\\\"color: #0b5394;\\\"><span style=\\\"font-family: garamond, times new roman, serif;\\\">Proudly Servi<\\/span><span style=\\\"font-family: garamond, times new roman, serif;\\\">ng Cabarrus, Rowan, Stanly, Iredell, Mecklenburg and surrounding\\u00a0areas<\\/span><\\/span><\\/b><\\/i><\\/div>\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ce178e\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5905,1131,'mec_repeat_interval',NULL),(5904,1131,'mec_repeat_type',''),(5903,1131,'mec_repeat_status','0'),(5890,1131,'mec_allday','0'),(5891,1131,'mec_hide_time','0'),(5892,1131,'mec_hide_end_time','0'),(5893,1131,'mec_start_date','2020-10-23'),(5894,1131,'mec_start_time_hour','8'),(5895,1131,'mec_start_time_minutes','0'),(5896,1131,'mec_start_time_ampm','AM'),(5897,1131,'mec_start_day_seconds','28800'),(5898,1131,'mec_end_date','2020-10-25'),(5899,1131,'mec_end_time_hour','6'),(5900,1131,'mec_end_time_minutes','0'),(5901,1131,'mec_end_time_ampm','PM'),(5902,1131,'mec_end_day_seconds','64800'),(4928,1009,'_wp_attached_file','2020/10/lantern_transparent.png'),(4929,1009,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2174;s:6:\"height\";i:776;s:4:\"file\";s:31:\"2020/10/lantern_transparent.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-300x107.png\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"lantern_transparent-1024x366.png\";s:5:\"width\";i:1024;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-768x274.png\";s:5:\"width\";i:768;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"lantern_transparent-1536x548.png\";s:5:\"width\";i:1536;s:6:\"height\";i:548;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"lantern_transparent-2048x731.png\";s:5:\"width\";i:2048;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:32:\"lantern_transparent-1170x776.png\";s:5:\"width\";i:1170;s:6:\"height\";i:776;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:32:\"lantern_transparent-1681x600.png\";s:5:\"width\";i:1681;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:30:\"lantern_transparent-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-496x177.png\";s:5:\"width\";i:496;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5886,1131,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5887,1131,'mec_location_id','1'),(5888,1131,'mec_dont_show_map','0'),(5889,1131,'mec_organizer_id','1'),(4930,1010,'_wp_attached_file','2020/10/lantern_LOGO_Square-2-e1602507710568.jpg'),(4931,1010,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1597;s:6:\"height\";i:1274;s:4:\"file\";s:48:\"2020/10/lantern_LOGO_Square-2-e1602507710568.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"lantern_LOGO_Square-2-e1602507710568-1024x817.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:817;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-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:48:\"lantern_LOGO_Square-2-e1602507710568-768x613.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"lantern_LOGO_Square-2-e1602507710568-1536x1225.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:49:\"lantern_LOGO_Square-2-e1602507710568-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-752x600.jpg\";s:5:\"width\";i:752;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:47:\"lantern_LOGO_Square-2-e1602507710568-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-496x396.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"faraz ali\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1526127625\";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:{}}}'),(4941,1013,'_wp_attached_file','2020/10/Lantern-Logo.jpeg'),(4942,1013,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:740;s:4:\"file\";s:25:\"2020/10/Lantern-Logo.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-300x173.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Lantern-Logo-1024x592.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-768x444.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:26:\"Lantern-Logo-1170x740.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:740;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"Lantern-Logo-1038x600.jpeg\";s:5:\"width\";i:1038;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Lantern-Logo-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-496x287.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"faraz ali\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1526127625\";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:{}}}'),(5885,602,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.90102212010753390813988517038524150848388671875;s:5:\"bytes\";i:73474;s:11:\"size_before\";i:742085;s:10:\"size_after\";i:668611;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:5930;s:11:\"size_before\";i:63374;s:10:\"size_after\";i:57444;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2091;s:11:\"size_before\";i:21975;s:10:\"size_after\";i:19884;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1990;s:11:\"size_before\";i:20834;s:10:\"size_after\";i:18844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6734;s:11:\"size_before\";i:69657;s:10:\"size_after\";i:62923;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:7179;s:11:\"size_before\";i:73821;s:10:\"size_after\";i:66642;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9515;s:11:\"size_before\";i:91982;s:10:\"size_after\";i:82467;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12149;s:11:\"size_before\";i:118033;s:10:\"size_after\";i:105884;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:8241;s:11:\"size_before\";i:83582;s:10:\"size_after\";i:75341;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1665;s:11:\"size_before\";i:16772;s:10:\"size_after\";i:15107;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7645;s:11:\"size_before\";i:80282;s:10:\"size_after\";i:72637;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:10335;s:11:\"size_before\";i:101773;s:10:\"size_after\";i:91438;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5811,192,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.95926673863322520219298894517123699188232421875;s:5:\"bytes\";i:188730;s:11:\"size_before\";i:2106534;s:10:\"size_after\";i:1917804;s:4:\"time\";d:0.5;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2573;s:11:\"size_before\";i:22003;s:10:\"size_after\";i:19430;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3274;s:11:\"size_before\";i:27259;s:10:\"size_after\";i:23985;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12743;s:11:\"size_before\";i:125297;s:10:\"size_after\";i:112554;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:19562;s:11:\"size_before\";i:196579;s:10:\"size_after\";i:177017;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1156;s:11:\"size_before\";i:9007;s:10:\"size_after\";i:7851;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:23509;s:11:\"size_before\";i:261453;s:10:\"size_after\";i:237944;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:7672;s:11:\"size_before\";i:75307;s:10:\"size_after\";i:67635;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7868;s:11:\"size_before\";i:76835;s:10:\"size_after\";i:68967;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12449;s:11:\"size_before\";i:134060;s:10:\"size_after\";i:121611;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:17750;s:11:\"size_before\";i:188726;s:10:\"size_after\";i:170976;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:237944;s:10:\"size_after\";i:237944;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:43961;s:11:\"size_before\";i:413146;s:10:\"size_after\";i:369185;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7820;s:11:\"size_before\";i:84444;s:10:\"size_after\";i:76624;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2029;s:11:\"size_before\";i:17167;s:10:\"size_after\";i:15138;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4165;s:11:\"size_before\";i:35156;s:10:\"size_after\";i:30991;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:22199;s:11:\"size_before\";i:202151;s:10:\"size_after\";i:179952;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4951,1010,'_edit_lock','1602507719:1'),(4952,1010,'_wp_attachment_backup_sizes','a:13:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1598;s:6:\"height\";i:1278;s:4:\"file\";s:25:\"lantern_LOGO_Square-2.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:34:\"lantern_LOGO_Square-2-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:35:\"lantern_LOGO_Square-2-1536x1228.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-gallery-orig\";a:4:{s:4:\"file\";s:34:\"lantern_LOGO_Square-2-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-1-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-4-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-6-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"houzez-variable-gallery-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-750x600.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-map-info-orig\";a:4:{s:4:\"file\";s:32:\"lantern_LOGO_Square-2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-496x397.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(5884,599,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.54686629094000949180554016493260860443115234375;s:5:\"bytes\";i:622607;s:11:\"size_before\";i:6521585;s:10:\"size_after\";i:5898978;s:4:\"time\";d:1.670000000000000373034936274052597582340240478515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:6050;s:11:\"size_before\";i:62469;s:10:\"size_after\";i:56419;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:55135;s:11:\"size_before\";i:599281;s:10:\"size_after\";i:544146;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1725;s:11:\"size_before\";i:18947;s:10:\"size_after\";i:17222;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:36277;s:11:\"size_before\";i:377645;s:10:\"size_after\";i:341368;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:112744;s:11:\"size_before\";i:1200298;s:10:\"size_after\";i:1087554;s:4:\"time\";d:0.61999999999999999555910790149937383830547332763671875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:184599;s:11:\"size_before\";i:1896018;s:10:\"size_after\";i:1711419;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1685;s:11:\"size_before\";i:18512;s:10:\"size_after\";i:16827;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:39061;s:11:\"size_before\";i:413417;s:10:\"size_after\";i:374356;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:6714;s:11:\"size_before\";i:70126;s:10:\"size_after\";i:63412;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7310;s:11:\"size_before\";i:74409;s:10:\"size_after\";i:67099;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:13099;s:11:\"size_before\";i:131488;s:10:\"size_after\";i:118389;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:21924;s:11:\"size_before\";i:223710;s:10:\"size_after\";i:201786;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:47360;s:11:\"size_before\";i:507329;s:10:\"size_after\";i:459969;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:45604;s:11:\"size_before\";i:486439;s:10:\"size_after\";i:440835;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:8306;s:11:\"size_before\";i:84456;s:10:\"size_after\";i:76150;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1331;s:11:\"size_before\";i:14336;s:10:\"size_after\";i:13005;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8408;s:11:\"size_before\";i:87001;s:10:\"size_after\";i:78593;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:14529;s:11:\"size_before\";i:148122;s:10:\"size_after\";i:133593;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:10746;s:11:\"size_before\";i:107582;s:10:\"size_after\";i:96836;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4991,1000,'_elementor_edit_mode','builder'),(4992,1000,'_elementor_template_type','wp-page'),(4993,1000,'_elementor_version','3.0.9'),(4994,1000,'_elementor_data','[{\"id\":\"34074bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"48b0487\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f12da51\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c4485cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fd67c59\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b60c62\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Documents\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"de08fa1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4ec0e57\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1fee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ed4d7e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0cb397a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Browse helpful and commonly used documents.<\\/p><p style=\\\"text-align: center;\\\">[wpdocs breadcrumb=\\\"true\\\" view=\\\"list\\\"]<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7679bf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">If you have ideas for useful additions, please use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">website change request<\\/a> link to send in your recommendation.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2de2f39\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Website Change Request\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-laptop-code\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0ccb806\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"700b04f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6166b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fd666bd\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5883,596,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.669550121605961834347908734343945980072021484375;s:5:\"bytes\";i:102126;s:11:\"size_before\";i:1177985;s:10:\"size_after\";i:1075859;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4261;s:11:\"size_before\";i:49145;s:10:\"size_after\";i:44884;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1592;s:11:\"size_before\";i:17855;s:10:\"size_after\";i:16263;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1545;s:11:\"size_before\";i:15141;s:10:\"size_after\";i:13596;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:15314;s:11:\"size_before\";i:174847;s:10:\"size_after\";i:159533;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:5427;s:11:\"size_before\";i:61778;s:10:\"size_after\";i:56351;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5761;s:11:\"size_before\";i:65171;s:10:\"size_after\";i:59410;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8079;s:11:\"size_before\";i:96835;s:10:\"size_after\";i:88756;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:10426;s:11:\"size_before\";i:122041;s:10:\"size_after\";i:111615;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:15058;s:11:\"size_before\";i:174352;s:10:\"size_after\";i:159294;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6683;s:11:\"size_before\";i:78195;s:10:\"size_after\";i:71512;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1194;s:11:\"size_before\";i:13150;s:10:\"size_after\";i:11956;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8597;s:11:\"size_before\";i:96538;s:10:\"size_after\";i:87941;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:9444;s:11:\"size_before\";i:114064;s:10:\"size_after\";i:104620;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8745;s:11:\"size_before\";i:98873;s:10:\"size_after\";i:90128;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5866,542,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.28304841167523431266772604431025683879852294921875;s:5:\"bytes\";i:204842;s:11:\"size_before\";i:2812586;s:10:\"size_after\";i:2607744;s:4:\"time\";d:0.80000000000000015543122344752191565930843353271484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1662;s:11:\"size_before\";i:17338;s:10:\"size_after\";i:15676;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4843;s:11:\"size_before\";i:56877;s:10:\"size_after\";i:52034;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:20034;s:11:\"size_before\";i:311856;s:10:\"size_after\";i:291822;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:35688;s:11:\"size_before\";i:538554;s:10:\"size_after\";i:502866;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15676;s:10:\"size_after\";i:15676;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:25443;s:11:\"size_before\";i:337413;s:10:\"size_after\";i:311970;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4862;s:11:\"size_before\";i:62033;s:10:\"size_after\";i:57171;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:5272;s:11:\"size_before\";i:65593;s:10:\"size_after\";i:60321;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:8261;s:11:\"size_before\";i:111577;s:10:\"size_after\";i:103316;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:13468;s:11:\"size_before\";i:184056;s:10:\"size_after\";i:170588;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:30906;s:11:\"size_before\";i:429913;s:10:\"size_after\";i:399007;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:30946;s:11:\"size_before\";i:387713;s:10:\"size_after\";i:356767;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5994;s:11:\"size_before\";i:74113;s:10:\"size_after\";i:68119;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1296;s:11:\"size_before\";i:13474;s:10:\"size_after\";i:12178;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6021;s:11:\"size_before\";i:74171;s:10:\"size_after\";i:68150;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:10146;s:11:\"size_before\";i:132229;s:10:\"size_after\";i:122083;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5862,532,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.5776593166949357538442200166173279285430908203125;s:5:\"bytes\";i:3894;s:11:\"size_before\";i:45397;s:10:\"size_after\";i:41503;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1424;s:11:\"size_before\";i:16821;s:10:\"size_after\";i:15397;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1340;s:11:\"size_before\";i:15950;s:10:\"size_after\";i:14610;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1130;s:11:\"size_before\";i:12626;s:10:\"size_after\";i:11496;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5863,536,'wp-smush-animated','1'),(5864,536,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.021239416495303191367849393600408802740275859832763671875;s:5:\"bytes\";i:22;s:11:\"size_before\";i:103581;s:10:\"size_after\";i:103559;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11068;s:10:\"size_after\";i:11068;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.040000000000000000832667268468867405317723751068115234375;s:5:\"bytes\";i:12;s:11:\"size_before\";i:26971;s:10:\"size_after\";i:26959;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.040000000000000000832667268468867405317723751068115234375;s:5:\"bytes\";i:4;s:11:\"size_before\";i:9496;s:10:\"size_after\";i:9492;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.0299999999999999988897769753748434595763683319091796875;s:5:\"bytes\";i:6;s:11:\"size_before\";i:23016;s:10:\"size_after\";i:23010;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24270;s:10:\"size_after\";i:24270;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8760;s:10:\"size_after\";i:8760;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5882,592,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.6864342839897386028269465896300971508026123046875;s:5:\"bytes\";i:207234;s:11:\"size_before\";i:2385720;s:10:\"size_after\";i:2178486;s:4:\"time\";d:0.62000000000000010658141036401502788066864013671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:4703;s:11:\"size_before\";i:50537;s:10:\"size_after\";i:45834;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:36124;s:11:\"size_before\";i:395900;s:10:\"size_after\";i:359776;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1739;s:11:\"size_before\";i:17974;s:10:\"size_after\";i:16235;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:29013;s:11:\"size_before\";i:328522;s:10:\"size_after\";i:299509;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1562;s:11:\"size_before\";i:15280;s:10:\"size_after\";i:13718;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:17236;s:11:\"size_before\";i:235171;s:10:\"size_after\";i:217935;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5374;s:11:\"size_before\";i:63966;s:10:\"size_after\";i:58592;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:5786;s:11:\"size_before\";i:67598;s:10:\"size_after\";i:61812;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:9314;s:11:\"size_before\";i:110143;s:10:\"size_after\";i:100829;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:15245;s:11:\"size_before\";i:170964;s:10:\"size_after\";i:155719;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:25640;s:11:\"size_before\";i:292603;s:10:\"size_after\";i:266963;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:21191;s:11:\"size_before\";i:243834;s:10:\"size_after\";i:222643;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6757;s:11:\"size_before\";i:77686;s:10:\"size_after\";i:70929;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1264;s:11:\"size_before\";i:13476;s:10:\"size_after\";i:12212;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:7925;s:11:\"size_before\";i:89135;s:10:\"size_after\";i:81210;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9982;s:11:\"size_before\";i:115336;s:10:\"size_after\";i:105354;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8379;s:11:\"size_before\";i:97595;s:10:\"size_after\";i:89216;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5867,543,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.2318299960344205601359135471284389495849609375;s:5:\"bytes\";i:309157;s:11:\"size_before\";i:3348816;s:10:\"size_after\";i:3039659;s:4:\"time\";d:0.74000000000000010214051826551440171897411346435546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1924;s:11:\"size_before\";i:18857;s:10:\"size_after\";i:16933;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6316;s:11:\"size_before\";i:60722;s:10:\"size_after\";i:54406;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:39658;s:11:\"size_before\";i:399030;s:10:\"size_after\";i:359372;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:61235;s:11:\"size_before\";i:631166;s:10:\"size_after\";i:569931;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1847;s:11:\"size_before\";i:17846;s:10:\"size_after\";i:15999;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:33916;s:11:\"size_before\";i:409167;s:10:\"size_after\";i:375251;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7145;s:11:\"size_before\";i:70179;s:10:\"size_after\";i:63034;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7565;s:11:\"size_before\";i:73701;s:10:\"size_after\";i:66136;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13002;s:11:\"size_before\";i:131200;s:10:\"size_after\";i:118198;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:20162;s:11:\"size_before\";i:221403;s:10:\"size_after\";i:201241;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:44461;s:11:\"size_before\";i:518479;s:10:\"size_after\";i:474018;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:37483;s:11:\"size_before\";i:465390;s:10:\"size_after\";i:427907;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:8770;s:11:\"size_before\";i:83700;s:10:\"size_after\";i:74930;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1547;s:11:\"size_before\";i:14469;s:10:\"size_after\";i:12922;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:9171;s:11:\"size_before\";i:87423;s:10:\"size_after\";i:78252;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:14955;s:11:\"size_before\";i:146084;s:10:\"size_after\";i:131129;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5868,547,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5869,547,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.2883155203771448071847771643660962581634521484375;s:5:\"bytes\";i:328635;s:11:\"size_before\";i:3538155;s:10:\"size_after\";i:3209520;s:4:\"time\";d:2.609999999999999875655021241982467472553253173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2345;s:11:\"size_before\";i:23605;s:10:\"size_after\";i:21260;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6429;s:11:\"size_before\";i:66615;s:10:\"size_after\";i:60186;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:32144;s:11:\"size_before\";i:351217;s:10:\"size_after\";i:319073;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:53350;s:11:\"size_before\";i:581330;s:10:\"size_after\";i:527980;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2178;s:11:\"size_before\";i:20703;s:10:\"size_after\";i:18525;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:41143;s:11:\"size_before\";i:445155;s:10:\"size_after\";i:404012;s:4:\"time\";d:0.95999999999999996447286321199499070644378662109375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:7778;s:11:\"size_before\";i:83536;s:10:\"size_after\";i:75758;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:8612;s:11:\"size_before\";i:88633;s:10:\"size_after\";i:80021;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:13606;s:11:\"size_before\";i:148968;s:10:\"size_after\";i:135362;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:22327;s:11:\"size_before\";i:244081;s:10:\"size_after\";i:221754;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:51196;s:11:\"size_before\";i:558730;s:10:\"size_after\";i:507534;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:48777;s:11:\"size_before\";i:513935;s:10:\"size_after\";i:465158;s:4:\"time\";d:0.7199999999999999733546474089962430298328399658203125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.25;s:5:\"bytes\";i:9297;s:11:\"size_before\";i:100507;s:10:\"size_after\";i:91210;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1929;s:11:\"size_before\";i:18354;s:10:\"size_after\";i:16425;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8384;s:11:\"size_before\";i:86785;s:10:\"size_after\";i:78401;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:19140;s:11:\"size_before\";i:206001;s:10:\"size_after\";i:186861;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(5881,591,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.84518569769697560190024887560866773128509521484375;s:5:\"bytes\";i:285510;s:11:\"size_before\";i:3639302;s:10:\"size_after\";i:3353792;s:4:\"time\";d:0.7600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6572;s:11:\"size_before\";i:74670;s:10:\"size_after\";i:68098;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:49994;s:11:\"size_before\";i:642366;s:10:\"size_after\";i:592372;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.75;s:5:\"bytes\";i:2153;s:11:\"size_before\";i:22092;s:10:\"size_after\";i:19939;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:29948;s:11:\"size_before\";i:392563;s:10:\"size_after\";i:362615;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19939;s:10:\"size_after\";i:19939;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:34735;s:11:\"size_before\";i:429691;s:10:\"size_after\";i:394956;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:6796;s:11:\"size_before\";i:81683;s:10:\"size_after\";i:74887;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7384;s:11:\"size_before\";i:86314;s:10:\"size_after\";i:78930;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:11448;s:11:\"size_before\";i:147106;s:10:\"size_after\";i:135658;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:18355;s:11:\"size_before\";i:243140;s:10:\"size_after\";i:224785;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:42512;s:11:\"size_before\";i:527851;s:10:\"size_after\";i:485339;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:41183;s:11:\"size_before\";i:475295;s:10:\"size_after\";i:434112;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:8310;s:11:\"size_before\";i:97233;s:10:\"size_after\";i:88923;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1600;s:11:\"size_before\";i:16609;s:10:\"size_after\";i:15009;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:88923;s:10:\"size_after\";i:88923;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:13982;s:11:\"size_before\";i:170812;s:10:\"size_after\";i:156830;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:10538;s:11:\"size_before\";i:123015;s:10:\"size_after\";i:112477;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5880,589,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9268740268764599221640310133807361125946044921875;s:5:\"bytes\";i:514005;s:11:\"size_before\";i:5177914;s:10:\"size_after\";i:4663909;s:4:\"time\";d:1.3900000000000003463895836830488406121730804443359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5027;s:11:\"size_before\";i:53428;s:10:\"size_after\";i:48401;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:44074;s:11:\"size_before\";i:459354;s:10:\"size_after\";i:415280;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1575;s:11:\"size_before\";i:17136;s:10:\"size_after\";i:15561;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:27291;s:11:\"size_before\";i:289089;s:10:\"size_after\";i:261798;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:96171;s:11:\"size_before\";i:925774;s:10:\"size_after\";i:829603;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:165324;s:11:\"size_before\";i:1510927;s:10:\"size_after\";i:1345603;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1577;s:11:\"size_before\";i:16942;s:10:\"size_after\";i:15365;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:29489;s:11:\"size_before\";i:330937;s:10:\"size_after\";i:301448;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5364;s:11:\"size_before\";i:60063;s:10:\"size_after\";i:54699;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5773;s:11:\"size_before\";i:63466;s:10:\"size_after\";i:57693;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:9566;s:11:\"size_before\";i:107746;s:10:\"size_after\";i:98180;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:15710;s:11:\"size_before\";i:180367;s:10:\"size_after\";i:164657;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:36249;s:11:\"size_before\";i:399039;s:10:\"size_after\";i:362790;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:36195;s:11:\"size_before\";i:396122;s:10:\"size_after\";i:359927;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:6658;s:11:\"size_before\";i:71011;s:10:\"size_after\";i:64353;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1188;s:11:\"size_before\";i:12955;s:10:\"size_after\";i:11767;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6781;s:11:\"size_before\";i:72356;s:10:\"size_after\";i:65575;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:11520;s:11:\"size_before\";i:121655;s:10:\"size_after\";i:110135;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8473;s:11:\"size_before\";i:89547;s:10:\"size_after\";i:81074;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5879,580,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9584852;s:10:\"size_after\";i:9584852;s:4:\"time\";d:7.28999999999999914734871708787977695465087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:84237;s:10:\"size_after\";i:84237;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:860524;s:10:\"size_after\";i:860524;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26800;s:10:\"size_after\";i:26800;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:500992;s:10:\"size_after\";i:500992;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1780618;s:10:\"size_after\";i:1780618;s:4:\"time\";d:1.0800000000000000710542735760100185871124267578125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2914165;s:10:\"size_after\";i:2914165;s:4:\"time\";d:2.29000000000000003552713678800500929355621337890625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23783;s:10:\"size_after\";i:23783;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:632822;s:10:\"size_after\";i:632822;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101862;s:10:\"size_after\";i:101862;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:109211;s:10:\"size_after\";i:109211;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:190125;s:10:\"size_after\";i:190125;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:331088;s:10:\"size_after\";i:331088;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:775484;s:10:\"size_after\";i:775484;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:759408;s:10:\"size_after\";i:759408;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:127671;s:10:\"size_after\";i:127671;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19614;s:10:\"size_after\";i:19614;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:112822;s:10:\"size_after\";i:112822;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:233626;s:10:\"size_after\";i:233626;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}}}'),(5877,574,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.493733392850980834509755368344485759735107421875;s:5:\"bytes\";i:206504;s:11:\"size_before\";i:1796666;s:10:\"size_after\";i:1590162;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7820;s:11:\"size_before\";i:71702;s:10:\"size_after\";i:63882;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:2680;s:11:\"size_before\";i:23179;s:10:\"size_after\";i:20499;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2557;s:11:\"size_before\";i:22017;s:10:\"size_after\";i:19460;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:40608;s:11:\"size_before\";i:339307;s:10:\"size_after\";i:298699;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:9627;s:11:\"size_before\";i:87785;s:10:\"size_after\";i:78158;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:10090;s:11:\"size_before\";i:91393;s:10:\"size_after\";i:81303;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:17312;s:11:\"size_before\";i:159260;s:10:\"size_after\";i:141948;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:33318;s:11:\"size_before\";i:267914;s:10:\"size_after\";i:234596;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:40169;s:11:\"size_before\";i:343647;s:10:\"size_after\";i:303478;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:10736;s:11:\"size_before\";i:98439;s:10:\"size_after\";i:87703;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2262;s:11:\"size_before\";i:18618;s:10:\"size_after\";i:16356;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:10183;s:11:\"size_before\";i:93059;s:10:\"size_after\";i:82876;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:19142;s:11:\"size_before\";i:180346;s:10:\"size_after\";i:161204;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5878,577,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.58889116502297245148156434879638254642486572265625;s:5:\"bytes\";i:64830;s:11:\"size_before\";i:854275;s:10:\"size_after\";i:789445;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4164;s:11:\"size_before\";i:57561;s:10:\"size_after\";i:53397;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1642;s:11:\"size_before\";i:20229;s:10:\"size_after\";i:18587;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1371;s:11:\"size_before\";i:16922;s:10:\"size_after\";i:15551;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5603;s:11:\"size_before\";i:73864;s:10:\"size_after\";i:68261;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:5947;s:11:\"size_before\";i:78137;s:10:\"size_after\";i:72190;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:9468;s:11:\"size_before\";i:117703;s:10:\"size_after\";i:108235;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:10814;s:11:\"size_before\";i:146372;s:10:\"size_after\";i:135558;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6773;s:11:\"size_before\";i:90010;s:10:\"size_after\";i:83237;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1279;s:11:\"size_before\";i:15229;s:10:\"size_after\";i:13950;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:7958;s:11:\"size_before\";i:106509;s:10:\"size_after\";i:98551;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:9811;s:11:\"size_before\";i:131739;s:10:\"size_after\";i:121928;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5875,566,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.3545077121430519895284305675886571407318115234375;s:5:\"bytes\";i:45492;s:11:\"size_before\";i:486311;s:10:\"size_after\";i:440819;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1762;s:11:\"size_before\";i:17160;s:10:\"size_after\";i:15398;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:4934;s:11:\"size_before\";i:50442;s:10:\"size_after\";i:45508;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1649;s:11:\"size_before\";i:16891;s:10:\"size_after\";i:15242;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:5690;s:11:\"size_before\";i:54848;s:10:\"size_after\";i:49158;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5778;s:11:\"size_before\";i:56934;s:10:\"size_after\";i:51156;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:4876;s:11:\"size_before\";i:65420;s:10:\"size_after\";i:60544;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:6085;s:11:\"size_before\";i:78896;s:10:\"size_after\";i:72811;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:6618;s:11:\"size_before\";i:65508;s:10:\"size_after\";i:58890;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1309;s:11:\"size_before\";i:13127;s:10:\"size_after\";i:11818;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6791;s:11:\"size_before\";i:67085;s:10:\"size_after\";i:60294;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5876,572,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.479814763715761927187486435286700725555419921875;s:5:\"bytes\";i:218381;s:11:\"size_before\";i:2083825;s:10:\"size_after\";i:1865444;s:4:\"time\";d:0.5700000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7170;s:11:\"size_before\";i:72437;s:10:\"size_after\";i:65267;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:2567;s:11:\"size_before\";i:23602;s:10:\"size_after\";i:21035;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:37421;s:11:\"size_before\";i:336425;s:10:\"size_after\";i:299004;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2355;s:11:\"size_before\";i:22201;s:10:\"size_after\";i:19846;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:25933;s:11:\"size_before\";i:246182;s:10:\"size_after\";i:220249;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7437;s:11:\"size_before\";i:75107;s:10:\"size_after\";i:67670;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7942;s:11:\"size_before\";i:79965;s:10:\"size_after\";i:72023;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:12692;s:11:\"size_before\";i:121332;s:10:\"size_after\";i:108640;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:20557;s:11:\"size_before\";i:182555;s:10:\"size_after\";i:161998;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:31789;s:11:\"size_before\";i:307316;s:10:\"size_after\";i:275527;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:26261;s:11:\"size_before\";i:252419;s:10:\"size_after\";i:226158;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:9405;s:11:\"size_before\";i:95368;s:10:\"size_after\";i:85963;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1972;s:11:\"size_before\";i:17699;s:10:\"size_after\";i:15727;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9685;s:11:\"size_before\";i:100336;s:10:\"size_after\";i:90651;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:15195;s:11:\"size_before\";i:150881;s:10:\"size_after\";i:135686;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5870,456,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.694845287765641916877257244777865707874298095703125;s:5:\"bytes\";i:8342;s:11:\"size_before\";i:225774;s:10:\"size_after\";i:217432;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15909;s:10:\"size_after\";i:15909;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27565;s:10:\"size_after\";i:27565;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10431;s:10:\"size_after\";i:10431;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45546;s:10:\"size_after\";i:45546;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:36657;s:10:\"size_after\";i:36657;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34810;s:10:\"size_after\";i:34810;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2158;s:11:\"size_before\";i:14861;s:10:\"size_after\";i:12703;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:6184;s:11:\"size_before\";i:39995;s:10:\"size_after\";i:33811;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5871,556,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5872,556,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.2557013418119513659121366799809038639068603515625;s:5:\"bytes\";i:284884;s:11:\"size_before\";i:2777811;s:10:\"size_after\";i:2492927;s:4:\"time\";d:1.37000000000000010658141036401502788066864013671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1936;s:11:\"size_before\";i:19165;s:10:\"size_after\";i:17229;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:5684;s:11:\"size_before\";i:59087;s:10:\"size_after\";i:53403;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:31044;s:11:\"size_before\";i:302306;s:10:\"size_after\";i:271262;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:51575;s:11:\"size_before\";i:496622;s:10:\"size_after\";i:445047;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17229;s:10:\"size_after\";i:17229;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:35707;s:11:\"size_before\";i:337890;s:10:\"size_after\";i:302183;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:6272;s:11:\"size_before\";i:65129;s:10:\"size_after\";i:58857;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:6681;s:11:\"size_before\";i:68760;s:10:\"size_after\";i:62079;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11412;s:11:\"size_before\";i:114349;s:10:\"size_after\";i:102937;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:18882;s:11:\"size_before\";i:186913;s:10:\"size_after\";i:168031;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:43553;s:11:\"size_before\";i:412784;s:10:\"size_after\";i:369231;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:41796;s:11:\"size_before\";i:393699;s:10:\"size_after\";i:351903;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7443;s:11:\"size_before\";i:76866;s:10:\"size_after\";i:69423;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1493;s:11:\"size_before\";i:14859;s:10:\"size_after\";i:13366;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:7561;s:11:\"size_before\";i:76773;s:10:\"size_after\";i:69212;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:13845;s:11:\"size_before\";i:135380;s:10:\"size_after\";i:121535;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(9170,1462,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5873,561,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5874,561,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.908499525261913021267901058308780193328857421875;s:5:\"bytes\";i:245762;s:11:\"size_before\";i:2480315;s:10:\"size_after\";i:2234553;s:4:\"time\";d:1.100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1322;s:11:\"size_before\";i:15536;s:10:\"size_after\";i:14214;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:4358;s:11:\"size_before\";i:47179;s:10:\"size_after\";i:42821;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26985;s:11:\"size_before\";i:255786;s:10:\"size_after\";i:228801;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:44326;s:11:\"size_before\";i:434250;s:10:\"size_after\";i:389924;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1283;s:11:\"size_before\";i:14340;s:10:\"size_after\";i:13057;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:31087;s:11:\"size_before\";i:313445;s:10:\"size_after\";i:282358;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5027;s:11:\"size_before\";i:55227;s:10:\"size_after\";i:50200;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:5436;s:11:\"size_before\";i:58396;s:10:\"size_after\";i:52960;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:9400;s:11:\"size_before\";i:97543;s:10:\"size_after\";i:88143;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:16363;s:11:\"size_before\";i:163106;s:10:\"size_after\";i:146743;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:37812;s:11:\"size_before\";i:390391;s:10:\"size_after\";i:352579;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10;s:5:\"bytes\";i:38168;s:11:\"size_before\";i:381842;s:10:\"size_after\";i:343674;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:6073;s:11:\"size_before\";i:64345;s:10:\"size_after\";i:58272;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1169;s:11:\"size_before\";i:12147;s:10:\"size_after\";i:10978;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5688;s:11:\"size_before\";i:61181;s:10:\"size_after\";i:55493;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:11265;s:11:\"size_before\";i:115601;s:10:\"size_after\";i:104336;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5847,467,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.257774251918963415164398611523211002349853515625;s:5:\"bytes\";i:176843;s:11:\"size_before\";i:2436601;s:10:\"size_after\";i:2259758;s:4:\"time\";d:3.100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3671;s:11:\"size_before\";i:37006;s:10:\"size_after\";i:33335;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:8961;s:11:\"size_before\";i:89168;s:10:\"size_after\";i:80207;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:31112;s:11:\"size_before\";i:476156;s:10:\"size_after\";i:445044;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1663;s:11:\"size_before\";i:25109;s:10:\"size_after\";i:23446;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:13545;s:11:\"size_before\";i:147192;s:10:\"size_after\";i:133647;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:16168;s:11:\"size_before\";i:160617;s:10:\"size_after\";i:144449;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:19728;s:11:\"size_before\";i:276240;s:10:\"size_after\";i:256512;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:26388;s:11:\"size_before\";i:433460;s:10:\"size_after\";i:407072;s:4:\"time\";d:0.689999999999999946709294817992486059665679931640625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:15237;s:11:\"size_before\";i:171387;s:10:\"size_after\";i:156150;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2228;s:11:\"size_before\";i:28928;s:10:\"size_after\";i:26700;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:12484;s:11:\"size_before\";i:120665;s:10:\"size_after\";i:108181;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:25658;s:11:\"size_before\";i:470673;s:10:\"size_after\";i:445015;s:4:\"time\";d:0.75;}}}'),(5848,471,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4635132409062894254248021752573549747467041015625;s:5:\"bytes\";i:30627;s:11:\"size_before\";i:361871;s:10:\"size_after\";i:331244;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1392;s:11:\"size_before\";i:15621;s:10:\"size_after\";i:14229;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:3807;s:11:\"size_before\";i:41776;s:10:\"size_after\";i:37969;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1218;s:11:\"size_before\";i:13471;s:10:\"size_after\";i:12253;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3173;s:11:\"size_before\";i:44093;s:10:\"size_after\";i:40920;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3619;s:11:\"size_before\";i:47808;s:10:\"size_after\";i:44189;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4234;s:11:\"size_before\";i:58302;s:10:\"size_after\";i:54068;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:5627;s:11:\"size_before\";i:60067;s:10:\"size_after\";i:54440;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1037;s:11:\"size_before\";i:11657;s:10:\"size_after\";i:10620;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:6520;s:11:\"size_before\";i:69076;s:10:\"size_after\";i:62556;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5849,474,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.372357946025015706936756032519042491912841796875;s:5:\"bytes\";i:63647;s:11:\"size_before\";i:760204;s:10:\"size_after\";i:696557;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2100;s:11:\"size_before\";i:21145;s:10:\"size_after\";i:19045;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:5910;s:11:\"size_before\";i:64102;s:10:\"size_after\";i:58192;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19045;s:10:\"size_after\";i:19045;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6420;s:11:\"size_before\";i:67910;s:10:\"size_after\";i:61490;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:6796;s:11:\"size_before\";i:72340;s:10:\"size_after\";i:65544;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:9762;s:11:\"size_before\";i:95139;s:10:\"size_after\";i:85377;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:10999;s:11:\"size_before\";i:117351;s:10:\"size_after\";i:106352;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:7503;s:11:\"size_before\";i:81255;s:10:\"size_after\";i:73752;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1813;s:11:\"size_before\";i:16569;s:10:\"size_after\";i:14756;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:73752;s:10:\"size_after\";i:73752;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:12344;s:11:\"size_before\";i:131596;s:10:\"size_after\";i:119252;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5817,316,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:31.6139261858174194230741704814136028289794921875;s:5:\"bytes\";i:18742;s:11:\"size_before\";i:59284;s:10:\"size_after\";i:40542;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.489999999999998436805981327779591083526611328125;s:5:\"bytes\";i:5734;s:11:\"size_before\";i:18806;s:10:\"size_after\";i:13072;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.25999999999999801048033987171947956085205078125;s:5:\"bytes\";i:7580;s:11:\"size_before\";i:23494;s:10:\"size_after\";i:15914;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:5428;s:11:\"size_before\";i:16984;s:10:\"size_after\";i:11556;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5865,541,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.579036317434070468834761413745582103729248046875;s:5:\"bytes\";i:7056;s:11:\"size_before\";i:82247;s:10:\"size_after\";i:75191;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:9;s:5:\"bytes\";i:1503;s:11:\"size_before\";i:16696;s:10:\"size_after\";i:15193;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1449;s:11:\"size_before\";i:15378;s:10:\"size_after\";i:13929;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:2881;s:11:\"size_before\";i:36902;s:10:\"size_after\";i:34021;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1223;s:11:\"size_before\";i:13271;s:10:\"size_after\";i:12048;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5857,504,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.077670841517690547561869607307016849517822265625;s:5:\"bytes\";i:446153;s:11:\"size_before\";i:4427144;s:10:\"size_after\";i:3980991;s:4:\"time\";d:1.11000000000000031974423109204508364200592041015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3283;s:11:\"size_before\";i:27246;s:10:\"size_after\";i:23963;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5;s:5:\"bytes\";i:11082;s:11:\"size_before\";i:96363;s:10:\"size_after\";i:85281;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:57449;s:11:\"size_before\";i:544355;s:10:\"size_after\";i:486906;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:89257;s:11:\"size_before\";i:868055;s:10:\"size_after\";i:778798;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23963;s:10:\"size_after\";i:23963;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:47904;s:11:\"size_before\";i:502268;s:10:\"size_after\";i:454364;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9780;s:11:\"size_before\";i:96890;s:10:\"size_after\";i:87110;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:10977;s:11:\"size_before\";i:104684;s:10:\"size_after\";i:93707;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:17064;s:11:\"size_before\";i:174879;s:10:\"size_after\";i:157815;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:26707;s:11:\"size_before\";i:285100;s:10:\"size_after\";i:258393;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:59541;s:11:\"size_before\";i:624769;s:10:\"size_after\";i:565228;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:56074;s:11:\"size_before\";i:570938;s:10:\"size_after\";i:514864;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14696;s:11:\"size_before\";i:128635;s:10:\"size_after\";i:113939;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2047;s:11:\"size_before\";i:18885;s:10:\"size_after\";i:16838;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:14681;s:11:\"size_before\";i:129893;s:10:\"size_after\";i:115212;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:25611;s:11:\"size_before\";i:230221;s:10:\"size_after\";i:204610;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5855,500,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78198;s:10:\"size_after\";i:78198;s:4:\"time\";d:0.229999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28177;s:10:\"size_after\";i:28177;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28177;s:10:\"size_after\";i:28177;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21844;s:10:\"size_after\";i:21844;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5818,317,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:35.70200899208924028016554075293242931365966796875;s:5:\"bytes\";i:31366;s:11:\"size_before\";i:87855;s:10:\"size_after\";i:56489;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:47.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2238;s:11:\"size_before\";i:4697;s:10:\"size_after\";i:2459;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.74000000000000198951966012828052043914794921875;s:5:\"bytes\";i:5661;s:11:\"size_before\";i:17290;s:10:\"size_after\";i:11629;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:1525;s:11:\"size_before\";i:5423;s:10:\"size_after\";i:3898;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.52000000000000312638803734444081783294677734375;s:5:\"bytes\";i:3058;s:11:\"size_before\";i:7192;s:10:\"size_after\";i:4134;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3028;s:11:\"size_before\";i:7099;s:10:\"size_after\";i:4071;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:3418;s:11:\"size_before\";i:8452;s:10:\"size_after\";i:5034;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2960;s:11:\"size_before\";i:6787;s:10:\"size_after\";i:3827;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:5116;s:11:\"size_before\";i:15908;s:10:\"size_after\";i:10792;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:4362;s:11:\"size_before\";i:15007;s:10:\"size_after\";i:10645;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5856,501,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.2161070084993728102062959806062281131744384765625;s:5:\"bytes\";i:3507;s:11:\"size_before\";i:28708;s:10:\"size_after\";i:25201;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2420;s:11:\"size_before\";i:10491;s:10:\"size_after\";i:8071;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8071;s:10:\"size_after\";i:8071;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1087;s:11:\"size_before\";i:10146;s:10:\"size_after\";i:9059;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5854,499,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.8503336701884851578370216884650290012359619140625;s:5:\"bytes\";i:106057;s:11:\"size_before\";i:1198339;s:10:\"size_after\";i:1092282;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1439;s:11:\"size_before\";i:16434;s:10:\"size_after\";i:14995;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:4113;s:11:\"size_before\";i:51450;s:10:\"size_after\";i:47337;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1410;s:11:\"size_before\";i:15975;s:10:\"size_after\";i:14565;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:15454;s:11:\"size_before\";i:233559;s:10:\"size_after\";i:218105;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:4241;s:11:\"size_before\";i:57965;s:10:\"size_after\";i:53724;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:4530;s:11:\"size_before\";i:60905;s:10:\"size_after\";i:56375;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7196;s:11:\"size_before\";i:104365;s:10:\"size_after\";i:97169;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:10332;s:11:\"size_before\";i:166672;s:10:\"size_after\";i:156340;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.25;s:5:\"bytes\";i:37043;s:11:\"size_before\";i:214744;s:10:\"size_after\";i:177701;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:5240;s:11:\"size_before\";i:72010;s:10:\"size_after\";i:66770;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1048;s:11:\"size_before\";i:12350;s:10:\"size_after\";i:11302;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5323;s:11:\"size_before\";i:73802;s:10:\"size_after\";i:68479;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:8688;s:11:\"size_before\";i:118108;s:10:\"size_after\";i:109420;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(5851,482,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.9566857229826783992621130892075598239898681640625;s:5:\"bytes\";i:133834;s:11:\"size_before\";i:1682032;s:10:\"size_after\";i:1548198;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1657;s:11:\"size_before\";i:18612;s:10:\"size_after\";i:16955;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4327;s:11:\"size_before\";i:56130;s:10:\"size_after\";i:51803;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1562;s:11:\"size_before\";i:17258;s:10:\"size_after\";i:15696;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:20754;s:11:\"size_before\";i:259234;s:10:\"size_after\";i:238480;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:5168;s:11:\"size_before\";i:64720;s:10:\"size_after\";i:59552;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:5616;s:11:\"size_before\";i:68959;s:10:\"size_after\";i:63343;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:8682;s:11:\"size_before\";i:115164;s:10:\"size_after\";i:106482;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:14112;s:11:\"size_before\";i:179677;s:10:\"size_after\";i:165565;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:26403;s:11:\"size_before\";i:320617;s:10:\"size_after\";i:294214;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:21182;s:11:\"size_before\";i:267258;s:10:\"size_after\";i:246076;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6533;s:11:\"size_before\";i:83349;s:10:\"size_after\";i:76816;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1274;s:11:\"size_before\";i:14047;s:10:\"size_after\";i:12773;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:6518;s:11:\"size_before\";i:85272;s:10:\"size_after\";i:78754;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:10046;s:11:\"size_before\";i:131735;s:10:\"size_after\";i:121689;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5852,485,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.303404184240623209234399837441742420196533203125;s:5:\"bytes\";i:162554;s:11:\"size_before\";i:1957679;s:10:\"size_after\";i:1795125;s:4:\"time\";d:0.480000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2347;s:11:\"size_before\";i:23029;s:10:\"size_after\";i:20682;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6443;s:11:\"size_before\";i:69550;s:10:\"size_after\";i:63107;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2356;s:11:\"size_before\";i:22181;s:10:\"size_after\";i:19825;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:22996;s:11:\"size_before\";i:291269;s:10:\"size_after\";i:268273;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6900;s:11:\"size_before\";i:81001;s:10:\"size_after\";i:74101;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7424;s:11:\"size_before\";i:84787;s:10:\"size_after\";i:77363;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:11921;s:11:\"size_before\";i:143882;s:10:\"size_after\";i:131961;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:18238;s:11:\"size_before\";i:219414;s:10:\"size_after\";i:201176;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:27458;s:11:\"size_before\";i:348667;s:10:\"size_after\";i:321209;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:23460;s:11:\"size_before\";i:298447;s:10:\"size_after\";i:274987;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:8634;s:11:\"size_before\";i:98478;s:10:\"size_after\";i:89844;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1868;s:11:\"size_before\";i:17627;s:10:\"size_after\";i:15759;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:9088;s:11:\"size_before\";i:104311;s:10:\"size_after\";i:95223;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13421;s:11:\"size_before\";i:155036;s:10:\"size_after\";i:141615;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5176,996,'_elementor_controls_usage','a:7:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:1;s:4:\"size\";i:1;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:24:\"wp-widget-weforms_widget\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}'),(5813,194,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.4779164417997918690161895938217639923095703125;s:5:\"bytes\";i:223117;s:11:\"size_before\";i:1788095;s:10:\"size_after\";i:1564978;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:3380;s:11:\"size_before\";i:24190;s:10:\"size_after\";i:20810;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:7537;s:11:\"size_before\";i:60128;s:10:\"size_after\";i:52591;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2481;s:11:\"size_before\";i:18385;s:10:\"size_after\";i:15904;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:32802;s:11:\"size_before\";i:256922;s:10:\"size_after\";i:224120;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:11142;s:11:\"size_before\";i:83619;s:10:\"size_after\";i:72477;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:11495;s:11:\"size_before\";i:88216;s:10:\"size_after\";i:76721;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:17145;s:11:\"size_before\";i:140916;s:10:\"size_after\";i:123771;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:23662;s:11:\"size_before\";i:182774;s:10:\"size_after\";i:159112;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:36375;s:11:\"size_before\";i:301134;s:10:\"size_after\";i:264759;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:31437;s:11:\"size_before\";i:253938;s:10:\"size_after\";i:222501;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12589;s:11:\"size_before\";i:100643;s:10:\"size_after\";i:88054;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2640;s:11:\"size_before\";i:18551;s:10:\"size_after\";i:15911;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14972;s:11:\"size_before\";i:127998;s:10:\"size_after\";i:113026;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:15460;s:11:\"size_before\";i:130681;s:10:\"size_after\";i:115221;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5192,916,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:1;s:4:\"size\";i:1;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:8:\"progress\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_progress\";a:3:{s:5:\"title\";i:1;s:7:\"percent\";i:1;s:10:\"inner_text\";i:1;}}s:5:\"style\";a:2:{s:22:\"section_progress_style\";a:5:{s:9:\"bar_color\";i:1;s:10:\"bar_height\";i:1;s:17:\"bar_border_radius\";i:1;s:31:\"bar_inner_typography_typography\";i:1;s:30:\"bar_inner_typography_font_size\";i:1;}s:13:\"section_title\";a:7:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:24:\"wp-widget-weforms_widget\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(5850,479,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9351521948117298421720988699235022068023681640625;s:5:\"bytes\";i:134041;s:11:\"size_before\";i:1349159;s:10:\"size_after\";i:1215118;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2136;s:11:\"size_before\";i:17293;s:10:\"size_after\";i:15157;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:5729;s:11:\"size_before\";i:50747;s:10:\"size_after\";i:45018;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2031;s:11:\"size_before\";i:16425;s:10:\"size_after\";i:14394;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:18666;s:11:\"size_before\";i:194798;s:10:\"size_after\";i:176132;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6280;s:11:\"size_before\";i:58919;s:10:\"size_after\";i:52639;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:6639;s:11:\"size_before\";i:61873;s:10:\"size_after\";i:55234;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:10063;s:11:\"size_before\";i:99111;s:10:\"size_after\";i:89048;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:13426;s:11:\"size_before\";i:145954;s:10:\"size_after\";i:132528;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:21297;s:11:\"size_before\";i:232732;s:10:\"size_after\";i:211435;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:18191;s:11:\"size_before\";i:200871;s:10:\"size_after\";i:182680;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:7958;s:11:\"size_before\";i:72057;s:10:\"size_after\";i:64099;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1735;s:11:\"size_before\";i:13600;s:10:\"size_after\";i:11865;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:8201;s:11:\"size_before\";i:74345;s:10:\"size_after\";i:66144;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:11689;s:11:\"size_before\";i:110434;s:10:\"size_after\";i:98745;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5194,755,'_edit_lock','1651343412:1'),(5844,449,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.1552264877525910691247190698049962520599365234375;s:5:\"bytes\";i:7674;s:11:\"size_before\";i:75567;s:10:\"size_after\";i:67893;s:4:\"time\";d:0.06999999999999999278355033993648248724639415740966796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1789;s:11:\"size_before\";i:16401;s:10:\"size_after\";i:14612;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1503;s:11:\"size_before\";i:13751;s:10:\"size_after\";i:12248;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3017;s:11:\"size_before\";i:32772;s:10:\"size_after\";i:29755;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1365;s:11:\"size_before\";i:12643;s:10:\"size_after\";i:11278;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}');
INSERT INTO `lrwp_postmeta` VALUES (5845,451,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.970909079579417078065262103336863219738006591796875;s:5:\"bytes\";i:50980;s:11:\"size_before\";i:1283837;s:10:\"size_after\";i:1232857;s:4:\"time\";d:2.42999999999999971578290569595992565155029296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:4155;s:11:\"size_before\";i:24132;s:10:\"size_after\";i:19977;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2206;s:11:\"size_before\";i:49604;s:10:\"size_after\";i:47398;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:235440;s:10:\"size_after\";i:235440;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1137;s:11:\"size_before\";i:15328;s:10:\"size_after\";i:14191;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:6298;s:11:\"size_before\";i:115420;s:10:\"size_after\";i:109122;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:9579;s:11:\"size_before\";i:118181;s:10:\"size_after\";i:108602;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:189543;s:10:\"size_after\";i:189543;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:2362;s:11:\"size_before\";i:342160;s:10:\"size_after\";i:339798;s:4:\"time\";d:0.60999999999999998667732370449812151491641998291015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:23186;s:11:\"size_before\";i:111649;s:10:\"size_after\";i:88463;s:4:\"time\";d:0.25;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1902;s:11:\"size_before\";i:22715;s:10:\"size_after\";i:20813;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.2600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:155;s:11:\"size_before\";i:59665;s:10:\"size_after\";i:59510;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(5846,453,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.55774434217527613100173766724765300750732421875;s:5:\"bytes\";i:13742;s:11:\"size_before\";i:88329;s:10:\"size_after\";i:74587;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:3154;s:11:\"size_before\";i:19877;s:10:\"size_after\";i:16723;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:5874;s:11:\"size_before\";i:37145;s:10:\"size_after\";i:31271;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2060;s:11:\"size_before\";i:13146;s:10:\"size_after\";i:11086;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2654;s:11:\"size_before\";i:18161;s:10:\"size_after\";i:15507;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5814,195,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.88151816371583890941110439598560333251953125;s:5:\"bytes\";i:148276;s:11:\"size_before\";i:1247955;s:10:\"size_after\";i:1099679;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4290;s:11:\"size_before\";i:29014;s:10:\"size_after\";i:24724;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:9275;s:11:\"size_before\";i:68396;s:10:\"size_after\";i:59121;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3294;s:11:\"size_before\";i:21269;s:10:\"size_after\";i:17975;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12920;s:11:\"size_before\";i:101739;s:10:\"size_after\";i:88819;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:13238;s:11:\"size_before\";i:105790;s:10:\"size_after\";i:92552;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:19727;s:11:\"size_before\";i:175572;s:10:\"size_after\";i:155845;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:29570;s:11:\"size_before\";i:262882;s:10:\"size_after\";i:233312;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:13411;s:11:\"size_before\";i:113905;s:10:\"size_after\";i:100494;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:3506;s:11:\"size_before\";i:22425;s:10:\"size_after\";i:18919;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:11522;s:11:\"size_before\";i:88505;s:10:\"size_after\";i:76983;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:27523;s:11:\"size_before\";i:258458;s:10:\"size_after\";i:230935;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5815,196,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.7153614648272021980801582685671746730804443359375;s:5:\"bytes\";i:74117;s:11:\"size_before\";i:632648;s:10:\"size_after\";i:558531;s:4:\"time\";d:0.210000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3400;s:11:\"size_before\";i:25006;s:10:\"size_after\";i:21606;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:7392;s:11:\"size_before\";i:59882;s:10:\"size_after\";i:52490;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:2656;s:11:\"size_before\";i:18793;s:10:\"size_after\";i:16137;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:10371;s:11:\"size_before\";i:88870;s:10:\"size_after\";i:78499;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11148;s:11:\"size_before\";i:93720;s:10:\"size_after\";i:82572;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:16613;s:11:\"size_before\";i:153866;s:10:\"size_after\";i:137253;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:10615;s:11:\"size_before\";i:95562;s:10:\"size_after\";i:84947;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2834;s:11:\"size_before\";i:19941;s:10:\"size_after\";i:17107;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:9088;s:11:\"size_before\";i:77008;s:10:\"size_after\";i:67920;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5816,276,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.3379819491804862963135747122578322887420654296875;s:5:\"bytes\";i:72616;s:11:\"size_before\";i:506459;s:10:\"size_after\";i:433843;s:4:\"time\";d:2.21999999999999975131004248396493494510650634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13161;s:10:\"size_after\";i:13161;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:732;s:11:\"size_before\";i:15380;s:10:\"size_after\";i:14648;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:2966;s:11:\"size_before\";i:66344;s:10:\"size_after\";i:63378;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:5243;s:11:\"size_before\";i:107962;s:10:\"size_after\";i:102719;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:248;s:11:\"size_before\";i:5638;s:10:\"size_after\";i:5390;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:25199;s:11:\"size_before\";i:62556;s:10:\"size_after\";i:37357;s:4:\"time\";d:0.68000000000000004884981308350688777863979339599609375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:463;s:11:\"size_before\";i:39328;s:10:\"size_after\";i:38865;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1411;s:11:\"size_before\";i:40225;s:10:\"size_after\";i:38814;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:12533;s:11:\"size_before\";i:31785;s:10:\"size_after\";i:19252;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:14018;s:11:\"size_before\";i:35013;s:10:\"size_after\";i:20995;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37357;s:10:\"size_after\";i:37357;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.77000000000000312638803734444081783294677734375;s:5:\"bytes\";i:9211;s:11:\"size_before\";i:23161;s:10:\"size_after\";i:13950;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9059;s:10:\"size_after\";i:9059;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:592;s:11:\"size_before\";i:19490;s:10:\"size_after\";i:18898;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5840,437,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.6204344693541070654418945196084678173065185546875;s:5:\"bytes\";i:317425;s:11:\"size_before\";i:3682239;s:10:\"size_after\";i:3364814;s:4:\"time\";d:1.1500000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2200;s:11:\"size_before\";i:21033;s:10:\"size_after\";i:18833;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6366;s:11:\"size_before\";i:66178;s:10:\"size_after\";i:59812;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:31884;s:11:\"size_before\";i:388373;s:10:\"size_after\";i:356489;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:53916;s:11:\"size_before\";i:655260;s:10:\"size_after\";i:601344;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2072;s:11:\"size_before\";i:19850;s:10:\"size_after\";i:17778;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:39484;s:11:\"size_before\";i:464650;s:10:\"size_after\";i:425166;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:7651;s:11:\"size_before\";i:80781;s:10:\"size_after\";i:73130;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.75;s:5:\"bytes\";i:8240;s:11:\"size_before\";i:84538;s:10:\"size_after\";i:76298;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:13603;s:11:\"size_before\";i:149916;s:10:\"size_after\";i:136313;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:21379;s:11:\"size_before\";i:251421;s:10:\"size_after\";i:230042;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:49340;s:11:\"size_before\";i:581199;s:10:\"size_after\";i:531859;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:46574;s:11:\"size_before\";i:537303;s:10:\"size_after\";i:490729;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8682;s:11:\"size_before\";i:94303;s:10:\"size_after\";i:85621;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1802;s:11:\"size_before\";i:16485;s:10:\"size_after\";i:14683;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8338;s:11:\"size_before\";i:88184;s:10:\"size_after\";i:79846;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:15894;s:11:\"size_before\";i:182765;s:10:\"size_after\";i:166871;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5841,440,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5842,440,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.9187645248476652426461441791616380214691162109375;s:5:\"bytes\";i:328600;s:11:\"size_before\";i:3009498;s:10:\"size_after\";i:2680898;s:4:\"time\";d:1.680000000000000159872115546022541821002960205078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1901;s:11:\"size_before\";i:17186;s:10:\"size_after\";i:15285;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:5529;s:11:\"size_before\";i:50438;s:10:\"size_after\";i:44909;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:41524;s:11:\"size_before\";i:374981;s:10:\"size_after\";i:333457;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:55133;s:11:\"size_before\";i:497837;s:10:\"size_after\";i:442704;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1642;s:11:\"size_before\";i:15408;s:10:\"size_after\";i:13766;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:41357;s:11:\"size_before\";i:381670;s:10:\"size_after\";i:340313;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6787;s:11:\"size_before\";i:63086;s:10:\"size_after\";i:56299;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7204;s:11:\"size_before\";i:66682;s:10:\"size_after\";i:59478;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:12468;s:11:\"size_before\";i:116259;s:10:\"size_after\";i:103791;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:21527;s:11:\"size_before\";i:200002;s:10:\"size_after\";i:178475;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:50445;s:11:\"size_before\";i:464241;s:10:\"size_after\";i:413796;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:50563;s:11:\"size_before\";i:467202;s:10:\"size_after\";i:416639;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11;s:5:\"bytes\";i:8302;s:11:\"size_before\";i:75458;s:10:\"size_after\";i:67156;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1476;s:11:\"size_before\";i:13265;s:10:\"size_after\";i:11789;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9508;s:11:\"size_before\";i:85692;s:10:\"size_after\";i:76184;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:13234;s:11:\"size_before\";i:120091;s:10:\"size_after\";i:106857;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5843,445,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.2288747160676276592994327074848115444183349609375;s:5:\"bytes\";i:224283;s:11:\"size_before\";i:2725561;s:10:\"size_after\";i:2501278;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1427;s:11:\"size_before\";i:15839;s:10:\"size_after\";i:14412;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4676;s:11:\"size_before\";i:53361;s:10:\"size_after\";i:48685;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:22842;s:11:\"size_before\";i:312721;s:10:\"size_after\";i:289879;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:39859;s:11:\"size_before\";i:524378;s:10:\"size_after\";i:484519;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14412;s:10:\"size_after\";i:14412;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:29078;s:11:\"size_before\";i:334976;s:10:\"size_after\";i:305898;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:4898;s:11:\"size_before\";i:57827;s:10:\"size_after\";i:52929;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:5449;s:11:\"size_before\";i:62134;s:10:\"size_after\";i:56685;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:8639;s:11:\"size_before\";i:105463;s:10:\"size_after\";i:96824;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:14880;s:11:\"size_before\";i:179795;s:10:\"size_after\";i:164915;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:34661;s:11:\"size_before\";i:416031;s:10:\"size_after\";i:381370;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:34606;s:11:\"size_before\";i:369427;s:10:\"size_after\";i:334821;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:6055;s:11:\"size_before\";i:70432;s:10:\"size_after\";i:64377;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1046;s:11:\"size_before\";i:11991;s:10:\"size_after\";i:10945;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:5992;s:11:\"size_before\";i:70405;s:10:\"size_after\";i:64413;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10175;s:11:\"size_before\";i:126369;s:10:\"size_after\";i:116194;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5832,394,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.4234311294336752240496934973634779453277587890625;s:5:\"bytes\";i:277717;s:11:\"size_before\";i:2664353;s:10:\"size_after\";i:2386636;s:4:\"time\";d:0.7300000000000002042810365310288034379482269287109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1783;s:11:\"size_before\";i:18887;s:10:\"size_after\";i:17104;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5118;s:11:\"size_before\";i:59879;s:10:\"size_after\";i:54761;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:28595;s:11:\"size_before\";i:358295;s:10:\"size_after\";i:329700;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:40820;s:11:\"size_before\";i:486969;s:10:\"size_after\";i:446149;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1698;s:11:\"size_before\";i:17736;s:10:\"size_after\";i:16038;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:24592;s:11:\"size_before\";i:321233;s:10:\"size_after\";i:296641;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5468;s:11:\"size_before\";i:69126;s:10:\"size_after\";i:63658;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:5822;s:11:\"size_before\";i:73054;s:10:\"size_after\";i:67232;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:9322;s:11:\"size_before\";i:121331;s:10:\"size_after\";i:112009;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:15858;s:11:\"size_before\";i:191589;s:10:\"size_after\";i:175731;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:61657;s:11:\"size_before\";i:338136;s:10:\"size_after\";i:276479;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:50740;s:11:\"size_before\";i:279058;s:10:\"size_after\";i:228318;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6772;s:11:\"size_before\";i:84522;s:10:\"size_after\";i:77750;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1379;s:11:\"size_before\";i:14108;s:10:\"size_after\";i:12729;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7370;s:11:\"size_before\";i:92254;s:10:\"size_after\";i:84884;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:10723;s:11:\"size_before\";i:138176;s:10:\"size_after\";i:127453;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5833,401,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.3081122850337205676396479248069226741790771484375;s:5:\"bytes\";i:126962;s:11:\"size_before\";i:1363993;s:10:\"size_after\";i:1237031;s:4:\"time\";d:0.43000000000000004884981308350688777863979339599609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1817;s:11:\"size_before\";i:18660;s:10:\"size_after\";i:16843;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:4700;s:11:\"size_before\";i:50131;s:10:\"size_after\";i:45431;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:23529;s:11:\"size_before\";i:238886;s:10:\"size_after\";i:215357;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1677;s:11:\"size_before\";i:16616;s:10:\"size_after\";i:14939;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:16394;s:11:\"size_before\";i:195333;s:10:\"size_after\";i:178939;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:5270;s:11:\"size_before\";i:57358;s:10:\"size_after\";i:52088;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5717;s:11:\"size_before\";i:61468;s:10:\"size_after\";i:55751;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9198;s:11:\"size_before\";i:95181;s:10:\"size_after\";i:85983;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:13883;s:11:\"size_before\";i:137074;s:10:\"size_after\";i:123191;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:17672;s:11:\"size_before\";i:202772;s:10:\"size_after\";i:185100;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6678;s:11:\"size_before\";i:74117;s:10:\"size_after\";i:67439;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1317;s:11:\"size_before\";i:13250;s:10:\"size_after\";i:11933;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6214;s:11:\"size_before\";i:66124;s:10:\"size_after\";i:59910;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:12896;s:11:\"size_before\";i:137023;s:10:\"size_after\";i:124127;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5834,414,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.725872226573489598422384005971252918243408203125;s:5:\"bytes\";i:317985;s:11:\"size_before\";i:2964654;s:10:\"size_after\";i:2646669;s:4:\"time\";d:0.910000000000000142108547152020037174224853515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2908;s:11:\"size_before\";i:24305;s:10:\"size_after\";i:21397;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:8207;s:11:\"size_before\";i:76145;s:10:\"size_after\";i:67938;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:37120;s:11:\"size_before\";i:355333;s:10:\"size_after\";i:318213;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:58086;s:11:\"size_before\";i:553186;s:10:\"size_after\";i:495100;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21397;s:10:\"size_after\";i:21397;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:35936;s:11:\"size_before\";i:322771;s:10:\"size_after\";i:286835;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:7763;s:11:\"size_before\";i:73094;s:10:\"size_after\";i:65331;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:8195;s:11:\"size_before\";i:78854;s:10:\"size_after\";i:70659;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12578;s:11:\"size_before\";i:120403;s:10:\"size_after\";i:107825;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:19544;s:11:\"size_before\";i:183823;s:10:\"size_after\";i:164279;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:45321;s:11:\"size_before\";i:417313;s:10:\"size_after\";i:371992;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:42906;s:11:\"size_before\";i:363352;s:10:\"size_after\";i:320446;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:10205;s:11:\"size_before\";i:96941;s:10:\"size_after\";i:86736;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2004;s:11:\"size_before\";i:17240;s:10:\"size_after\";i:15236;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:10363;s:11:\"size_before\";i:98161;s:10:\"size_after\";i:87798;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:16849;s:11:\"size_before\";i:162336;s:10:\"size_after\";i:145487;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5839,431,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.3364650925917782586793691734783351421356201171875;s:5:\"bytes\";i:30377;s:11:\"size_before\";i:227774;s:10:\"size_after\";i:197397;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2761;s:11:\"size_before\";i:21801;s:10:\"size_after\";i:19040;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:6783;s:11:\"size_before\";i:58249;s:10:\"size_after\";i:51466;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2667;s:11:\"size_before\";i:19795;s:10:\"size_after\";i:17128;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:9197;s:11:\"size_before\";i:50622;s:10:\"size_after\";i:41425;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:7041;s:11:\"size_before\";i:61051;s:10:\"size_after\";i:54010;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1928;s:11:\"size_before\";i:16256;s:10:\"size_after\";i:14328;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5234,996,'_genesis_noindex','1'),(5235,996,'_genesis_nofollow','1'),(5236,996,'_genesis_noarchive','1'),(5237,964,'_genesis_noindex','1'),(5238,964,'_genesis_nofollow','1'),(5239,964,'_genesis_noarchive','1'),(5838,428,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.7130238035799596474362260778434574604034423828125;s:5:\"bytes\";i:413258;s:11:\"size_before\";i:3857529;s:10:\"size_after\";i:3444271;s:4:\"time\";d:1.07000000000000028421709430404007434844970703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:4254;s:11:\"size_before\";i:29296;s:10:\"size_after\";i:25042;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:11280;s:11:\"size_before\";i:88049;s:10:\"size_after\";i:76769;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:49719;s:11:\"size_before\";i:519994;s:10:\"size_after\";i:470275;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:66020;s:11:\"size_before\";i:693559;s:10:\"size_after\";i:627539;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:4021;s:11:\"size_before\";i:27000;s:10:\"size_after\";i:22979;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:41490;s:11:\"size_before\";i:443669;s:10:\"size_after\";i:402179;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:10297;s:11:\"size_before\";i:94247;s:10:\"size_after\";i:83950;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:11365;s:11:\"size_before\";i:101414;s:10:\"size_after\";i:90049;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:15838;s:11:\"size_before\";i:163417;s:10:\"size_after\";i:147579;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:23862;s:11:\"size_before\";i:258329;s:10:\"size_after\";i:234467;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:51688;s:11:\"size_before\";i:552230;s:10:\"size_after\";i:500542;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.5;s:5:\"bytes\";i:67520;s:11:\"size_before\";i:409111;s:10:\"size_after\";i:341591;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:14579;s:11:\"size_before\";i:122803;s:10:\"size_after\";i:108224;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2865;s:11:\"size_before\";i:20825;s:10:\"size_after\";i:17960;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:16508;s:11:\"size_before\";i:138244;s:10:\"size_after\";i:121736;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:21952;s:11:\"size_before\";i:195342;s:10:\"size_after\";i:173390;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5264,964,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:1;s:4:\"size\";i:1;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:8:\"progress\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_progress\";a:3:{s:5:\"title\";i:1;s:7:\"percent\";i:1;s:10:\"inner_text\";i:1;}}s:5:\"style\";a:2:{s:22:\"section_progress_style\";a:4:{s:9:\"bar_color\";i:1;s:10:\"bar_height\";i:1;s:31:\"bar_inner_typography_typography\";i:1;s:30:\"bar_inner_typography_font_size\";i:1;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}}'),(5837,425,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.6194982027812070413119727163575589656829833984375;s:5:\"bytes\";i:271167;s:11:\"size_before\";i:3145972;s:10:\"size_after\";i:2874805;s:4:\"time\";d:0.80000000000000015543122344752191565930843353271484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1746;s:11:\"size_before\";i:18610;s:10:\"size_after\";i:16864;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:5086;s:11:\"size_before\";i:60128;s:10:\"size_after\";i:55042;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:29658;s:11:\"size_before\";i:337360;s:10:\"size_after\";i:307702;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:49649;s:11:\"size_before\";i:555014;s:10:\"size_after\";i:505365;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1694;s:11:\"size_before\";i:18351;s:10:\"size_after\";i:16657;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:34098;s:11:\"size_before\";i:399615;s:10:\"size_after\";i:365517;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:5655;s:11:\"size_before\";i:69714;s:10:\"size_after\";i:64059;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:6033;s:11:\"size_before\";i:73211;s:10:\"size_after\";i:67178;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:10592;s:11:\"size_before\";i:127883;s:10:\"size_after\";i:117291;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:18374;s:11:\"size_before\";i:215742;s:10:\"size_after\";i:197368;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:41175;s:11:\"size_before\";i:486968;s:10:\"size_after\";i:445793;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:40362;s:11:\"size_before\";i:468397;s:10:\"size_after\";i:428035;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:6836;s:11:\"size_before\";i:79831;s:10:\"size_after\";i:72995;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1287;s:11:\"size_before\";i:14581;s:10:\"size_after\";i:13294;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:6845;s:11:\"size_before\";i:80839;s:10:\"size_after\";i:73994;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:12077;s:11:\"size_before\";i:139728;s:10:\"size_after\";i:127651;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(8119,1319,'_wp_page_template','template/template-page.php'),(8120,1319,'_elementor_edit_mode','builder'),(8121,1319,'_elementor_template_type','wp-page'),(8122,1319,'_elementor_version','3.0.9'),(8123,1319,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-realty-and-development\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">6477 Morehead Road Harrisburg, North Carolina 28075 <\\/br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">118 East Main Street Albemarle, North Carolina 28001 <\\/br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(5830,387,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.03317676783699852194331469945609569549560546875;s:5:\"bytes\";i:192911;s:11:\"size_before\";i:1922731;s:10:\"size_after\";i:1729820;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2054;s:11:\"size_before\";i:20565;s:10:\"size_after\";i:18511;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:5808;s:11:\"size_before\";i:66242;s:10:\"size_after\";i:60434;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:50967;s:11:\"size_before\";i:256726;s:10:\"size_after\";i:205759;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18511;s:10:\"size_after\";i:18511;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:21496;s:11:\"size_before\";i:244574;s:10:\"size_after\";i:223078;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6311;s:11:\"size_before\";i:71701;s:10:\"size_after\";i:65390;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:6645;s:11:\"size_before\";i:76189;s:10:\"size_after\";i:69544;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:10818;s:11:\"size_before\";i:123878;s:10:\"size_after\";i:113060;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:17149;s:11:\"size_before\";i:176924;s:10:\"size_after\";i:159775;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26968;s:11:\"size_before\";i:289826;s:10:\"size_after\";i:262858;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:23147;s:11:\"size_before\";i:247903;s:10:\"size_after\";i:224756;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7353;s:11:\"size_before\";i:85740;s:10:\"size_after\";i:78387;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1675;s:11:\"size_before\";i:15862;s:10:\"size_after\";i:14187;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78387;s:10:\"size_after\";i:78387;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:12520;s:11:\"size_before\";i:149703;s:10:\"size_after\";i:137183;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5831,391,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.8562907696036585747378921951167285442352294921875;s:5:\"bytes\";i:8404;s:11:\"size_before\";i:94893;s:10:\"size_after\";i:86489;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1669;s:11:\"size_before\";i:18349;s:10:\"size_after\";i:16680;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1633;s:11:\"size_before\";i:17265;s:10:\"size_after\";i:15632;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3830;s:11:\"size_before\";i:45446;s:10:\"size_after\";i:41616;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1272;s:11:\"size_before\";i:13833;s:10:\"size_after\";i:12561;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5829,384,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.40895612481563858864319627173244953155517578125;s:5:\"bytes\";i:103366;s:11:\"size_before\";i:1229237;s:10:\"size_after\";i:1125871;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1543;s:11:\"size_before\";i:15923;s:10:\"size_after\";i:14380;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:4483;s:11:\"size_before\";i:50621;s:10:\"size_after\";i:46138;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14380;s:10:\"size_after\";i:14380;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:14331;s:11:\"size_before\";i:168693;s:10:\"size_after\";i:154362;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:4713;s:11:\"size_before\";i:56349;s:10:\"size_after\";i:51636;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:4946;s:11:\"size_before\";i:59103;s:10:\"size_after\";i:54157;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:8673;s:11:\"size_before\";i:98327;s:10:\"size_after\";i:89654;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:11542;s:11:\"size_before\";i:128961;s:10:\"size_after\";i:117419;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:19614;s:11:\"size_before\";i:206047;s:10:\"size_after\";i:186433;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:16488;s:11:\"size_before\";i:180685;s:10:\"size_after\";i:164197;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5829;s:11:\"size_before\";i:65525;s:10:\"size_after\";i:59696;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1217;s:11:\"size_before\";i:12464;s:10:\"size_after\";i:11247;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59696;s:10:\"size_after\";i:59696;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:9987;s:11:\"size_before\";i:112463;s:10:\"size_after\";i:102476;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(5274,1055,'_wp_attached_file','2020/10/Ellen_Thomas.jpg'),(5275,1055,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:633;s:4:\"file\";s:24:\"2020/10/Ellen_Thomas.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-569x600.jpg\";s:5:\"width\";i:569;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Ellen_Thomas-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-496x523.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"XT1575\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1532615335\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.67\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.03333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5276,1056,'_wp_attached_file','2020/10/IMG_0437.jpg'),(5277,1056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:306;s:6:\"height\";i:397;s:4:\"file\";s:20:\"2020/10/IMG_0437.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0437-231x300.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0437-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"IMG_0437-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1452095078\";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:{}}}'),(5278,1057,'_wp_attached_file','2020/10/Donna_Hawkins-1-scaled.jpg'),(5279,1057,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2061;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2020/10/Donna_Hawkins-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-242x300.jpg\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Donna_Hawkins-1-824x1024.jpg\";s:5:\"width\";i:824;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-768x954.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:954;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"Donna_Hawkins-1-1237x1536.jpg\";s:5:\"width\";i:1237;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"Donna_Hawkins-1-1649x2048.jpg\";s:5:\"width\";i:1649;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:28:\"Donna_Hawkins-1-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-483x600.jpg\";s:5:\"width\";i:483;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"Donna_Hawkins-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-496x616.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:616;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:{}}s:14:\"original_image\";s:19:\"Donna_Hawkins-1.jpg\";}'),(5827,378,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.0453437493970536564802387147210538387298583984375;s:5:\"bytes\";i:103044;s:11:\"size_before\";i:932918;s:10:\"size_after\";i:829874;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2779;s:11:\"size_before\";i:24294;s:10:\"size_after\";i:21515;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:7597;s:11:\"size_before\";i:76132;s:10:\"size_after\";i:68535;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21515;s:10:\"size_after\";i:21515;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:8009;s:11:\"size_before\";i:81852;s:10:\"size_after\";i:73843;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8435;s:11:\"size_before\";i:85738;s:10:\"size_after\";i:77303;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5;s:5:\"bytes\";i:12913;s:11:\"size_before\";i:135876;s:10:\"size_after\";i:122963;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:26969;s:11:\"size_before\";i:134092;s:10:\"size_after\";i:107123;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9356;s:11:\"size_before\";i:96904;s:10:\"size_after\";i:87548;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2143;s:11:\"size_before\";i:18348;s:10:\"size_after\";i:16205;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9381;s:11:\"size_before\";i:97089;s:10:\"size_after\";i:87708;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:15462;s:11:\"size_before\";i:161078;s:10:\"size_after\";i:145616;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5828,381,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.56034947686333680394454859197139739990234375;s:5:\"bytes\";i:17523;s:11:\"size_before\";i:231775;s:10:\"size_after\";i:214252;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1536;s:11:\"size_before\";i:19457;s:10:\"size_after\";i:17921;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4836;s:11:\"size_before\";i:61584;s:10:\"size_after\";i:56748;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17921;s:10:\"size_after\";i:17921;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4832;s:11:\"size_before\";i:56959;s:10:\"size_after\";i:52127;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5175;s:11:\"size_before\";i:61404;s:10:\"size_after\";i:56229;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1144;s:11:\"size_before\";i:14450;s:10:\"size_after\";i:13306;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5826,374,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.913672762093852952602901495993137359619140625;s:5:\"bytes\";i:101463;s:11:\"size_before\";i:1138285;s:10:\"size_after\";i:1036822;s:4:\"time\";d:0.480000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1839;s:11:\"size_before\";i:20368;s:10:\"size_after\";i:18529;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5167;s:11:\"size_before\";i:63313;s:10:\"size_after\";i:58146;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18529;s:10:\"size_after\";i:18529;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:16056;s:11:\"size_before\";i:173351;s:10:\"size_after\";i:157295;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5439;s:11:\"size_before\";i:66771;s:10:\"size_after\";i:61332;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:5796;s:11:\"size_before\";i:70621;s:10:\"size_after\";i:64825;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:10030;s:11:\"size_before\";i:109705;s:10:\"size_after\";i:99675;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:13267;s:11:\"size_before\";i:131680;s:10:\"size_after\";i:118413;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:17450;s:11:\"size_before\";i:172866;s:10:\"size_after\";i:155416;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6707;s:11:\"size_before\";i:80773;s:10:\"size_after\";i:74066;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1333;s:11:\"size_before\";i:15314;s:10:\"size_after\";i:13981;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6673;s:11:\"size_before\";i:80813;s:10:\"size_after\";i:74140;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:11706;s:11:\"size_before\";i:134181;s:10:\"size_after\";i:122475;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5824,362,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.9751121277078862448206564295105636119842529296875;s:5:\"bytes\";i:86167;s:11:\"size_before\";i:960066;s:10:\"size_after\";i:873899;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:2155;s:11:\"size_before\";i:22941;s:10:\"size_after\";i:20786;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:6268;s:11:\"size_before\";i:72212;s:10:\"size_after\";i:65944;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1937;s:11:\"size_before\";i:21290;s:10:\"size_after\";i:19353;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:7370;s:11:\"size_before\";i:81609;s:10:\"size_after\";i:74239;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7814;s:11:\"size_before\";i:86693;s:10:\"size_after\";i:78879;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:12004;s:11:\"size_before\";i:131455;s:10:\"size_after\";i:119451;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:14773;s:11:\"size_before\";i:162456;s:10:\"size_after\";i:147683;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:8871;s:11:\"size_before\";i:99758;s:10:\"size_after\";i:90887;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1706;s:11:\"size_before\";i:17509;s:10:\"size_after\";i:15803;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9540;s:11:\"size_before\";i:107929;s:10:\"size_after\";i:98389;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13729;s:11:\"size_before\";i:156214;s:10:\"size_after\";i:142485;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5825,372,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.92833522621018715881291427649557590484619140625;s:5:\"bytes\";i:78299;s:11:\"size_before\";i:876972;s:10:\"size_after\";i:798673;s:4:\"time\";d:0.310000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2802;s:11:\"size_before\";i:23807;s:10:\"size_after\";i:21005;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7710;s:11:\"size_before\";i:73505;s:10:\"size_after\";i:65795;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21005;s:10:\"size_after\";i:21005;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:6920;s:11:\"size_before\";i:70738;s:10:\"size_after\";i:63818;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7514;s:11:\"size_before\";i:75673;s:10:\"size_after\";i:68159;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:11540;s:11:\"size_before\";i:113774;s:10:\"size_after\";i:102234;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:14179;s:11:\"size_before\";i:148293;s:10:\"size_after\";i:134114;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:9871;s:11:\"size_before\";i:94169;s:10:\"size_after\";i:84298;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1843;s:11:\"size_before\";i:16790;s:10:\"size_after\";i:14947;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:84298;s:10:\"size_after\";i:84298;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:15920;s:11:\"size_before\";i:154920;s:10:\"size_after\";i:139000;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5802,133,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.030200558496400020658256835304200649261474609375;s:5:\"bytes\";i:106728;s:11:\"size_before\";i:967598;s:10:\"size_after\";i:860870;s:4:\"time\";d:0.30999999999999994226840271949185989797115325927734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1680;s:11:\"size_before\";i:15216;s:10:\"size_after\";i:13536;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4926;s:11:\"size_before\";i:44185;s:10:\"size_after\";i:39259;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1605;s:11:\"size_before\";i:14485;s:10:\"size_after\";i:12880;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:16920;s:11:\"size_before\";i:106400;s:10:\"size_after\";i:89480;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5293;s:11:\"size_before\";i:47916;s:10:\"size_after\";i:42623;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5678;s:11:\"size_before\";i:50712;s:10:\"size_after\";i:45034;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:9914;s:11:\"size_before\";i:82372;s:10:\"size_after\";i:72458;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:8376;s:11:\"size_before\";i:95889;s:10:\"size_after\";i:87513;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:14494;s:11:\"size_before\";i:154526;s:10:\"size_after\";i:140032;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11939;s:11:\"size_before\";i:130417;s:10:\"size_after\";i:118478;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:6533;s:11:\"size_before\";i:58121;s:10:\"size_after\";i:51588;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1311;s:11:\"size_before\";i:11754;s:10:\"size_after\";i:10443;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:6958;s:11:\"size_before\";i:60861;s:10:\"size_after\";i:53903;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:11101;s:11:\"size_before\";i:94744;s:10:\"size_after\";i:83643;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5294,1060,'_wp_attached_file','2020/10/IMG_7662_jpg-scaled.jpg'),(5295,1060,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1801;s:6:\"height\";i:2560;s:4:\"file\";s:31:\"2020/10/IMG_7662_jpg-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-211x300.jpg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"IMG_7662_jpg-721x1024.jpg\";s:5:\"width\";i:721;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"IMG_7662_jpg-768x1091.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1091;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"IMG_7662_jpg-1081x1536.jpg\";s:5:\"width\";i:1081;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"IMG_7662_jpg-1441x2048.jpg\";s:5:\"width\";i:1441;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:25:\"IMG_7662_jpg-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-422x600.jpg\";s:5:\"width\";i:422;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"IMG_7662_jpg-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-496x705.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 11\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602238655\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IMG_7662_jpg.jpg\";}'),(5296,1061,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5297,1062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5298,1063,'_wp_attached_file','2020/10/Lantern-Logo-1.jpeg'),(5299,1063,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:740;s:4:\"file\";s:27:\"2020/10/Lantern-Logo-1.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-300x173.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Lantern-Logo-1-1024x592.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-768x444.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:28:\"Lantern-Logo-1-1170x740.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:740;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:28:\"Lantern-Logo-1-1038x600.jpeg\";s:5:\"width\";i:1038;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"Lantern-Logo-1-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-496x287.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"faraz ali\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1526127625\";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:{}}}'),(8711,1413,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8712,1414,'_wp_attached_file','2020/11/LRD-56-Safety-Tips.pdf'),(5823,359,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.1860790690512263978462215163744986057281494140625;s:5:\"bytes\";i:319498;s:11:\"size_before\";i:3902943;s:10:\"size_after\";i:3583445;s:4:\"time\";d:0.8400000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:2334;s:11:\"size_before\";i:23041;s:10:\"size_after\";i:20707;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6972;s:11:\"size_before\";i:75755;s:10:\"size_after\";i:68783;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:35387;s:11:\"size_before\";i:432904;s:10:\"size_after\";i:397517;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:54935;s:11:\"size_before\";i:697229;s:10:\"size_after\";i:642294;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2372;s:11:\"size_before\";i:22921;s:10:\"size_after\";i:20549;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:38440;s:11:\"size_before\";i:485011;s:10:\"size_after\";i:446571;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:7912;s:11:\"size_before\";i:85927;s:10:\"size_after\";i:78015;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8387;s:11:\"size_before\";i:91094;s:10:\"size_after\";i:82707;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:13268;s:11:\"size_before\";i:154955;s:10:\"size_after\";i:141687;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:21277;s:11:\"size_before\";i:259275;s:10:\"size_after\";i:237998;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:46848;s:11:\"size_before\";i:596187;s:10:\"size_after\";i:549339;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:45625;s:11:\"size_before\";i:579347;s:10:\"size_after\";i:533722;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:9140;s:11:\"size_before\";i:101448;s:10:\"size_after\";i:92308;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1939;s:11:\"size_before\";i:17957;s:10:\"size_after\";i:16018;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9220;s:11:\"size_before\";i:103430;s:10:\"size_after\";i:94210;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.75;s:5:\"bytes\";i:15442;s:11:\"size_before\";i:176462;s:10:\"size_after\";i:161020;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5821,326,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1251038;s:10:\"size_after\";i:1251038;s:4:\"time\";d:0.970000000000000195399252334027551114559173583984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:53265;s:10:\"size_after\";i:53265;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:86704;s:10:\"size_after\";i:86704;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24501;s:10:\"size_after\";i:24501;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:197213;s:10:\"size_after\";i:197213;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:208078;s:10:\"size_after\";i:208078;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:320461;s:10:\"size_after\";i:320461;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:206371;s:10:\"size_after\";i:206371;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39990;s:10:\"size_after\";i:39990;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:114455;s:10:\"size_after\";i:114455;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(5822,356,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.61587195731910782114937319420278072357177734375;s:5:\"bytes\";i:26415;s:11:\"size_before\";i:149950;s:10:\"size_after\";i:123535;s:4:\"time\";d:0.6700000000000001509903313490212894976139068603515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1985;s:11:\"size_before\";i:11643;s:10:\"size_after\";i:9658;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5009;s:11:\"size_before\";i:18452;s:10:\"size_after\";i:13443;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1585;s:11:\"size_before\";i:6305;s:10:\"size_after\";i:4720;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1969;s:11:\"size_before\";i:18605;s:10:\"size_after\";i:16636;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2078;s:11:\"size_before\";i:18316;s:10:\"size_after\";i:16238;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3868;s:11:\"size_before\";i:27228;s:10:\"size_after\";i:23360;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1788;s:11:\"size_before\";i:17038;s:10:\"size_after\";i:15250;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1770;s:11:\"size_before\";i:9239;s:10:\"size_after\";i:7469;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6363;s:11:\"size_before\";i:23124;s:10:\"size_after\";i:16761;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5820,323,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.8354407489323829594241033191792666912078857421875;s:5:\"bytes\";i:35353;s:11:\"size_before\";i:359445;s:10:\"size_after\";i:324092;s:4:\"time\";d:0.2000000000000000388578058618804789148271083831787109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1941;s:11:\"size_before\";i:20295;s:10:\"size_after\";i:18354;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:5000;s:11:\"size_before\";i:52876;s:10:\"size_after\";i:47876;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1647;s:11:\"size_before\";i:17440;s:10:\"size_after\";i:15793;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5412;s:11:\"size_before\";i:55787;s:10:\"size_after\";i:50375;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5910;s:11:\"size_before\";i:55500;s:10:\"size_after\";i:49590;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:6794;s:11:\"size_before\";i:70758;s:10:\"size_after\";i:63964;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:7167;s:11:\"size_before\";i:71371;s:10:\"size_after\";i:64204;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1482;s:11:\"size_before\";i:15418;s:10:\"size_after\";i:13936;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5819,320,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.668994010488138002301639062352478504180908203125;s:5:\"bytes\";i:137750;s:11:\"size_before\";i:1424657;s:10:\"size_after\";i:1286907;s:4:\"time\";d:0.5800000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2500;s:11:\"size_before\";i:23279;s:10:\"size_after\";i:20779;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:7065;s:11:\"size_before\";i:70376;s:10:\"size_after\";i:63311;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2379;s:11:\"size_before\";i:22025;s:10:\"size_after\";i:19646;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:22268;s:11:\"size_before\";i:245366;s:10:\"size_after\";i:223098;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:7307;s:11:\"size_before\";i:75209;s:10:\"size_after\";i:67902;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7938;s:11:\"size_before\";i:80039;s:10:\"size_after\";i:72101;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12675;s:11:\"size_before\";i:123562;s:10:\"size_after\";i:110887;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:16125;s:11:\"size_before\";i:173449;s:10:\"size_after\";i:157324;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:23500;s:11:\"size_before\";i:250936;s:10:\"size_after\";i:227436;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9286;s:11:\"size_before\";i:94255;s:10:\"size_after\";i:84969;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1774;s:11:\"size_before\";i:17117;s:10:\"size_after\";i:15343;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:9989;s:11:\"size_before\";i:100695;s:10:\"size_after\";i:90706;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:14944;s:11:\"size_before\";i:148349;s:10:\"size_after\";i:133405;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5340,1000,'_elementor_controls_usage','a:7:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:1;s:4:\"size\";i:1;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;s:4:\"link\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(5367,882,'passster_activate_protection','true'),(5368,882,'passster_protection_type','password'),(5369,882,'passster_password','lantern704'),(5805,142,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.00711248451725765562514425255358219146728515625;s:5:\"bytes\";i:94820;s:11:\"size_before\";i:861443;s:10:\"size_after\";i:766623;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1451;s:11:\"size_before\";i:14743;s:10:\"size_after\";i:13292;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4663;s:11:\"size_before\";i:44768;s:10:\"size_after\";i:40105;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1324;s:11:\"size_before\";i:13778;s:10:\"size_after\";i:12454;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14787;s:11:\"size_before\";i:141467;s:10:\"size_after\";i:126680;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5122;s:11:\"size_before\";i:49196;s:10:\"size_after\";i:44074;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:5462;s:11:\"size_before\";i:51747;s:10:\"size_after\";i:46285;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9182;s:11:\"size_before\";i:82341;s:10:\"size_after\";i:73159;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:14366;s:11:\"size_before\";i:90867;s:10:\"size_after\";i:76501;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:13390;s:11:\"size_before\";i:140082;s:10:\"size_after\";i:126692;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6309;s:11:\"size_before\";i:59975;s:10:\"size_after\";i:53666;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:10;s:5:\"bytes\";i:1124;s:11:\"size_before\";i:11235;s:10:\"size_after\";i:10111;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:6588;s:11:\"size_before\";i:62852;s:10:\"size_after\";i:56264;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11052;s:11:\"size_before\";i:98392;s:10:\"size_after\";i:87340;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5377,1000,'passster_activate_protection','true'),(5378,1000,'passster_protection_type','password'),(5379,1000,'passster_password','lantern704'),(5804,139,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.1410699272516335867067027720622718334197998046875;s:5:\"bytes\";i:143177;s:11:\"size_before\";i:1411853;s:10:\"size_after\";i:1268676;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:2194;s:11:\"size_before\";i:23400;s:10:\"size_after\";i:21206;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:6262;s:11:\"size_before\";i:70989;s:10:\"size_after\";i:64727;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5;s:5:\"bytes\";i:2045;s:11:\"size_before\";i:21535;s:10:\"size_after\";i:19490;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:21567;s:11:\"size_before\";i:229709;s:10:\"size_after\";i:208142;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7318;s:11:\"size_before\";i:81163;s:10:\"size_after\";i:73845;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:7651;s:11:\"size_before\";i:85585;s:10:\"size_after\";i:77934;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:12792;s:11:\"size_before\";i:133842;s:10:\"size_after\";i:121050;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:26687;s:11:\"size_before\";i:155277;s:10:\"size_after\";i:128590;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:22629;s:11:\"size_before\";i:229988;s:10:\"size_after\";i:207359;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:8856;s:11:\"size_before\";i:98922;s:10:\"size_after\";i:90066;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1695;s:11:\"size_before\";i:17562;s:10:\"size_after\";i:15867;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:9745;s:11:\"size_before\";i:110519;s:10:\"size_after\";i:100774;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:13736;s:11:\"size_before\";i:153362;s:10:\"size_after\";i:139626;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5387,998,'passster_activate_protection','true'),(5388,998,'passster_protection_type','password'),(5389,998,'passster_password','lantern704'),(5390,996,'passster_activate_protection','true'),(5391,996,'passster_protection_type','password'),(5392,996,'passster_password','lantern704'),(5393,1078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5394,1078,'_menu_item_type','post_type'),(5395,1078,'_menu_item_menu_item_parent','0'),(5396,1078,'_menu_item_object_id','882'),(5397,1078,'_menu_item_object','page'),(5398,1078,'_menu_item_target',''),(5399,1078,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5400,1078,'_menu_item_xfn',''),(5401,1078,'_menu_item_url',''),(5405,1080,'_wp_attached_file','2020/10/lantern_3_REV_LOGO.png'),(5406,1080,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2229;s:6:\"height\";i:1287;s:4:\"file\";s:30:\"2020/10/lantern_3_REV_LOGO.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1024x591.png\";s:5:\"width\";i:1024;s:6:\"height\";i:591;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-768x443.png\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1536x887.png\";s:5:\"width\";i:1536;s:6:\"height\";i:887;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-2048x1182.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1182;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1170x785.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1039x600.png\";s:5:\"width\";i:1039;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:29:\"lantern_3_REV_LOGO-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-496x286.png\";s:5:\"width\";i:496;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5803,136,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.4467719494974655702890231623314321041107177734375;s:5:\"bytes\";i:145574;s:11:\"size_before\";i:1540992;s:10:\"size_after\";i:1395418;s:4:\"time\";d:0.6999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1959;s:11:\"size_before\";i:21039;s:10:\"size_after\";i:19080;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5430;s:11:\"size_before\";i:62596;s:10:\"size_after\";i:57166;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1896;s:11:\"size_before\";i:19725;s:10:\"size_after\";i:17829;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:30353;s:11:\"size_before\";i:193406;s:10:\"size_after\";i:163053;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:5860;s:11:\"size_before\";i:69125;s:10:\"size_after\";i:63265;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:6284;s:11:\"size_before\";i:73641;s:10:\"size_after\";i:67357;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:10603;s:11:\"size_before\";i:114794;s:10:\"size_after\";i:104191;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:12666;s:11:\"size_before\";i:152039;s:10:\"size_after\";i:139373;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:22274;s:11:\"size_before\";i:270178;s:10:\"size_after\";i:247904;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:18220;s:11:\"size_before\";i:221261;s:10:\"size_after\";i:203041;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7497;s:11:\"size_before\";i:88066;s:10:\"size_after\";i:80569;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:9;s:5:\"bytes\";i:1396;s:11:\"size_before\";i:15509;s:10:\"size_after\";i:14113;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:9002;s:11:\"size_before\";i:103564;s:10:\"size_after\";i:94562;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12134;s:11:\"size_before\";i:136049;s:10:\"size_after\";i:123915;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5800,127,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.363057722698680862549736048094928264617919921875;s:5:\"bytes\";i:149896;s:11:\"size_before\";i:1600930;s:10:\"size_after\";i:1451034;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2879;s:11:\"size_before\";i:25715;s:10:\"size_after\";i:22836;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:8003;s:11:\"size_before\";i:81770;s:10:\"size_after\";i:73767;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2803;s:11:\"size_before\";i:25581;s:10:\"size_after\";i:22778;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:25076;s:11:\"size_before\";i:279599;s:10:\"size_after\";i:254523;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7873;s:11:\"size_before\";i:83463;s:10:\"size_after\";i:75590;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:8525;s:11:\"size_before\";i:89181;s:10:\"size_after\";i:80656;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:13248;s:11:\"size_before\";i:135684;s:10:\"size_after\";i:122436;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:17601;s:11:\"size_before\";i:196148;s:10:\"size_after\";i:178547;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:25161;s:11:\"size_before\";i:276787;s:10:\"size_after\";i:251626;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:10062;s:11:\"size_before\";i:106098;s:10:\"size_after\";i:96036;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2073;s:11:\"size_before\";i:18892;s:10:\"size_after\";i:16819;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:10190;s:11:\"size_before\";i:108413;s:10:\"size_after\";i:98223;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:16402;s:11:\"size_before\";i:173599;s:10:\"size_after\";i:157197;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5801,130,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.2372245412807263420518211205489933490753173828125;s:5:\"bytes\";i:77058;s:11:\"size_before\";i:935485;s:10:\"size_after\";i:858427;s:4:\"time\";d:0.450000000000000122124532708767219446599483489990234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1519;s:11:\"size_before\";i:16075;s:10:\"size_after\";i:14556;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4181;s:11:\"size_before\";i:48055;s:10:\"size_after\";i:43874;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1416;s:11:\"size_before\";i:15028;s:10:\"size_after\";i:13612;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10285;s:11:\"size_before\";i:145364;s:10:\"size_after\";i:135079;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4902;s:11:\"size_before\";i:55086;s:10:\"size_after\";i:50184;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5101;s:11:\"size_before\";i:57639;s:10:\"size_after\";i:52538;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:8376;s:11:\"size_before\";i:91095;s:10:\"size_after\";i:82719;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:8224;s:11:\"size_before\";i:105672;s:10:\"size_after\";i:97448;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:10878;s:11:\"size_before\";i:149397;s:10:\"size_after\";i:138519;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:5796;s:11:\"size_before\";i:66155;s:10:\"size_after\";i:60359;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1180;s:11:\"size_before\";i:12502;s:10:\"size_after\";i:11322;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5965;s:11:\"size_before\";i:68910;s:10:\"size_after\";i:62945;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9235;s:11:\"size_before\";i:104507;s:10:\"size_after\";i:95272;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5777,782,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.0578959740461737482064563664607703685760498046875;s:5:\"bytes\";i:187201;s:11:\"size_before\";i:1433623;s:10:\"size_after\";i:1246422;s:4:\"time\";d:0.3200000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4719;s:11:\"size_before\";i:41904;s:10:\"size_after\";i:37185;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:44900;s:11:\"size_before\";i:323920;s:10:\"size_after\";i:279020;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1767;s:11:\"size_before\";i:16262;s:10:\"size_after\";i:14495;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:27246;s:11:\"size_before\";i:201173;s:10:\"size_after\";i:173927;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:26508;s:11:\"size_before\";i:220236;s:10:\"size_after\";i:193728;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:13831;s:11:\"size_before\";i:106565;s:10:\"size_after\";i:92734;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:21784;s:11:\"size_before\";i:162091;s:10:\"size_after\";i:140307;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13144;s:11:\"size_before\";i:102766;s:10:\"size_after\";i:89622;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:20348;s:11:\"size_before\";i:154121;s:10:\"size_after\";i:133773;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:923;s:11:\"size_before\";i:8915;s:10:\"size_after\";i:7992;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:12031;s:11:\"size_before\";i:95670;s:10:\"size_after\";i:83639;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5421,1083,'_elementor_edit_mode','builder'),(5422,1083,'_elementor_template_type','section'),(5423,1083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5424,1083,'_elementor_version','3.0.11'),(5428,1083,'_wp_page_template','default'),(5429,1083,'_elementor_data','[{\"id\":\"5d54517f\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"388d1602\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1efdf2d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signs and Business Cards\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6c6034\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"79cceac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36bdcf06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><strong>Business Card Vendor:<\\/strong><\\/div><div>Omega Graphics<\\/div><div>293 Brookdale Street, Kannapolis, NC 28083<\\/div><div>Phone: (704) 933-5715<\\/div><div>\\u00a0<\\/div><div>Reference Business Card<br \\/>2 Sided, Full Color, 14pt UV Coated<\\/div><div>\\u00a0<\\/div><div>Online Vendor:<\\/div><p><a href=\\\"https:\\/\\/www.houseofmagnets.com\\/\\\">https:\\/\\/www.houseofmagnets.com\\/<\\/a><\\/p><p>Great for:<\\/p><ul><li>Business Cards<\\/li><li>Magnets<\\/li><li>Apparel<\\/li><li>Signs<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"71635036\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"59edc133\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/LANTERN_BC_cmp.jpg\",\"id\":906},\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dbf3c94\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"56cd66aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7da2769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3386a3c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><strong>Sign Vendor:<\\/strong><\\/div><div>Omega Graphics<\\/div><div>293 Brookdale Street, Kannapolis, NC 28083<\\/div><div>Phone: (704) 933-5715<\\/div><div>\\u00a0<\\/div><div>Reference Information<\\/div><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"549d4064\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e89b284\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Yard-signs-All-8-17-08.jpg\",\"id\":910},\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"26719f64\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"267ae72e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Email Signature\",\"size\":\"xl\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12f249f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #0b5394;\\\"><b>John Smith\\u00a0<\\/b><br \\/><\\/span><\\/div><div><div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #0b5394;\\\"><b>Lantern Realty &amp; Development<\\/b><\\/span><\\/div><div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #000000;\\\"><i>Licensed Realtor<\\/i><br \\/><\\/span><\\/div><div><span style=\\\"font-family: garamond, times new roman, serif;\\\"><span style=\\\"color: #000000;\\\"><b>Phone: (555) 555-5555<\\/b>\\u00a0<\\/span><br \\/><\\/span><\\/div><\\/div><div><span style=\\\"font-family: garamond, times new roman, serif;\\\"><a href=\\\"https:\\/\\/lantern-realty.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=https:\\/\\/lantern-realty.com\\/&amp;source=gmail&amp;ust=1602518659720000&amp;usg=AFQjCNHqdvTLiGoDEvr-Znne2j_FeROb2Q\\\">Let Us Guide You Home<\\/a><br \\/><\\/span><\\/div><div><img class=\\\"CToWUd\\\" src=\\\"https:\\/\\/ci3.googleusercontent.com\\/proxy\\/74nNqDIzJuR_wWjaTkJvrx5eip9Ni17jksYQSrMkwfZfpbCBw9NkOLtcpopvST_U1bIZr7COpojscD2oXuQPL5y-vPib9iU40jAZT3zGFBKsC7_lBAFnNsSboEgRzyXI7ZCSUEGc2besDA5DjHmzGSwVqgD0GnIBkw=s0-d-e1-ft#https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-1-e1535144736200-1024x388.jpg\\\" width=\\\"200\\\" height=\\\"75\\\" \\/><\\/div><div><i><b><span style=\\\"color: #0b5394;\\\"><span style=\\\"font-family: garamond, times new roman, serif;\\\">Proudly Servi<\\/span><span style=\\\"font-family: garamond, times new roman, serif;\\\">ng Cabarrus, Rowan, Stanly, Iredell, Mecklenburg and surrounding\\u00a0areas<\\/span><\\/span><\\/b><\\/i><\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"19d87342\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"26a73d69\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5799,124,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.501042349298611355834509595297276973724365234375;s:5:\"bytes\";i:193753;s:11:\"size_before\";i:1684656;s:10:\"size_after\";i:1490903;s:4:\"time\";d:0.420000000000000095479180117763462476432323455810546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2354;s:11:\"size_before\";i:19758;s:10:\"size_after\";i:17404;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7045;s:11:\"size_before\";i:59178;s:10:\"size_after\";i:52133;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:33804;s:11:\"size_before\";i:276208;s:10:\"size_after\";i:242404;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2264;s:11:\"size_before\";i:18190;s:10:\"size_after\";i:15926;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:19118;s:11:\"size_before\";i:187874;s:10:\"size_after\";i:168756;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:7234;s:11:\"size_before\";i:60946;s:10:\"size_after\";i:53712;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:7716;s:11:\"size_before\";i:65326;s:10:\"size_after\";i:57610;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:11631;s:11:\"size_before\";i:99251;s:10:\"size_after\";i:87620;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:17841;s:11:\"size_before\";i:146436;s:10:\"size_after\";i:128595;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:26041;s:11:\"size_before\";i:246425;s:10:\"size_after\";i:220384;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:19861;s:11:\"size_before\";i:192427;s:10:\"size_after\";i:172566;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:10111;s:11:\"size_before\";i:81605;s:10:\"size_after\";i:71494;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1639;s:11:\"size_before\";i:14013;s:10:\"size_after\";i:12374;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9563;s:11:\"size_before\";i:77054;s:10:\"size_after\";i:67491;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:17531;s:11:\"size_before\";i:139965;s:10:\"size_after\";i:122434;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5435,1083,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:5:\"align\";i:2;s:7:\"link_to\";i:2;s:13:\"open_lightbox\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:8:\"overflow\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:3:\"gap\";i:3;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}}'),(5778,747,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.374486110651556458606137312017381191253662109375;s:5:\"bytes\";i:376816;s:11:\"size_before\";i:4019591;s:10:\"size_after\";i:3642775;s:4:\"time\";d:0.7500000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:6842;s:11:\"size_before\";i:72868;s:10:\"size_after\";i:66026;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:54217;s:11:\"size_before\";i:599960;s:10:\"size_after\";i:545743;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2245;s:11:\"size_before\";i:22437;s:10:\"size_after\";i:20192;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:35680;s:11:\"size_before\";i:384657;s:10:\"size_after\";i:348977;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:118965;s:11:\"size_before\";i:1242286;s:10:\"size_after\";i:1123321;s:4:\"time\";d:0.25;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:52666;s:11:\"size_before\";i:577500;s:10:\"size_after\";i:524834;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:18292;s:11:\"size_before\";i:193315;s:10:\"size_after\";i:175023;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:27689;s:11:\"size_before\";i:298800;s:10:\"size_after\";i:271111;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:17692;s:11:\"size_before\";i:188875;s:10:\"size_after\";i:171183;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:24289;s:11:\"size_before\";i:249980;s:10:\"size_after\";i:225691;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1347;s:11:\"size_before\";i:12408;s:10:\"size_after\";i:11061;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:16892;s:11:\"size_before\";i:176505;s:10:\"size_after\";i:159613;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5506,882,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6673,1171,'_wp_page_template','template/template-onepage.php'),(6674,1171,'_elementor_edit_mode','builder'),(6675,1171,'_elementor_template_type','wp-page'),(6676,1171,'_elementor_version','3.0.11'),(6677,1171,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a626a\",\"elType\":\"widget\",\"settings\":{\"eael_post_grid_columns\":\"eael-col-1\",\"show_load_more_text\":\"Load More\",\"eael_excerpt_length\":100,\"excerpt_expanison_indicator\":\"...\",\"eael_read_more_text\":\"Read More\",\"read_more_button_text\":\"Read More\",\"image_link_nofollow\":\"true\",\"title_link_nofollow\":\"true\",\"read_more_link_nofollow\":\"true\"},\"elements\":[],\"widgetType\":\"eael-post-grid\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5786,615,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.5111939282101172210559525410644710063934326171875;s:5:\"bytes\";i:331855;s:11:\"size_before\";i:3157158;s:10:\"size_after\";i:2825303;s:4:\"time\";d:0.640000000000000124344978758017532527446746826171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9820;s:11:\"size_before\";i:84198;s:10:\"size_after\";i:74378;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3320;s:11:\"size_before\";i:26594;s:10:\"size_after\";i:23274;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:51154;s:11:\"size_before\";i:504489;s:10:\"size_after\";i:453335;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:3053;s:11:\"size_before\";i:24303;s:10:\"size_after\";i:21250;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:40180;s:11:\"size_before\";i:390666;s:10:\"size_after\";i:350486;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:10586;s:11:\"size_before\";i:97010;s:10:\"size_after\";i:86424;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:11456;s:11:\"size_before\";i:103316;s:10:\"size_after\";i:91860;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:17594;s:11:\"size_before\";i:170006;s:10:\"size_after\";i:152412;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:26029;s:11:\"size_before\";i:258852;s:10:\"size_after\";i:232823;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:49464;s:11:\"size_before\";i:481206;s:10:\"size_after\";i:431742;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:40465;s:11:\"size_before\";i:395664;s:10:\"size_after\";i:355199;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:13587;s:11:\"size_before\";i:120789;s:10:\"size_after\";i:107202;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2377;s:11:\"size_before\";i:19494;s:10:\"size_after\";i:17117;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:14929;s:11:\"size_before\";i:134534;s:10:\"size_after\";i:119605;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:20974;s:11:\"size_before\";i:193734;s:10:\"size_after\";i:172760;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:16867;s:11:\"size_before\";i:152303;s:10:\"size_after\";i:135436;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(6667,1170,'_elementor_template_type','wp-page'),(6668,1170,'_elementor_version','3.0.11'),(6669,1170,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a626a\",\"elType\":\"widget\",\"settings\":{\"eael_post_grid_columns\":\"eael-col-1\",\"show_load_more_text\":\"Load More\",\"eael_excerpt_length\":100,\"excerpt_expanison_indicator\":\"...\",\"eael_read_more_text\":\"Read More\",\"read_more_button_text\":\"Read More\",\"image_link_nofollow\":\"true\",\"title_link_nofollow\":\"true\",\"read_more_link_nofollow\":\"true\"},\"elements\":[],\"widgetType\":\"eael-post-grid\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5776,786,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.645170763222036924844360328279435634613037109375;s:5:\"bytes\";i:3625;s:11:\"size_before\";i:34053;s:10:\"size_after\";i:30428;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2390;s:11:\"size_before\";i:22215;s:10:\"size_after\";i:19825;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1235;s:11:\"size_before\";i:11838;s:10:\"size_after\";i:10603;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5785,618,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.4006417647623674582746389205567538738250732421875;s:5:\"bytes\";i:687796;s:11:\"size_before\";i:6613015;s:10:\"size_after\";i:5925219;s:4:\"time\";d:1.77000000000000046185277824406512081623077392578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.75;s:5:\"bytes\";i:6327;s:11:\"size_before\";i:58877;s:10:\"size_after\";i:52550;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:51507;s:11:\"size_before\";i:506793;s:10:\"size_after\";i:455286;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2520;s:11:\"size_before\";i:23742;s:10:\"size_after\";i:21222;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:63262;s:11:\"size_before\";i:620985;s:10:\"size_after\";i:557723;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:109094;s:11:\"size_before\";i:1036556;s:10:\"size_after\";i:927462;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:185288;s:11:\"size_before\";i:1753821;s:10:\"size_after\";i:1568533;s:4:\"time\";d:0.83999999999999996891375531049561686813831329345703125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2083;s:11:\"size_before\";i:18100;s:10:\"size_after\";i:16017;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:46439;s:11:\"size_before\";i:437930;s:10:\"size_after\";i:391491;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:7560;s:11:\"size_before\";i:80608;s:10:\"size_after\";i:73048;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:8297;s:11:\"size_before\";i:86582;s:10:\"size_after\";i:78285;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:13907;s:11:\"size_before\";i:141706;s:10:\"size_after\";i:127799;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:24142;s:11:\"size_before\";i:231840;s:10:\"size_after\";i:207698;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:57433;s:11:\"size_before\";i:546992;s:10:\"size_after\";i:489559;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:56445;s:11:\"size_before\";i:527138;s:10:\"size_after\";i:470693;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.75;s:5:\"bytes\";i:10070;s:11:\"size_before\";i:103293;s:10:\"size_after\";i:93223;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1743;s:11:\"size_before\";i:17228;s:10:\"size_after\";i:15485;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:15703;s:11:\"size_before\";i:157500;s:10:\"size_after\";i:141797;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13386;s:11:\"size_before\";i:133326;s:10:\"size_after\";i:119940;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:12590;s:11:\"size_before\";i:129998;s:10:\"size_after\";i:117408;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5784,621,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.1383841528848801516460298444144427776336669921875;s:5:\"bytes\";i:36847;s:11:\"size_before\";i:330811;s:10:\"size_after\";i:293964;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:5023;s:11:\"size_before\";i:42844;s:10:\"size_after\";i:37821;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1691;s:11:\"size_before\";i:14362;s:10:\"size_after\";i:12671;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1631;s:11:\"size_before\";i:14114;s:10:\"size_after\";i:12483;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:4417;s:11:\"size_before\";i:41972;s:10:\"size_after\";i:37555;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5169;s:11:\"size_before\";i:47679;s:10:\"size_after\";i:42510;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4162;s:11:\"size_before\";i:46737;s:10:\"size_after\";i:42575;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6731;s:11:\"size_before\";i:55990;s:10:\"size_after\";i:49259;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1231;s:11:\"size_before\";i:11037;s:10:\"size_after\";i:9806;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:6792;s:11:\"size_before\";i:56076;s:10:\"size_after\";i:49284;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5797,119,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.96825575686356568638757380540482699871063232421875;s:5:\"bytes\";i:9900;s:11:\"size_before\";i:124243;s:10:\"size_after\";i:114343;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1349;s:11:\"size_before\";i:14893;s:10:\"size_after\";i:13544;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:9;s:5:\"bytes\";i:1338;s:11:\"size_before\";i:14860;s:10:\"size_after\";i:13522;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2895;s:11:\"size_before\";i:40882;s:10:\"size_after\";i:37987;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:3163;s:11:\"size_before\";i:41442;s:10:\"size_after\";i:38279;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1155;s:11:\"size_before\";i:12166;s:10:\"size_after\";i:11011;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5798,121,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.0778000269946534928067194414325058460235595703125;s:5:\"bytes\";i:278441;s:11:\"size_before\";i:3067274;s:10:\"size_after\";i:2788833;s:4:\"time\";d:0.87000000000000021760371282653068192303180694580078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2717;s:11:\"size_before\";i:22722;s:10:\"size_after\";i:20005;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:8108;s:11:\"size_before\";i:69844;s:10:\"size_after\";i:61736;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:39980;s:11:\"size_before\";i:425367;s:10:\"size_after\";i:385387;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:52644;s:11:\"size_before\";i:557850;s:10:\"size_after\";i:505206;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2713;s:11:\"size_before\";i:21312;s:10:\"size_after\";i:18599;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:24850;s:11:\"size_before\";i:335917;s:10:\"size_after\";i:311067;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6974;s:11:\"size_before\";i:74041;s:10:\"size_after\";i:67067;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:7593;s:11:\"size_before\";i:78828;s:10:\"size_after\";i:71235;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:11510;s:11:\"size_before\";i:130748;s:10:\"size_after\";i:119238;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.75;s:5:\"bytes\";i:18551;s:11:\"size_before\";i:211994;s:10:\"size_after\";i:193443;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:34051;s:11:\"size_before\";i:415049;s:10:\"size_after\";i:380998;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:27956;s:11:\"size_before\";i:343552;s:10:\"size_after\";i:315596;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:10274;s:11:\"size_before\";i:96908;s:10:\"size_after\";i:86634;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1803;s:11:\"size_before\";i:15985;s:10:\"size_after\";i:14182;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:12369;s:11:\"size_before\";i:111855;s:10:\"size_after\";i:99486;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:16348;s:11:\"size_before\";i:155302;s:10:\"size_after\";i:138954;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5795,106,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.9640212944342056999857959453947842121124267578125;s:5:\"bytes\";i:64072;s:11:\"size_before\";i:535539;s:10:\"size_after\";i:471467;s:4:\"time\";d:0.269999999999999962252417162744677625596523284912109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2347;s:11:\"size_before\";i:22047;s:10:\"size_after\";i:19700;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:6617;s:11:\"size_before\";i:63002;s:10:\"size_after\";i:56385;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2204;s:11:\"size_before\";i:20186;s:10:\"size_after\";i:17982;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:7708;s:11:\"size_before\";i:72502;s:10:\"size_after\";i:64794;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:8208;s:11:\"size_before\";i:76601;s:10:\"size_after\";i:68393;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.9200000000000017053025658242404460906982421875;s:5:\"bytes\";i:16880;s:11:\"size_before\";i:94183;s:10:\"size_after\";i:77303;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:9520;s:11:\"size_before\";i:88394;s:10:\"size_after\";i:78874;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1886;s:11:\"size_before\";i:17004;s:10:\"size_after\";i:15118;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8702;s:11:\"size_before\";i:81620;s:10:\"size_after\";i:72918;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5796,112,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.1379971185931712085448452853597700595855712890625;s:5:\"bytes\";i:300473;s:11:\"size_before\";i:2963830;s:10:\"size_after\";i:2663357;s:4:\"time\";d:0.57999999999999996003197111349436454474925994873046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5;s:5:\"bytes\";i:2940;s:11:\"size_before\";i:25574;s:10:\"size_after\";i:22634;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:9713;s:11:\"size_before\";i:89316;s:10:\"size_after\";i:79603;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:44272;s:11:\"size_before\";i:452793;s:10:\"size_after\";i:408521;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22634;s:10:\"size_after\";i:22634;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:46038;s:11:\"size_before\";i:400557;s:10:\"size_after\";i:354519;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:9938;s:11:\"size_before\";i:95179;s:10:\"size_after\";i:85241;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:10807;s:11:\"size_before\";i:101762;s:10:\"size_after\";i:90955;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:17264;s:11:\"size_before\";i:169740;s:10:\"size_after\";i:152476;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:26126;s:11:\"size_before\";i:266380;s:10:\"size_after\";i:240254;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:52768;s:11:\"size_before\";i:488423;s:10:\"size_after\";i:435655;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:42949;s:11:\"size_before\";i:400270;s:10:\"size_after\";i:357321;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12582;s:11:\"size_before\";i:116972;s:10:\"size_after\";i:104390;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:12;s:5:\"bytes\";i:2317;s:11:\"size_before\";i:19312;s:10:\"size_after\";i:16995;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:104390;s:10:\"size_after\";i:104390;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:22759;s:11:\"size_before\";i:210528;s:10:\"size_after\";i:187769;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5794,56,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6741844;s:10:\"size_after\";i:6741844;s:4:\"time\";d:8.469999999999998863131622783839702606201171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40749;s:10:\"size_after\";i:40749;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:94027;s:10:\"size_after\";i:94027;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:528175;s:10:\"size_after\";i:528175;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:878637;s:10:\"size_after\";i:878637;s:4:\"time\";d:0.70999999999999996447286321199499070644378662109375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26157;s:10:\"size_after\";i:26157;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:975627;s:10:\"size_after\";i:975627;s:4:\"time\";d:0.770000000000000017763568394002504646778106689453125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:163342;s:10:\"size_after\";i:163342;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:169081;s:10:\"size_after\";i:169081;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:306190;s:10:\"size_after\";i:306190;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:528002;s:10:\"size_after\";i:528002;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1108102;s:10:\"size_after\";i:1108102;s:4:\"time\";d:1.1799999999999999378275106209912337362766265869140625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1006319;s:10:\"size_after\";i:1006319;s:4:\"time\";d:1.1599999999999999200639422269887290894985198974609375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:193007;s:10:\"size_after\";i:193007;s:4:\"time\";d:0.64000000000000001332267629550187848508358001708984375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30647;s:10:\"size_after\";i:30647;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:125372;s:10:\"size_after\";i:125372;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:568410;s:10:\"size_after\";i:568410;s:4:\"time\";d:2.029999999999999804600747665972448885440826416015625;}}}'),(5782,627,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.953020811639902376555255614221096038818359375;s:5:\"bytes\";i:77901;s:11:\"size_before\";i:782687;s:10:\"size_after\";i:704786;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5509;s:11:\"size_before\";i:57362;s:10:\"size_after\";i:51853;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1878;s:11:\"size_before\";i:18757;s:10:\"size_after\";i:16879;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1953;s:11:\"size_before\";i:18823;s:10:\"size_after\";i:16870;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.25;s:5:\"bytes\";i:5686;s:11:\"size_before\";i:61438;s:10:\"size_after\";i:55752;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6088;s:11:\"size_before\";i:65156;s:10:\"size_after\";i:59068;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:13265;s:11:\"size_before\";i:73965;s:10:\"size_after\";i:60700;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:8958;s:11:\"size_before\";i:111833;s:10:\"size_after\";i:102875;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6863;s:11:\"size_before\";i:74896;s:10:\"size_after\";i:68033;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1458;s:11:\"size_before\";i:14204;s:10:\"size_after\";i:12746;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7030;s:11:\"size_before\";i:74559;s:10:\"size_after\";i:67529;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:12409;s:11:\"size_before\";i:128096;s:10:\"size_after\";i:115687;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:6804;s:11:\"size_before\";i:83598;s:10:\"size_after\";i:76794;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5783,624,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9901750553057127035572193562984466552734375;s:5:\"bytes\";i:123645;s:11:\"size_before\";i:1237666;s:10:\"size_after\";i:1114021;s:4:\"time\";d:0.31999999999999995115018691649311222136020660400390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:6163;s:11:\"size_before\";i:57192;s:10:\"size_after\";i:51029;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2219;s:11:\"size_before\";i:18050;s:10:\"size_after\";i:15831;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15831;s:10:\"size_after\";i:15831;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:20731;s:11:\"size_before\";i:216724;s:10:\"size_after\";i:195993;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5992;s:11:\"size_before\";i:58170;s:10:\"size_after\";i:52178;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6511;s:11:\"size_before\";i:62495;s:10:\"size_after\";i:55984;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:9677;s:11:\"size_before\";i:98884;s:10:\"size_after\";i:89207;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:20967;s:11:\"size_before\";i:117327;s:10:\"size_after\";i:96360;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:20195;s:11:\"size_before\";i:219757;s:10:\"size_after\";i:199562;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7661;s:11:\"size_before\";i:73661;s:10:\"size_after\";i:66000;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1602;s:11:\"size_before\";i:13274;s:10:\"size_after\";i:11672;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:66000;s:10:\"size_after\";i:66000;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12520;s:11:\"size_before\";i:127893;s:10:\"size_after\";i:115373;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:9407;s:11:\"size_before\";i:92408;s:10:\"size_after\";i:83001;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(5791,22,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.3246346555323587068642154918052256107330322265625;s:5:\"bytes\";i:1595;s:11:\"size_before\";i:19160;s:10:\"size_after\";i:17565;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:545;s:11:\"size_before\";i:6534;s:10:\"size_after\";i:5989;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:565;s:11:\"size_before\";i:6558;s:10:\"size_after\";i:5993;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:485;s:11:\"size_before\";i:6068;s:10:\"size_after\";i:5583;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5792,28,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4637260431745477973208835464902222156524658203125;s:5:\"bytes\";i:21458;s:11:\"size_before\";i:253529;s:10:\"size_after\";i:232071;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:545;s:11:\"size_before\";i:6492;s:10:\"size_after\";i:5947;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1610;s:11:\"size_before\";i:16989;s:10:\"size_after\";i:15379;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5947;s:10:\"size_after\";i:5947;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1952;s:11:\"size_before\";i:21459;s:10:\"size_after\";i:19507;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1866;s:11:\"size_before\";i:21418;s:10:\"size_after\";i:19552;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3237;s:11:\"size_before\";i:33504;s:10:\"size_after\";i:30267;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:3565;s:11:\"size_before\";i:36140;s:10:\"size_after\";i:32575;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1884;s:11:\"size_before\";i:20728;s:10:\"size_after\";i:18844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:521;s:11:\"size_before\";i:6044;s:10:\"size_after\";i:5523;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18844;s:10:\"size_after\";i:18844;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3266;s:11:\"size_before\";i:32722;s:10:\"size_after\";i:29456;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:13:\"site_icon-270\";O:8:\"stdClass\":5:{s:7:\"percent\";i:9;s:5:\"bytes\";i:1311;s:11:\"size_before\";i:14567;s:10:\"size_after\";i:13256;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:13:\"site_icon-192\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:845;s:11:\"size_before\";i:9168;s:10:\"size_after\";i:8323;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:13:\"site_icon-180\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:696;s:11:\"size_before\";i:8280;s:10:\"size_after\";i:7584;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"site_icon-32\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:160;s:11:\"size_before\";i:1227;s:10:\"size_after\";i:1067;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5793,38,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.14477764282062111078630550764501094818115234375;s:5:\"bytes\";i:313878;s:11:\"size_before\";i:3093986;s:10:\"size_after\";i:2780108;s:4:\"time\";d:0.680000000000000159872115546022541821002960205078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:3011;s:11:\"size_before\";i:25932;s:10:\"size_after\";i:22921;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7128;s:11:\"size_before\";i:69622;s:10:\"size_after\";i:62494;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:49395;s:11:\"size_before\";i:459729;s:10:\"size_after\";i:410334;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:55946;s:11:\"size_before\";i:513187;s:10:\"size_after\";i:457241;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:2701;s:11:\"size_before\";i:22252;s:10:\"size_after\";i:19551;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:32543;s:11:\"size_before\";i:338324;s:10:\"size_after\";i:305781;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:7994;s:11:\"size_before\";i:81188;s:10:\"size_after\";i:73194;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:8588;s:11:\"size_before\";i:86527;s:10:\"size_after\";i:77939;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:14144;s:11:\"size_before\";i:136573;s:10:\"size_after\";i:122429;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:22795;s:11:\"size_before\";i:209975;s:10:\"size_after\";i:187180;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:38177;s:11:\"size_before\";i:411667;s:10:\"size_after\";i:373490;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.25;s:5:\"bytes\";i:31227;s:11:\"size_before\";i:337751;s:10:\"size_after\";i:306524;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:10321;s:11:\"size_before\";i:102965;s:10:\"size_after\";i:92644;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2243;s:11:\"size_before\";i:19001;s:10:\"size_after\";i:16758;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:12697;s:11:\"size_before\";i:128323;s:10:\"size_after\";i:115626;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:14968;s:11:\"size_before\";i:150970;s:10:\"size_after\";i:136002;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5790,21,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.377217849279784189775455160997807979583740234375;s:5:\"bytes\";i:86013;s:11:\"size_before\";i:694930;s:10:\"size_after\";i:608917;s:4:\"time\";d:0.5100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:857;s:11:\"size_before\";i:7602;s:10:\"size_after\";i:6745;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1434;s:11:\"size_before\";i:13522;s:10:\"size_after\";i:12088;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:5823;s:11:\"size_before\";i:46522;s:10:\"size_after\";i:40699;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7841;s:11:\"size_before\";i:65206;s:10:\"size_after\";i:57365;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:427;s:11:\"size_before\";i:4907;s:10:\"size_after\";i:4480;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:10450;s:11:\"size_before\";i:86680;s:10:\"size_after\";i:76230;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2742;s:11:\"size_before\";i:22670;s:10:\"size_after\";i:19928;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2612;s:11:\"size_before\";i:21362;s:10:\"size_after\";i:18750;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:4407;s:11:\"size_before\";i:35600;s:10:\"size_after\";i:31193;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:6485;s:11:\"size_before\";i:53026;s:10:\"size_after\";i:46541;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:11977;s:11:\"size_before\";i:91703;s:10:\"size_after\";i:79726;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:15239;s:11:\"size_before\";i:116117;s:10:\"size_after\";i:100878;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2523;s:11:\"size_before\";i:20583;s:10:\"size_after\";i:18060;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:682;s:11:\"size_before\";i:6607;s:10:\"size_after\";i:5925;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1907;s:11:\"size_before\";i:16732;s:10:\"size_after\";i:14825;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:10607;s:11:\"size_before\";i:86091;s:10:\"size_after\";i:75484;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5488,998,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:5;s:14:\"caption_source\";i:3;s:7:\"link_to\";i:5;s:5:\"align\";i:3;s:13:\"open_lightbox\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(5788,609,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.9303974121049858325704917660914361476898193359375;s:5:\"bytes\";i:96063;s:11:\"size_before\";i:878861;s:10:\"size_after\";i:782798;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:8757;s:11:\"size_before\";i:75156;s:10:\"size_after\";i:66399;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3265;s:11:\"size_before\";i:25623;s:10:\"size_after\";i:22358;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:3078;s:11:\"size_before\";i:24257;s:10:\"size_after\";i:21179;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:8290;s:11:\"size_before\";i:77203;s:10:\"size_after\";i:68913;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:9064;s:11:\"size_before\";i:82218;s:10:\"size_after\";i:73154;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:11308;s:11:\"size_before\";i:112178;s:10:\"size_after\";i:100870;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:14382;s:11:\"size_before\";i:142001;s:10:\"size_after\";i:127619;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:10955;s:11:\"size_before\";i:98324;s:10:\"size_after\";i:87369;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2424;s:11:\"size_before\";i:18992;s:10:\"size_after\";i:16568;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:11522;s:11:\"size_before\";i:102719;s:10:\"size_after\";i:91197;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:13018;s:11:\"size_before\";i:120190;s:10:\"size_after\";i:107172;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5789,605,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.5452653784111749502017119084484875202178955078125;s:5:\"bytes\";i:544687;s:11:\"size_before\";i:5165228;s:10:\"size_after\";i:4620541;s:4:\"time\";d:1.3900000000000003463895836830488406121730804443359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:4958;s:11:\"size_before\";i:52436;s:10:\"size_after\";i:47478;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:50554;s:11:\"size_before\";i:466223;s:10:\"size_after\";i:415669;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1484;s:11:\"size_before\";i:17080;s:10:\"size_after\";i:15596;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:29505;s:11:\"size_before\";i:275849;s:10:\"size_after\";i:246344;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:99110;s:11:\"size_before\";i:946399;s:10:\"size_after\";i:847289;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:170003;s:11:\"size_before\";i:1578802;s:10:\"size_after\";i:1408799;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1457;s:11:\"size_before\";i:16946;s:10:\"size_after\";i:15489;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:33110;s:11:\"size_before\";i:313514;s:10:\"size_after\";i:280404;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5347;s:11:\"size_before\";i:55745;s:10:\"size_after\";i:50398;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:5768;s:11:\"size_before\";i:59015;s:10:\"size_after\";i:53247;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10237;s:11:\"size_before\";i:99103;s:10:\"size_after\";i:88866;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:17434;s:11:\"size_before\";i:166207;s:10:\"size_after\";i:148773;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:40554;s:11:\"size_before\";i:382977;s:10:\"size_after\";i:342423;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:39507;s:11:\"size_before\";i:377338;s:10:\"size_after\";i:337831;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6718;s:11:\"size_before\";i:68796;s:10:\"size_after\";i:62078;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1100;s:11:\"size_before\";i:12664;s:10:\"size_after\";i:11564;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6592;s:11:\"size_before\";i:68508;s:10:\"size_after\";i:61916;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12639;s:11:\"size_before\";i:121295;s:10:\"size_after\";i:108656;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:8610;s:11:\"size_before\";i:86331;s:10:\"size_after\";i:77721;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5781,646,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4999485097472611272451104014180600643157958984375;s:5:\"bytes\";i:81714;s:11:\"size_before\";i:961347;s:10:\"size_after\";i:879633;s:4:\"time\";d:0.229999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:5061;s:11:\"size_before\";i:57950;s:10:\"size_after\";i:52889;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2174;s:11:\"size_before\";i:21278;s:10:\"size_after\";i:19104;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1843;s:11:\"size_before\";i:17501;s:10:\"size_after\";i:15658;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:6721;s:11:\"size_before\";i:79170;s:10:\"size_after\";i:72449;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:6943;s:11:\"size_before\";i:82320;s:10:\"size_after\";i:75377;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11404;s:11:\"size_before\";i:138571;s:10:\"size_after\";i:127167;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:17002;s:11:\"size_before\";i:195658;s:10:\"size_after\";i:178656;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:7343;s:11:\"size_before\";i:88718;s:10:\"size_after\";i:81375;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1774;s:11:\"size_before\";i:16705;s:10:\"size_after\";i:14931;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6332;s:11:\"size_before\";i:75293;s:10:\"size_after\";i:68961;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:15117;s:11:\"size_before\";i:188183;s:10:\"size_after\";i:173066;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5779,674,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.4783130293206117045201608561910688877105712890625;s:5:\"bytes\";i:225036;s:11:\"size_before\";i:1960532;s:10:\"size_after\";i:1735496;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:9794;s:11:\"size_before\";i:81942;s:10:\"size_after\";i:72148;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:13;s:5:\"bytes\";i:3525;s:11:\"size_before\";i:27118;s:10:\"size_after\";i:23593;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:3226;s:11:\"size_before\";i:24459;s:10:\"size_after\";i:21233;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:43263;s:11:\"size_before\";i:219141;s:10:\"size_after\";i:175878;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:10135;s:11:\"size_before\";i:91345;s:10:\"size_after\";i:81210;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:10958;s:11:\"size_before\";i:97112;s:10:\"size_after\";i:86154;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:15667;s:11:\"size_before\";i:151494;s:10:\"size_after\";i:135827;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5;s:5:\"bytes\";i:19183;s:11:\"size_before\";i:201845;s:10:\"size_after\";i:182662;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:32919;s:11:\"size_before\";i:342395;s:10:\"size_after\";i:309476;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:26898;s:11:\"size_before\";i:283984;s:10:\"size_after\";i:257086;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:13063;s:11:\"size_before\";i:114585;s:10:\"size_after\";i:101522;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2674;s:11:\"size_before\";i:20122;s:10:\"size_after\";i:17448;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:14439;s:11:\"size_before\";i:127702;s:10:\"size_after\";i:113263;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:19292;s:11:\"size_before\";i:177288;s:10:\"size_after\";i:157996;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(5780,663,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.82893888940196802650461904704570770263671875;s:5:\"bytes\";i:113993;s:11:\"size_before\";i:963679;s:10:\"size_after\";i:849686;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:9268;s:11:\"size_before\";i:74859;s:10:\"size_after\";i:65591;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3453;s:11:\"size_before\";i:26702;s:10:\"size_after\";i:23249;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:2736;s:11:\"size_before\";i:21412;s:10:\"size_after\";i:18676;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:12003;s:11:\"size_before\";i:100538;s:10:\"size_after\";i:88535;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12782;s:11:\"size_before\";i:106135;s:10:\"size_after\";i:93353;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:19223;s:11:\"size_before\";i:171195;s:10:\"size_after\";i:151972;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:26447;s:11:\"size_before\";i:229411;s:10:\"size_after\";i:202964;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:13897;s:11:\"size_before\";i:116507;s:10:\"size_after\";i:102610;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2702;s:11:\"size_before\";i:20405;s:10:\"size_after\";i:17703;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11482;s:11:\"size_before\";i:96515;s:10:\"size_after\";i:85033;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5771,806,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.666942828842504553676917566917836666107177734375;s:5:\"bytes\";i:108587;s:11:\"size_before\";i:1252887;s:10:\"size_after\";i:1144300;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6632;s:11:\"size_before\";i:72476;s:10:\"size_after\";i:65844;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2369;s:11:\"size_before\";i:23482;s:10:\"size_after\";i:21113;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:15634;s:11:\"size_before\";i:195236;s:10:\"size_after\";i:179602;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:26239;s:11:\"size_before\";i:282634;s:10:\"size_after\";i:256395;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:15565;s:11:\"size_before\";i:191589;s:10:\"size_after\";i:176024;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:21126;s:11:\"size_before\";i:247201;s:10:\"size_after\";i:226075;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1213;s:11:\"size_before\";i:11998;s:10:\"size_after\";i:10785;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:19809;s:11:\"size_before\";i:228271;s:10:\"size_after\";i:208462;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5772,799,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.6529889234817094489926603273488581180572509765625;s:5:\"bytes\";i:70497;s:11:\"size_before\";i:1059629;s:10:\"size_after\";i:989132;s:4:\"time\";d:0.210000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4277;s:11:\"size_before\";i:54613;s:10:\"size_after\";i:50336;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1703;s:11:\"size_before\";i:19172;s:10:\"size_after\";i:17469;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11030;s:11:\"size_before\";i:172234;s:10:\"size_after\";i:161204;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:16674;s:11:\"size_before\";i:247451;s:10:\"size_after\";i:230777;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:10739;s:11:\"size_before\";i:167962;s:10:\"size_after\";i:157223;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:12804;s:11:\"size_before\";i:197284;s:10:\"size_after\";i:184480;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:989;s:11:\"size_before\";i:10430;s:10:\"size_after\";i:9441;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:12281;s:11:\"size_before\";i:190483;s:10:\"size_after\";i:178202;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5773,796,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1836634;s:10:\"size_after\";i:1836634;s:4:\"time\";d:3.269999999999999573674358543939888477325439453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96227;s:10:\"size_after\";i:96227;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26762;s:10:\"size_after\";i:26762;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:315942;s:10:\"size_after\";i:315942;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:390658;s:10:\"size_after\";i:390658;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:315956;s:10:\"size_after\";i:315956;s:4:\"time\";d:0.90000000000000002220446049250313080847263336181640625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:375486;s:10:\"size_after\";i:375486;s:4:\"time\";d:0.729999999999999982236431605997495353221893310546875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15150;s:10:\"size_after\";i:15150;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:300453;s:10:\"size_after\";i:300453;s:4:\"time\";d:0.7399999999999999911182158029987476766109466552734375;}}}'),(5770,809,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.84633230913771040349047325435094535350799560546875;s:5:\"bytes\";i:57131;s:11:\"size_before\";i:834476;s:10:\"size_after\";i:777345;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3938;s:11:\"size_before\";i:50561;s:10:\"size_after\";i:46623;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1489;s:11:\"size_before\";i:17132;s:10:\"size_after\";i:15643;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9728;s:11:\"size_before\";i:135864;s:10:\"size_after\";i:126136;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:10662;s:11:\"size_before\";i:183121;s:10:\"size_after\";i:172459;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9459;s:11:\"size_before\";i:133173;s:10:\"size_after\";i:123714;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:11399;s:11:\"size_before\";i:167022;s:10:\"size_after\";i:155623;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:963;s:11:\"size_before\";i:9901;s:10:\"size_after\";i:8938;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:9493;s:11:\"size_before\";i:137702;s:10:\"size_after\";i:128209;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(6665,1170,'_wp_page_template','template/template-onepage.php'),(6666,1170,'_elementor_edit_mode','builder'),(5774,792,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.55323105532310545839891346986405551433563232421875;s:5:\"bytes\";i:70480;s:11:\"size_before\";i:1075500;s:10:\"size_after\";i:1005020;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:4452;s:11:\"size_before\";i:55633;s:10:\"size_after\";i:51181;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1812;s:11:\"size_before\";i:19095;s:10:\"size_after\";i:17283;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:10694;s:11:\"size_before\";i:172188;s:10:\"size_after\";i:161494;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:16173;s:11:\"size_before\";i:251468;s:10:\"size_after\";i:235295;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:10694;s:11:\"size_before\";i:168546;s:10:\"size_after\";i:157852;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:13093;s:11:\"size_before\";i:204429;s:10:\"size_after\";i:191336;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1043;s:11:\"size_before\";i:10327;s:10:\"size_after\";i:9284;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:12519;s:11:\"size_before\";i:193814;s:10:\"size_after\";i:181295;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5775,789,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.336283538709484020046147634275257587432861328125;s:5:\"bytes\";i:128779;s:11:\"size_before\";i:1379339;s:10:\"size_after\";i:1250560;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:4844;s:11:\"size_before\";i:48737;s:10:\"size_after\";i:43893;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1812;s:11:\"size_before\";i:17989;s:10:\"size_after\";i:16177;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:28022;s:11:\"size_before\";i:288321;s:10:\"size_after\";i:260299;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:21267;s:11:\"size_before\";i:262656;s:10:\"size_after\";i:241389;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12497;s:11:\"size_before\";i:131067;s:10:\"size_after\";i:118570;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:18275;s:11:\"size_before\";i:190428;s:10:\"size_after\";i:172153;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12273;s:11:\"size_before\";i:129010;s:10:\"size_after\";i:116737;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:14810;s:11:\"size_before\";i:154778;s:10:\"size_after\";i:139968;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1008;s:11:\"size_before\";i:9954;s:10:\"size_after\";i:8946;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13971;s:11:\"size_before\";i:146399;s:10:\"size_after\";i:132428;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5767,820,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3356156;s:10:\"size_after\";i:3356156;s:4:\"time\";d:2.720000000000000195399252334027551114559173583984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119825;s:10:\"size_after\";i:119825;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:38248;s:10:\"size_after\";i:38248;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:684488;s:10:\"size_after\";i:684488;s:4:\"time\";d:0.810000000000000053290705182007513940334320068359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:682279;s:10:\"size_after\";i:682279;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:312431;s:10:\"size_after\";i:312431;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:459053;s:10:\"size_after\";i:459053;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:305464;s:10:\"size_after\";i:305464;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:398850;s:10:\"size_after\";i:398850;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19283;s:10:\"size_after\";i:19283;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:336235;s:10:\"size_after\";i:336235;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(5768,817,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.3731900818656601614975443226285278797149658203125;s:5:\"bytes\";i:75578;s:11:\"size_before\";i:806321;s:10:\"size_after\";i:730743;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5335;s:11:\"size_before\";i:55851;s:10:\"size_after\";i:50516;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1953;s:11:\"size_before\";i:18664;s:10:\"size_after\";i:16711;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12253;s:11:\"size_before\";i:126756;s:10:\"size_after\";i:114503;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:13524;s:11:\"size_before\";i:165511;s:10:\"size_after\";i:151987;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:11557;s:11:\"size_before\";i:123070;s:10:\"size_after\";i:111513;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:16782;s:11:\"size_before\";i:170121;s:10:\"size_after\";i:153339;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:953;s:11:\"size_before\";i:9791;s:10:\"size_after\";i:8838;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:13221;s:11:\"size_before\";i:136557;s:10:\"size_after\";i:123336;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5769,812,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.2893004978730715492929448373615741729736328125;s:5:\"bytes\";i:69528;s:11:\"size_before\";i:838768;s:10:\"size_after\";i:769240;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4310;s:11:\"size_before\";i:53591;s:10:\"size_after\";i:49281;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1299;s:11:\"size_before\";i:16136;s:10:\"size_after\";i:14837;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:11464;s:11:\"size_before\";i:133830;s:10:\"size_after\";i:122366;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:13762;s:11:\"size_before\";i:181304;s:10:\"size_after\";i:167542;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:11308;s:11:\"size_before\";i:131492;s:10:\"size_after\";i:120184;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:15458;s:11:\"size_before\";i:180550;s:10:\"size_after\";i:165092;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:762;s:11:\"size_before\";i:9161;s:10:\"size_after\";i:8399;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:11165;s:11:\"size_before\";i:132704;s:10:\"size_after\";i:121539;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5766,823,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.48131501244398311456507144612260162830352783203125;s:5:\"bytes\";i:78697;s:11:\"size_before\";i:1051914;s:10:\"size_after\";i:973217;s:4:\"time\";d:0.33999999999999996891375531049561686813831329345703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5890;s:11:\"size_before\";i:66540;s:10:\"size_after\";i:60650;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2163;s:11:\"size_before\";i:21381;s:10:\"size_after\";i:19218;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:12665;s:11:\"size_before\";i:167019;s:10:\"size_after\";i:154354;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:15091;s:11:\"size_before\";i:232805;s:10:\"size_after\";i:217714;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:12338;s:11:\"size_before\";i:163874;s:10:\"size_after\";i:151536;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:16541;s:11:\"size_before\";i:222949;s:10:\"size_after\";i:206408;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1295;s:11:\"size_before\";i:11879;s:10:\"size_after\";i:10584;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:12714;s:11:\"size_before\";i:165467;s:10:\"size_after\";i:152753;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5765,826,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.6860604919950130664574317052029073238372802734375;s:5:\"bytes\";i:165716;s:11:\"size_before\";i:1710871;s:10:\"size_after\";i:1545155;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:9497;s:11:\"size_before\";i:82993;s:10:\"size_after\";i:73496;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3453;s:11:\"size_before\";i:27246;s:10:\"size_after\";i:23793;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:38379;s:11:\"size_before\";i:424418;s:10:\"size_after\";i:386039;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:19233;s:11:\"size_before\";i:195217;s:10:\"size_after\";i:175984;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:25990;s:11:\"size_before\";i:295477;s:10:\"size_after\";i:269487;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:18635;s:11:\"size_before\";i:191534;s:10:\"size_after\";i:172899;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:25985;s:11:\"size_before\";i:256657;s:10:\"size_after\";i:230672;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:13;s:5:\"bytes\";i:1824;s:11:\"size_before\";i:14029;s:10:\"size_after\";i:12205;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:22720;s:11:\"size_before\";i:223300;s:10:\"size_after\";i:200580;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5762,837,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.0273359367558807520026675774715840816497802734375;s:5:\"bytes\";i:40408;s:11:\"size_before\";i:335968;s:10:\"size_after\";i:295560;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:6639;s:11:\"size_before\";i:64076;s:10:\"size_after\";i:57437;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2408;s:11:\"size_before\";i:21821;s:10:\"size_after\";i:19413;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:11429;s:11:\"size_before\";i:124264;s:10:\"size_after\";i:112835;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:18563;s:11:\"size_before\";i:113683;s:10:\"size_after\";i:95120;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1369;s:11:\"size_before\";i:12124;s:10:\"size_after\";i:10755;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5763,832,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.8038601328487278152579165180213749408721923828125;s:5:\"bytes\";i:3129;s:11:\"size_before\";i:31916;s:10:\"size_after\";i:28787;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2005;s:11:\"size_before\";i:20608;s:10:\"size_after\";i:18603;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1124;s:11:\"size_before\";i:11308;s:10:\"size_after\";i:10184;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5764,829,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.824206095599091526082702330313622951507568359375;s:5:\"bytes\";i:100104;s:11:\"size_before\";i:1134425;s:10:\"size_after\";i:1034321;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4687;s:11:\"size_before\";i:53985;s:10:\"size_after\";i:49298;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1690;s:11:\"size_before\";i:18049;s:10:\"size_after\";i:16359;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:23696;s:11:\"size_before\";i:264608;s:10:\"size_after\";i:240912;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:11765;s:11:\"size_before\";i:136732;s:10:\"size_after\";i:124967;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:18368;s:11:\"size_before\";i:207832;s:10:\"size_after\";i:189464;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:11621;s:11:\"size_before\";i:133604;s:10:\"size_after\";i:121983;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:16135;s:11:\"size_before\";i:184168;s:10:\"size_after\";i:168033;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1009;s:11:\"size_before\";i:10301;s:10:\"size_after\";i:9292;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11133;s:11:\"size_before\";i:125146;s:10:\"size_after\";i:114013;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5759,846,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.1026463068880190121490159071981906890869140625;s:5:\"bytes\";i:177739;s:11:\"size_before\";i:1952608;s:10:\"size_after\";i:1774869;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5739;s:11:\"size_before\";i:59190;s:10:\"size_after\";i:53451;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.75;s:5:\"bytes\";i:2446;s:11:\"size_before\";i:22761;s:10:\"size_after\";i:20315;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:39871;s:11:\"size_before\";i:430626;s:10:\"size_after\";i:390755;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:33882;s:11:\"size_before\";i:387986;s:10:\"size_after\";i:354104;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:16652;s:11:\"size_before\";i:184368;s:10:\"size_after\";i:167716;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:24946;s:11:\"size_before\";i:273441;s:10:\"size_after\";i:248495;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:16254;s:11:\"size_before\";i:179111;s:10:\"size_after\";i:162857;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:17568;s:11:\"size_before\";i:193398;s:10:\"size_after\";i:175830;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1364;s:11:\"size_before\";i:12319;s:10:\"size_after\";i:10955;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:19017;s:11:\"size_before\";i:209408;s:10:\"size_after\";i:190391;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5760,843,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.9496855345911949797255147132091224193572998046875;s:5:\"bytes\";i:4142;s:11:\"size_before\";i:34662;s:10:\"size_after\";i:30520;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2644;s:11:\"size_before\";i:22406;s:10:\"size_after\";i:19762;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1498;s:11:\"size_before\";i:12256;s:10:\"size_after\";i:10758;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5761,840,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.6725467601697925346115880529396235942840576171875;s:5:\"bytes\";i:72335;s:11:\"size_before\";i:677767;s:10:\"size_after\";i:605432;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5107;s:11:\"size_before\";i:46055;s:10:\"size_after\";i:40948;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1471;s:11:\"size_before\";i:14241;s:10:\"size_after\";i:12770;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:12566;s:11:\"size_before\";i:113305;s:10:\"size_after\";i:100739;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9642;s:11:\"size_before\";i:119247;s:10:\"size_after\";i:109605;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:12716;s:11:\"size_before\";i:110700;s:10:\"size_after\";i:97984;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:16332;s:11:\"size_before\";i:144421;s:10:\"size_after\";i:128089;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.25;s:5:\"bytes\";i:836;s:11:\"size_before\";i:8156;s:10:\"size_after\";i:7320;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:13665;s:11:\"size_before\";i:121642;s:10:\"size_after\";i:107977;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5758,851,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.0652665862995167600502099958248436450958251953125;s:5:\"bytes\";i:76270;s:11:\"size_before\";i:945660;s:10:\"size_after\";i:869390;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4853;s:11:\"size_before\";i:58559;s:10:\"size_after\";i:53706;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1801;s:11:\"size_before\";i:18985;s:10:\"size_after\";i:17184;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:12475;s:11:\"size_before\";i:153878;s:10:\"size_after\";i:141403;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:15251;s:11:\"size_before\";i:206133;s:10:\"size_after\";i:190882;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:12474;s:11:\"size_before\";i:151664;s:10:\"size_after\";i:139190;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:15781;s:11:\"size_before\";i:192543;s:10:\"size_after\";i:176762;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1058;s:11:\"size_before\";i:10617;s:10:\"size_after\";i:9559;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:12577;s:11:\"size_before\";i:153281;s:10:\"size_after\";i:140704;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5757,906,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.227355895201387880888432846404612064361572265625;s:5:\"bytes\";i:508276;s:11:\"size_before\";i:3132217;s:10:\"size_after\";i:2623941;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7385;s:11:\"size_before\";i:51240;s:10:\"size_after\";i:43855;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:71698;s:11:\"size_before\";i:425235;s:10:\"size_after\";i:353537;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3047;s:11:\"size_before\";i:22440;s:10:\"size_after\";i:19393;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:43611;s:11:\"size_before\";i:264564;s:10:\"size_after\";i:220953;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:135979;s:11:\"size_before\";i:843324;s:10:\"size_after\";i:707345;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:81758;s:11:\"size_before\";i:512569;s:10:\"size_after\";i:430811;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:27613;s:11:\"size_before\";i:172964;s:10:\"size_after\";i:145351;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:43526;s:11:\"size_before\";i:263146;s:10:\"size_after\";i:219620;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:26798;s:11:\"size_before\";i:166560;s:10:\"size_after\";i:139762;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.690000000000001278976924368180334568023681640625;s:5:\"bytes\";i:45747;s:11:\"size_before\";i:274107;s:10:\"size_after\";i:228360;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1459;s:11:\"size_before\";i:10897;s:10:\"size_after\";i:9438;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:19655;s:11:\"size_before\";i:125171;s:10:\"size_after\";i:105516;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5756,910,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.507505651493691090081483707763254642486572265625;s:5:\"bytes\";i:1036392;s:11:\"size_before\";i:5599847;s:10:\"size_after\";i:4563455;s:4:\"time\";d:0.98000000000000009325873406851314939558506011962890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:15077;s:11:\"size_before\";i:78426;s:10:\"size_after\";i:63349;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.629999999999999005240169935859739780426025390625;s:5:\"bytes\";i:104450;s:11:\"size_before\";i:560792;s:10:\"size_after\";i:456342;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:6616;s:11:\"size_before\";i:33436;s:10:\"size_after\";i:26820;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:65877;s:11:\"size_before\";i:347200;s:10:\"size_after\";i:281323;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:188189;s:11:\"size_before\";i:1026625;s:10:\"size_after\";i:838436;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:284400;s:11:\"size_before\";i:1580506;s:10:\"size_after\";i:1296106;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:110920;s:11:\"size_before\";i:608382;s:10:\"size_after\";i:497462;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:44851;s:11:\"size_before\";i:234530;s:10:\"size_after\";i:189679;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:67627;s:11:\"size_before\";i:354214;s:10:\"size_after\";i:286587;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:43530;s:11:\"size_before\";i:225906;s:10:\"size_after\";i:182376;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.9200000000000017053025658242404460906982421875;s:5:\"bytes\";i:68220;s:11:\"size_before\";i:360664;s:10:\"size_after\";i:292444;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:3101;s:11:\"size_before\";i:16886;s:10:\"size_after\";i:13785;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:33534;s:11:\"size_before\";i:172280;s:10:\"size_after\";i:138746;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5755,1009,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.090719298728117792052216827869415283203125;s:5:\"bytes\";i:385412;s:11:\"size_before\";i:1599836;s:10:\"size_after\";i:1214424;s:4:\"time\";d:8.5199999999999977973175191436894237995147705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5304;s:11:\"size_before\";i:19428;s:10:\"size_after\";i:14124;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:32323;s:11:\"size_before\";i:135419;s:10:\"size_after\";i:103096;s:4:\"time\";d:1.2199999999999999733546474089962430298328399658203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2278;s:11:\"size_before\";i:9942;s:10:\"size_after\";i:7664;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:20410;s:11:\"size_before\";i:85714;s:10:\"size_after\";i:65304;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:64922;s:11:\"size_before\";i:270827;s:10:\"size_after\";i:205905;s:4:\"time\";d:0.90000000000000002220446049250313080847263336181640625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.8299999999999982946974341757595539093017578125;s:5:\"bytes\";i:94660;s:11:\"size_before\";i:397193;s:10:\"size_after\";i:302533;s:4:\"time\";d:2.79999999999999982236431605997495353221893310546875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14082;s:11:\"size_before\";i:72411;s:10:\"size_after\";i:58329;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:18295;s:11:\"size_before\";i:73744;s:10:\"size_after\";i:55449;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26590;s:11:\"size_before\";i:104057;s:10:\"size_after\";i:77467;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:17665;s:11:\"size_before\";i:71500;s:10:\"size_after\";i:53835;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:76675;s:11:\"size_before\";i:311831;s:10:\"size_after\";i:235156;s:4:\"time\";d:1.270000000000000017763568394002504646778106689453125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1329;s:11:\"size_before\";i:5386;s:10:\"size_after\";i:4057;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:10879;s:11:\"size_before\";i:42384;s:10:\"size_after\";i:31505;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(5754,1010,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.152376978884177560757962055504322052001953125;s:5:\"bytes\";i:391574;s:11:\"size_before\";i:2157150;s:10:\"size_after\";i:1765576;s:4:\"time\";d:0.6500000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6961;s:11:\"size_before\";i:38867;s:10:\"size_after\";i:31906;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:56475;s:11:\"size_before\";i:304759;s:10:\"size_after\";i:248284;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:18;s:5:\"bytes\";i:2550;s:11:\"size_before\";i:14168;s:10:\"size_after\";i:11618;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:34514;s:11:\"size_before\";i:187536;s:10:\"size_after\";i:153022;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:106264;s:11:\"size_before\";i:586889;s:10:\"size_after\";i:480625;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:60659;s:11:\"size_before\";i:337366;s:10:\"size_after\";i:276707;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.780000000000001136868377216160297393798828125;s:5:\"bytes\";i:20768;s:11:\"size_before\";i:116827;s:10:\"size_after\";i:96059;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:32426;s:11:\"size_before\";i:176459;s:10:\"size_after\";i:144033;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.559999999999998721023075631819665431976318359375;s:5:\"bytes\";i:20232;s:11:\"size_before\";i:115231;s:10:\"size_after\";i:94999;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:32719;s:11:\"size_before\";i:178834;s:10:\"size_after\";i:146115;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1573;s:11:\"size_before\";i:8492;s:10:\"size_after\";i:6919;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.9200000000000017053025658242404460906982421875;s:5:\"bytes\";i:16433;s:11:\"size_before\";i:91722;s:10:\"size_after\";i:75289;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5752,1052,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.544380867605429585864840191788971424102783203125;s:5:\"bytes\";i:324102;s:11:\"size_before\";i:4295939;s:10:\"size_after\";i:3971837;s:4:\"time\";d:1.0700000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3667;s:11:\"size_before\";i:42660;s:10:\"size_after\";i:38993;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:29880;s:11:\"size_before\";i:408644;s:10:\"size_after\";i:378764;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1424;s:11:\"size_before\";i:16040;s:10:\"size_after\";i:14616;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26414;s:11:\"size_before\";i:360361;s:10:\"size_after\";i:333947;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:62866;s:11:\"size_before\";i:857229;s:10:\"size_after\";i:794363;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:109347;s:11:\"size_before\";i:1389098;s:10:\"size_after\";i:1279751;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:29837;s:11:\"size_before\";i:424874;s:10:\"size_after\";i:395037;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:10053;s:11:\"size_before\";i:135299;s:10:\"size_after\";i:125246;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:15224;s:11:\"size_before\";i:213566;s:10:\"size_after\";i:198342;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:9860;s:11:\"size_before\";i:131669;s:10:\"size_after\";i:121809;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12058;s:11:\"size_before\";i:150187;s:10:\"size_after\";i:138129;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:835;s:11:\"size_before\";i:8950;s:10:\"size_after\";i:8115;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12637;s:11:\"size_before\";i:157362;s:10:\"size_after\";i:144725;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(6659,1169,'_elementor_version','3.0.11'),(6660,1169,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a626a\",\"elType\":\"widget\",\"settings\":{\"eael_post_grid_columns\":\"eael-col-1\",\"show_load_more_text\":\"Load More\",\"eael_excerpt_length\":100,\"excerpt_expanison_indicator\":\"...\",\"eael_read_more_text\":\"Read More\",\"read_more_button_text\":\"Read More\",\"image_link_nofollow\":\"true\",\"title_link_nofollow\":\"true\",\"read_more_link_nofollow\":\"true\"},\"elements\":[],\"widgetType\":\"eael-post-grid\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No posts found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"5\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5753,1013,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.135813285071488820676677278243005275726318359375;s:5:\"bytes\";i:157562;s:11:\"size_before\";i:1040988;s:10:\"size_after\";i:883426;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3916;s:11:\"size_before\";i:25101;s:10:\"size_after\";i:21185;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:14930;s:11:\"size_before\";i:111400;s:10:\"size_after\";i:96470;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2279;s:11:\"size_before\";i:14566;s:10:\"size_after\";i:12287;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:16551;s:11:\"size_before\";i:113134;s:10:\"size_after\";i:96583;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:19712;s:11:\"size_before\";i:141490;s:10:\"size_after\";i:121778;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:13452;s:11:\"size_before\";i:99713;s:10:\"size_after\";i:86261;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:24810;s:11:\"size_before\";i:155729;s:10:\"size_after\";i:130919;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:16185;s:11:\"size_before\";i:103809;s:10:\"size_after\";i:87624;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:35564;s:11:\"size_before\";i:209335;s:10:\"size_after\";i:173771;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1282;s:11:\"size_before\";i:7911;s:10:\"size_after\";i:6629;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:8881;s:11:\"size_before\";i:58800;s:10:\"size_after\";i:49919;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5749,1057,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.544380867605429585864840191788971424102783203125;s:5:\"bytes\";i:324102;s:11:\"size_before\";i:4295939;s:10:\"size_after\";i:3971837;s:4:\"time\";d:1.20000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3667;s:11:\"size_before\";i:42660;s:10:\"size_after\";i:38993;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:29880;s:11:\"size_before\";i:408644;s:10:\"size_after\";i:378764;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1424;s:11:\"size_before\";i:16040;s:10:\"size_after\";i:14616;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26414;s:11:\"size_before\";i:360361;s:10:\"size_after\";i:333947;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:62866;s:11:\"size_before\";i:857229;s:10:\"size_after\";i:794363;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:109347;s:11:\"size_before\";i:1389098;s:10:\"size_after\";i:1279751;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:29837;s:11:\"size_before\";i:424874;s:10:\"size_after\";i:395037;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:10053;s:11:\"size_before\";i:135299;s:10:\"size_after\";i:125246;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:15224;s:11:\"size_before\";i:213566;s:10:\"size_after\";i:198342;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:9860;s:11:\"size_before\";i:131669;s:10:\"size_after\";i:121809;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12058;s:11:\"size_before\";i:150187;s:10:\"size_after\";i:138129;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:835;s:11:\"size_before\";i:8950;s:10:\"size_after\";i:8115;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12637;s:11:\"size_before\";i:157362;s:10:\"size_after\";i:144725;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5750,1056,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.3326674548493624428147086291573941707611083984375;s:5:\"bytes\";i:10138;s:11:\"size_before\";i:98116;s:10:\"size_after\";i:87978;s:4:\"time\";d:0.0799999999999999877875467291232780553400516510009765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:5982;s:11:\"size_before\";i:60641;s:10:\"size_after\";i:54659;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2605;s:11:\"size_before\";i:24186;s:10:\"size_after\";i:21581;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1551;s:11:\"size_before\";i:13289;s:10:\"size_after\";i:11738;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5751,1055,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.0652665862995167600502099958248436450958251953125;s:5:\"bytes\";i:76270;s:11:\"size_before\";i:945660;s:10:\"size_after\";i:869390;s:4:\"time\";d:0.2400000000000000188737914186276611872017383575439453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4853;s:11:\"size_before\";i:58559;s:10:\"size_after\";i:53706;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1801;s:11:\"size_before\";i:18985;s:10:\"size_after\";i:17184;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:12475;s:11:\"size_before\";i:153878;s:10:\"size_after\";i:141403;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:15251;s:11:\"size_before\";i:206133;s:10:\"size_after\";i:190882;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:12474;s:11:\"size_before\";i:151664;s:10:\"size_after\";i:139190;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:15781;s:11:\"size_before\";i:192543;s:10:\"size_after\";i:176762;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1058;s:11:\"size_before\";i:10617;s:10:\"size_after\";i:9559;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:12577;s:11:\"size_before\";i:153281;s:10:\"size_after\";i:140704;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5649,1114,'_wp_attached_file','2020/10/Draft-Authorization-Form.docx'),(5650,1115,'_wp_attached_file','2020/10/2020-Educational-Calendar.xlsx'),(5655,1,'_wp_desired_post_slug','hello-world'),(5656,1,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5657,1,'_wp_trash_meta_comments_status','a:5:{i:1;s:5:\"trash\";i:2;s:4:\"spam\";i:3;s:4:\"spam\";i:4;s:4:\"spam\";i:5;s:4:\"spam\";}'),(5658,1113,'_edit_lock','1602812972:1'),(5661,1113,'_wp_old_slug','fwd-news-notes'),(5662,1113,'_edit_last','1'),(5663,1113,'_primary_term_category','16'),(5664,1113,'slide_template',''),(5665,1113,'rs_page_bg_color',''),(5666,1113,'passster_activate_protection',NULL),(5667,1113,'passster_protection_type','password'),(5668,1113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5672,1113,'_wp_page_template','default'),(5671,1113,'_wp_old_date','2020-10-16'),(5748,1060,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4485654237159195645290310494601726531982421875;s:5:\"bytes\";i:444196;s:11:\"size_before\";i:5257650;s:10:\"size_after\";i:4813454;s:4:\"time\";d:1.310000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:5003;s:11:\"size_before\";i:49319;s:10:\"size_after\";i:44316;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:39603;s:11:\"size_before\";i:457507;s:10:\"size_after\";i:417904;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2269;s:11:\"size_before\";i:20741;s:10:\"size_after\";i:18472;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:43978;s:11:\"size_before\";i:515103;s:10:\"size_after\";i:471125;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:79154;s:11:\"size_before\";i:966362;s:10:\"size_after\";i:887208;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:129787;s:11:\"size_before\";i:1623744;s:10:\"size_after\";i:1493957;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:47059;s:11:\"size_before\";i:569093;s:10:\"size_after\";i:522034;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:17082;s:11:\"size_before\";i:182628;s:10:\"size_after\";i:165546;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:25669;s:11:\"size_before\";i:287428;s:10:\"size_after\";i:261759;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:16620;s:11:\"size_before\";i:177947;s:10:\"size_after\";i:161327;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:15842;s:11:\"size_before\";i:168990;s:10:\"size_after\";i:153148;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1243;s:11:\"size_before\";i:11267;s:10:\"size_after\";i:10024;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:20887;s:11:\"size_before\";i:227521;s:10:\"size_after\";i:206634;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5746,1080,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:45.4751254895129619626459316350519657135009765625;s:5:\"bytes\";i:623931;s:11:\"size_before\";i:1372027;s:10:\"size_after\";i:748096;s:4:\"time\";d:15.3799999999999954525264911353588104248046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3098;s:11:\"size_before\";i:7544;s:10:\"size_after\";i:4446;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:63643;s:11:\"size_before\";i:128778;s:10:\"size_after\";i:65135;s:4:\"time\";d:1.0300000000000000266453525910037569701671600341796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:454;s:11:\"size_before\";i:2027;s:10:\"size_after\";i:1573;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.49000000000000198951966012828052043914794921875;s:5:\"bytes\";i:18175;s:11:\"size_before\";i:41792;s:10:\"size_after\";i:23617;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:66608;s:11:\"size_before\";i:146592;s:10:\"size_after\";i:79984;s:4:\"time\";d:1.9299999999999999378275106209912337362766265869140625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:48.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:257976;s:11:\"size_before\";i:535650;s:10:\"size_after\";i:277674;s:4:\"time\";d:5.42999999999999971578290569595992565155029296875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.0499999999999971578290569595992565155029296875;s:5:\"bytes\";i:76031;s:11:\"size_before\";i:185238;s:10:\"size_after\";i:109207;s:4:\"time\";d:2.5099999999999997868371792719699442386627197265625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.75;s:5:\"bytes\";i:15886;s:11:\"size_before\";i:42082;s:10:\"size_after\";i:26196;s:4:\"time\";d:0.85999999999999998667732370449812151491641998291015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.86999999999999744204615126363933086395263671875;s:5:\"bytes\";i:30966;s:11:\"size_before\";i:79665;s:10:\"size_after\";i:48699;s:4:\"time\";d:0.939999999999999946709294817992486059665679931640625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.24000000000000198951966012828052043914794921875;s:5:\"bytes\";i:15969;s:11:\"size_before\";i:41761;s:10:\"size_after\";i:25792;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:65913;s:11:\"size_before\";i:147399;s:10:\"size_after\";i:81486;s:4:\"time\";d:1.6100000000000000976996261670137755572795867919921875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:205;s:11:\"size_before\";i:842;s:10:\"size_after\";i:637;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:9007;s:11:\"size_before\";i:12657;s:10:\"size_after\";i:3650;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(6656,1169,'_wp_page_template','template/template-onepage.php'),(6657,1169,'_elementor_edit_mode','builder'),(6658,1169,'_elementor_template_type','wp-page'),(5747,1063,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.135813285071488820676677278243005275726318359375;s:5:\"bytes\";i:157562;s:11:\"size_before\";i:1040988;s:10:\"size_after\";i:883426;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3916;s:11:\"size_before\";i:25101;s:10:\"size_after\";i:21185;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:14930;s:11:\"size_before\";i:111400;s:10:\"size_after\";i:96470;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2279;s:11:\"size_before\";i:14566;s:10:\"size_after\";i:12287;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:16551;s:11:\"size_before\";i:113134;s:10:\"size_after\";i:96583;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:19712;s:11:\"size_before\";i:141490;s:10:\"size_after\";i:121778;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:13452;s:11:\"size_before\";i:99713;s:10:\"size_after\";i:86261;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:24810;s:11:\"size_before\";i:155729;s:10:\"size_after\";i:130919;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:16185;s:11:\"size_before\";i:103809;s:10:\"size_after\";i:87624;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:35564;s:11:\"size_before\";i:209335;s:10:\"size_after\";i:173771;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1282;s:11:\"size_before\";i:7911;s:10:\"size_after\";i:6629;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:8881;s:11:\"size_before\";i:58800;s:10:\"size_after\";i:49919;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5745,1122,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.1497431265933482080754401977173984050750732421875;s:5:\"bytes\";i:421659;s:11:\"size_before\";i:4154381;s:10:\"size_after\";i:3732722;s:4:\"time\";d:0.94000000000000005773159728050814010202884674072265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:12;s:5:\"bytes\";i:7896;s:11:\"size_before\";i:65798;s:10:\"size_after\";i:57902;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:55152;s:11:\"size_before\";i:549725;s:10:\"size_after\";i:494573;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:3261;s:11:\"size_before\";i:26909;s:10:\"size_after\";i:23648;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:35480;s:11:\"size_before\";i:336996;s:10:\"size_after\";i:301516;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:100759;s:11:\"size_before\";i:1048633;s:10:\"size_after\";i:947874;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:67563;s:11:\"size_before\";i:691140;s:10:\"size_after\";i:623577;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:24978;s:11:\"size_before\";i:232795;s:10:\"size_after\";i:207817;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:36648;s:11:\"size_before\";i:356382;s:10:\"size_after\";i:319734;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:24607;s:11:\"size_before\";i:227902;s:10:\"size_after\";i:203295;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:45320;s:11:\"size_before\";i:443833;s:10:\"size_after\";i:398513;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2080;s:11:\"size_before\";i:15141;s:10:\"size_after\";i:13061;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:17915;s:11:\"size_before\";i:159127;s:10:\"size_after\";i:141212;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5743,1124,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.065411958867588992916353163309395313262939453125;s:5:\"bytes\";i:30495;s:11:\"size_before\";i:378096;s:10:\"size_after\";i:347601;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3576;s:11:\"size_before\";i:50361;s:10:\"size_after\";i:46785;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1369;s:11:\"size_before\";i:16373;s:10:\"size_after\";i:15004;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:7966;s:11:\"size_before\";i:97033;s:10:\"size_after\";i:89067;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:7391;s:11:\"size_before\";i:93990;s:10:\"size_after\";i:86599;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:897;s:11:\"size_before\";i:9293;s:10:\"size_after\";i:8396;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:9296;s:11:\"size_before\";i:111046;s:10:\"size_after\";i:101750;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5744,1123,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.246511748374739880773631739430129528045654296875;s:5:\"bytes\";i:249234;s:11:\"size_before\";i:2432379;s:10:\"size_after\";i:2183145;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6346;s:11:\"size_before\";i:62863;s:10:\"size_after\";i:56517;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.25;s:5:\"bytes\";i:54601;s:11:\"size_before\";i:532725;s:10:\"size_after\";i:478124;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.25;s:5:\"bytes\";i:2061;s:11:\"size_before\";i:20113;s:10:\"size_after\";i:18052;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:33515;s:11:\"size_before\";i:329598;s:10:\"size_after\";i:296083;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:51034;s:11:\"size_before\";i:489744;s:10:\"size_after\";i:438710;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:17605;s:11:\"size_before\";i:172186;s:10:\"size_after\";i:154581;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:26478;s:11:\"size_before\";i:263221;s:10:\"size_after\";i:236743;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:17370;s:11:\"size_before\";i:168779;s:10:\"size_after\";i:151409;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:23168;s:11:\"size_before\";i:228621;s:10:\"size_after\";i:205453;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1206;s:11:\"size_before\";i:11606;s:10:\"size_after\";i:10400;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:15850;s:11:\"size_before\";i:152923;s:10:\"size_after\";i:137073;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5742,1125,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.1215870652998969347891033976338803768157958984375;s:5:\"bytes\";i:89028;s:11:\"size_before\";i:678485;s:10:\"size_after\";i:589457;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:8196;s:11:\"size_before\";i:67083;s:10:\"size_after\";i:58887;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3237;s:11:\"size_before\";i:26807;s:10:\"size_after\";i:23570;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:23434;s:11:\"size_before\";i:215696;s:10:\"size_after\";i:192262;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:35651;s:11:\"size_before\";i:202142;s:10:\"size_after\";i:166491;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2078;s:11:\"size_before\";i:15133;s:10:\"size_after\";i:13055;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:16432;s:11:\"size_before\";i:151624;s:10:\"size_after\";i:135192;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5711,1122,'_wp_attached_file','2020/10/IMG_3402.jpg'),(5712,1122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:20:\"2020/10/IMG_3402.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3402-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3402-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3402-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:\"IMG_3402-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"IMG_3402-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"IMG_3402-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"IMG_3402-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"IMG_3402-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"IMG_3402-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"IMG_3402-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"IMG_3402-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"IMG_3402-496x331.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602007603\";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:{}}}'),(5713,1123,'_wp_attached_file','2020/10/IMG_3399.jpg'),(5714,1123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1274;s:6:\"height\";i:1227;s:4:\"file\";s:20:\"2020/10/IMG_3399.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3399-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3399-1024x986.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:986;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3399-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:\"IMG_3399-768x740.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:740;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"IMG_3399-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"IMG_3399-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"IMG_3399-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"IMG_3399-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"IMG_3399-623x600.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"IMG_3399-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"IMG_3399-496x478.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602007322\";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:{}}}'),(5715,1124,'_wp_attached_file','2020/10/AlanBusinesspic.jpg'),(5716,1124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2020/10/AlanBusinesspic.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"AlanBusinesspic-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:27:\"AlanBusinesspic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"AlanBusinesspic-500x444.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"AlanBusinesspic-500x438.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"AlanBusinesspic-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"AlanBusinesspic-496x496.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:496;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:{}}}'),(5717,1125,'_wp_attached_file','2020/09/Lantern-Albemarle-Team.jpg'),(5718,1125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2020/09/Lantern-Albemarle-Team.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Lantern-Albemarle-Team-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Lantern-Albemarle-Team-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:34:\"Lantern-Albemarle-Team-592x400.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:34:\"Lantern-Albemarle-Team-584x400.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:33:\"Lantern-Albemarle-Team-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:34:\"Lantern-Albemarle-Team-496x331.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602007603\";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:{}}}'),(5719,759,'fave_agency_visible','0'),(5720,759,'_genesis_description','Lantern Realty and Development LLC Albemarle is made of of local agents who have been in the Real Estate business for years. We are made up of the familiar faces you are used to seeing around town, but have joined together to open an innovative Real Estate company that has a unique mission to treat our customers better with great customer service and allowing each agent to take control of their business. We all look forward to growing our business here in Albemarle, serving the surrounding counties and beyond and showing our community that we are here for them and serve their needs.'),(5721,604,'fave_agent_visible','0'),(5723,1127,'_wp_attached_file','2020/04/Mike_Fullerton-1.jpg'),(5724,1127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:674;s:4:\"file\";s:28:\"2020/04/Mike_Fullerton-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-700x564.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-623x600.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"Mike_Fullerton-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-496x478.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602007322\";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:{}}}'),(5730,601,'fave_agent_visible','0'),(5732,22,'_edit_lock','1602979527:1'),(5733,1129,'_wp_attached_file','2020/10/Lantern-Realty-e1602979842115.png'),(5734,1129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:41:\"2020/10/Lantern-Realty-e1602979842115.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Lantern-Realty-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Lantern-Realty-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5735,37,'fave_agent_visible','0'),(5737,1129,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:173;s:6:\"height\";i:173;s:4:\"file\";s:18:\"Lantern-Realty.png\";}}'),(5738,22,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:178;s:6:\"height\";i:180;s:4:\"file\";s:17:\"Facebook-Logo.jpg\";}}'),(7322,1242,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10087,1748,'_wp_page_template','template/template-onepage.php'),(10088,1748,'_elementor_edit_mode','builder'),(10089,1748,'_elementor_template_type','wp-page'),(10090,1748,'_elementor_version','3.0.11'),(10091,1748,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"70d7f95\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1241\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8854,1483,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5273016;s:10:\"size_after\";i:5273016;s:4:\"time\";d:6.25000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.65000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:1.479999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:1.189999999999999946709294817992486059665679931640625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.92000000000000003996802888650563545525074005126953125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}}}'),(7326,1244,'_wp_attached_file','2020/10/Sherri-Argabright-Head-Shoulder-Shot.jpg'),(7327,1244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1249;s:6:\"height\";i:1560;s:4:\"file\";s:48:\"2020/10/Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:1230;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:620;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:{}}}'),(7328,1244,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.2601555041701200110537683940492570400238037109375;s:5:\"bytes\";i:7772;s:11:\"size_before\";i:2987444;s:10:\"size_after\";i:2979672;s:4:\"time\";d:2.310000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7772;s:11:\"size_before\";i:256078;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}}}'),(7329,45,'fave_agency_visible','0'),(7330,1245,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7331,1245,'_edit_lock','1603068721:1'),(7332,1245,'_wp_page_template','template/template-onepage.php'),(7333,1245,'_edit_last','1'),(7334,1245,'fave_listing_page_content_area','0'),(7335,1245,'fave_prop_no','9'),(7336,1245,'fave_properties_sort','d_date'),(7337,1245,'fave_listings_tabs','disable'),(7338,1245,'fave_properties_min_beds','0'),(7339,1245,'fave_properties_min_baths','0'),(7340,1245,'fave_agency_orderby','None'),(7341,1245,'fave_agency_order','ASC'),(7342,1245,'fave_agent_orderby','None'),(7343,1245,'fave_agent_order','ASC'),(7344,1245,'fave_header_type','elementor'),(7345,1245,'fave_page_header_image_opacity','0.35'),(7346,1245,'fave_page_header_search','0'),(7347,1245,'fave_header_full_screen','0'),(7348,1245,'fave_adv_search_enable','global'),(7349,1245,'fave_adv_search','hide'),(7350,1245,'fave_adv_search_pos','under_menu'),(7351,1245,'fave_page_title','show'),(7352,1245,'fave_page_breadcrumb','show'),(7353,1245,'fave_page_sidebar','right_sidebar'),(7354,1245,'fave_page_background','yes'),(7355,1245,'fave_main_menu_trans','no'),(7356,1245,'slide_template',''),(7357,1245,'rs_page_bg_color',''),(7358,1245,'passster_activate_protection',NULL),(7359,1245,'passster_protection_type','password'),(7360,1245,'_wpb_vc_js_status','false'),(7361,1245,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(7362,1245,'_elementor_edit_mode','builder'),(7363,1245,'_elementor_template_type','wp-page'),(7364,1245,'_elementor_version','3.0.11'),(7366,1245,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7367,1245,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7368,1247,'_wp_page_template','template/template-onepage.php'),(7369,1247,'_elementor_edit_mode','builder'),(7370,1247,'_elementor_template_type','wp-page'),(7371,1247,'_elementor_version','3.0.11'),(7373,1247,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7374,1247,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(7377,1248,'_wp_page_template','template/template-onepage.php'),(7378,1248,'_elementor_edit_mode','builder'),(7379,1248,'_elementor_template_type','wp-page'),(7380,1248,'_elementor_version','3.0.11'),(7381,1248,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7382,1248,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"039f1e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7386,1249,'_wp_page_template','template/template-onepage.php'),(7387,1249,'_elementor_edit_mode','builder'),(7388,1249,'_elementor_template_type','wp-page'),(7389,1249,'_elementor_version','3.0.11'),(7390,1249,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7391,1249,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"039f1e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7416,1252,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"039f1e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43a0b7e\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Tab #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"1648424\"},{\"tab_title\":\"Tab #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"69f32c7\"}]},\"elements\":[],\"widgetType\":\"tabs\"},{\"id\":\"29b490a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Accordion #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"bd1883f\"},{\"tab_title\":\"Accordion #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"ed301cf\"}]},\"elements\":[],\"widgetType\":\"accordion\"},{\"id\":\"f2885c6\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"agency-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":false}],\"isInner\":false}]'),(7411,1252,'_wp_page_template','template/template-onepage.php'),(7412,1252,'_elementor_edit_mode','builder'),(7413,1252,'_elementor_template_type','wp-page'),(7414,1252,'_elementor_version','3.0.11'),(7415,1252,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7403,1251,'_wp_page_template','template/template-onepage.php'),(7404,1251,'_elementor_edit_mode','builder'),(7405,1251,'_elementor_template_type','wp-page'),(7406,1251,'_elementor_version','3.0.11'),(7407,1251,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7408,1251,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"039f1e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7440,1255,'_elementor_template_type','wp-page'),(7438,1255,'_wp_page_template','template/template-onepage.php'),(7439,1255,'_elementor_edit_mode','builder'),(7429,1254,'_wp_page_template','template/template-onepage.php'),(7430,1254,'_elementor_edit_mode','builder'),(7431,1254,'_elementor_template_type','wp-page'),(7432,1254,'_elementor_version','3.0.11'),(7420,1253,'_wp_page_template','template/template-onepage.php'),(7421,1253,'_elementor_edit_mode','builder'),(7422,1253,'_elementor_template_type','wp-page'),(7423,1253,'_elementor_version','3.0.11'),(7424,1253,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7425,1253,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"039f1e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29b490a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Accordion #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"bd1883f\"},{\"tab_title\":\"Accordion #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"ed301cf\"}]},\"elements\":[],\"widgetType\":\"accordion\"},{\"id\":\"1a9f06d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"bcc5a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"43a0b7e\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Tab #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"1648424\"},{\"tab_title\":\"Tab #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"69f32c7\"}]},\"elements\":[],\"widgetType\":\"tabs\"}],\"isInner\":true},{\"id\":\"9519646\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c782644\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"page-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7433,1254,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7434,1254,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"b3567d7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Tab #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"1648424\"},{\"tab_title\":\"Tab #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"69f32c7\"}]},\"elements\":[],\"widgetType\":\"tabs\"}],\"isInner\":true},{\"id\":\"2674601\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d489768\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"page-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7441,1255,'_elementor_version','3.0.11'),(7442,1255,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7443,1255,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"b3567d7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Tab #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"1648424\"},{\"tab_title\":\"Tab #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"69f32c7\"}]},\"elements\":[],\"widgetType\":\"tabs\"}],\"isInner\":true},{\"id\":\"2674601\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d489768\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"page-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7466,1258,'_elementor_edit_mode','builder'),(7467,1258,'_elementor_template_type','wp-page'),(7447,1256,'_wp_page_template','template/template-onepage.php'),(7448,1256,'_elementor_edit_mode','builder'),(7449,1256,'_elementor_template_type','wp-page'),(7450,1256,'_elementor_version','3.0.11'),(7451,1256,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7452,1256,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"b3567d7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Tab #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"1648424\"},{\"tab_title\":\"Tab #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"69f32c7\"}]},\"elements\":[],\"widgetType\":\"tabs\"}],\"isInner\":true},{\"id\":\"2674601\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d489768\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"page-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7465,1258,'_wp_page_template','template/template-onepage.php'),(7456,1257,'_wp_page_template','template/template-onepage.php'),(7457,1257,'_elementor_edit_mode','builder'),(7458,1257,'_elementor_template_type','wp-page'),(7459,1257,'_elementor_version','3.0.11'),(7460,1257,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7461,1257,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true},{\"id\":\"2674601\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d489768\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"agent-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8847,1481,'_wp_attached_file','2021/01/2021-Educational-Calendar.xlsx'),(8852,1483,'_wp_attached_file','2021/01/2456921357881720863.png'),(7468,1258,'_elementor_version','3.0.11'),(7469,1258,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7470,1258,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9287,1598,'_edit_lock','1614127691:1'),(9682,101,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(8853,1483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:634;s:6:\"height\";i:780;s:4:\"file\";s:31:\"2021/01/2456921357881720863.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:244;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:634;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:488;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:496;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7474,1259,'_wp_page_template','template/template-onepage.php'),(7475,1259,'_elementor_edit_mode','builder'),(7476,1259,'_elementor_template_type','wp-page'),(7477,1259,'_elementor_version','3.0.11'),(7478,1259,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7479,1259,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9288,1598,'_edit_last','1'),(9289,1598,'fave_agency_email','klawingrealtor@gmail.com'),(7482,1260,'_wp_page_template','template/template-onepage.php'),(7483,1260,'_elementor_edit_mode','builder'),(7484,1260,'_elementor_template_type','wp-page'),(7485,1260,'_elementor_version','3.0.11'),(7486,1260,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7487,1260,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e3f370\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-ihomefindermoreinfowidget\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7506,1263,'_wp_page_template','template/template-onepage.php'),(7507,1263,'_elementor_edit_mode','builder'),(7508,1263,'_elementor_template_type','wp-page'),(7509,1263,'_elementor_version','3.0.11'),(7510,1263,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7511,1263,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"title_text\":\"Valuation Request\",\"description_text\":\"\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7501,1262,'_elementor_version','3.0.11'),(7502,1262,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7503,1262,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d0d990b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-ihomefindercontactformwidget\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7498,1262,'_wp_page_template','template/template-onepage.php'),(7499,1262,'_elementor_edit_mode','builder'),(7500,1262,'_elementor_template_type','wp-page'),(7515,1264,'_wp_page_template','template/template-onepage.php'),(7516,1264,'_elementor_edit_mode','builder'),(7517,1264,'_elementor_template_type','wp-page'),(7518,1264,'_elementor_version','3.0.11'),(7519,1264,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7520,1264,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"view\":\"framed\",\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7532,1266,'_wp_page_template','template/template-onepage.php'),(7524,1265,'_wp_page_template','template/template-onepage.php'),(7525,1265,'_elementor_edit_mode','builder'),(7526,1265,'_elementor_template_type','wp-page'),(7527,1265,'_elementor_version','3.0.11'),(7528,1265,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7529,1265,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"view\":\"framed\",\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7533,1266,'_elementor_edit_mode','builder'),(7534,1266,'_elementor_template_type','wp-page'),(7535,1266,'_elementor_version','3.0.11'),(7536,1266,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7537,1266,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7540,1267,'_wp_page_template','template/template-onepage.php'),(7541,1267,'_elementor_edit_mode','builder'),(7542,1267,'_elementor_template_type','wp-page'),(7543,1267,'_elementor_version','3.0.11'),(7544,1267,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7545,1267,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7598,1274,'_wp_page_template','template/template-onepage.php'),(7599,1274,'_elementor_edit_mode','builder'),(7600,1274,'_elementor_template_type','wp-page'),(7601,1274,'_elementor_version','3.0.11'),(7602,1274,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7591,1273,'_elementor_edit_mode','builder'),(7590,1273,'_wp_page_template','template/template-onepage.php'),(7582,1272,'_wp_page_template','template/template-onepage.php'),(7565,1270,'_wp_page_template','template/template-onepage.php'),(7566,1270,'_elementor_edit_mode','builder'),(7567,1270,'_elementor_template_type','wp-page'),(7568,1270,'_elementor_version','3.0.11'),(7569,1270,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7570,1270,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_background_color\":\"#005813\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7558,1269,'_elementor_edit_mode','builder'),(7559,1269,'_elementor_template_type','wp-page'),(7560,1269,'_elementor_version','3.0.11'),(7561,1269,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7562,1269,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7557,1269,'_wp_page_template','template/template-onepage.php'),(7592,1273,'_elementor_template_type','wp-page'),(7593,1273,'_elementor_version','3.0.11'),(7594,1273,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7595,1273,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#005813\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7586,1272,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7587,1272,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#005813\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_hover_background_color\":\"#005813\",\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7583,1272,'_elementor_edit_mode','builder'),(7584,1272,'_elementor_template_type','wp-page'),(7585,1272,'_elementor_version','3.0.11'),(7603,1274,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#005813\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7606,1275,'_wp_page_template','template/template-onepage.php'),(7607,1275,'_elementor_edit_mode','builder'),(7608,1275,'_elementor_template_type','wp-page'),(7609,1275,'_elementor_version','3.0.11'),(7610,1275,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7611,1275,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#001358\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#001358\",\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_background_color\":\"#001358\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7615,1276,'_wp_page_template','template/template-onepage.php'),(7616,1276,'_elementor_edit_mode','builder'),(7617,1276,'_elementor_template_type','wp-page'),(7618,1276,'_elementor_version','3.0.11'),(7619,1276,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7620,1276,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7624,1277,'_wp_page_template','template/template-onepage.php'),(7625,1277,'_elementor_edit_mode','builder'),(7626,1277,'_elementor_template_type','wp-page'),(7627,1277,'_elementor_version','3.0.11'),(7628,1277,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7629,1277,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7631,1245,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(7635,1279,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7636,1279,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7637,1279,'_edit_lock','1653526622:1'),(7638,1279,'_wp_page_template','template/template-onepage.php'),(7639,1279,'_edit_last','1'),(7640,1279,'fave_listing_page_content_area','0'),(7641,1279,'fave_prop_no','9'),(7642,1279,'fave_properties_sort','d_date'),(7643,1279,'fave_listings_tabs','disable'),(7644,1279,'fave_properties_min_beds','0'),(7645,1279,'fave_properties_min_baths','0'),(7646,1279,'fave_agency_orderby','None'),(7647,1279,'fave_agency_order','ASC'),(7648,1279,'fave_agent_orderby','None'),(7649,1279,'fave_agent_order','ASC'),(7650,1279,'fave_header_type','elementor'),(7651,1279,'fave_page_header_image_opacity','0.35'),(7652,1279,'fave_page_header_search','0'),(7653,1279,'fave_header_full_screen','0'),(7654,1279,'fave_adv_search_enable','global'),(7655,1279,'fave_adv_search','hide'),(7656,1279,'fave_adv_search_pos','under_menu'),(7657,1279,'fave_page_title','show'),(7658,1279,'fave_page_breadcrumb','show'),(7659,1279,'fave_page_sidebar','right_sidebar'),(7660,1279,'fave_page_background','yes'),(7661,1279,'fave_main_menu_trans','no'),(7662,1279,'slide_template',''),(7663,1279,'rs_page_bg_color',''),(7664,1279,'passster_activate_protection',NULL),(7665,1279,'passster_protection_type','password'),(7666,1279,'_wpb_vc_js_status','false'),(7667,1279,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(7668,1279,'_elementor_edit_mode','builder'),(7669,1279,'_elementor_template_type','wp-page'),(7670,1279,'_elementor_version','3.6.5'),(7671,1279,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7672,1279,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":47,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bd8f1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Office\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethton, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7683,1281,'_wp_page_template','template/template-onepage.php'),(7684,1281,'_elementor_edit_mode','builder'),(7685,1281,'_elementor_template_type','wp-page'),(7686,1281,'_elementor_version','3.0.11'),(7687,1281,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7688,1281,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7693,1282,'_wp_page_template','template/template-onepage.php'),(7694,1282,'_elementor_edit_mode','builder'),(7695,1282,'_elementor_template_type','wp-page'),(7696,1282,'_elementor_version','3.0.11'),(7697,1282,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7698,1282,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7675,1280,'_wp_page_template','template/template-onepage.php'),(7676,1280,'_elementor_edit_mode','builder'),(7677,1280,'_elementor_template_type','wp-page'),(7678,1280,'_elementor_version','3.0.11'),(7679,1280,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7680,1280,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7681,1280,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(7711,1284,'_wp_page_template','template/template-onepage.php'),(7712,1284,'_elementor_edit_mode','builder'),(7713,1284,'_elementor_template_type','wp-page'),(7702,1283,'_wp_page_template','template/template-onepage.php'),(7703,1283,'_elementor_edit_mode','builder'),(7704,1283,'_elementor_template_type','wp-page'),(7705,1283,'_elementor_version','3.0.11'),(7706,1283,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7707,1283,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0c670e6\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Profile\",\"align\":\"justify\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7714,1284,'_elementor_version','3.0.11'),(7715,1284,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7716,1284,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7720,1285,'_wp_page_template','template/template-onepage.php'),(7721,1285,'_elementor_edit_mode','builder'),(7722,1285,'_elementor_template_type','wp-page'),(7723,1285,'_elementor_version','3.0.11'),(7724,1285,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7725,1285,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7736,1287,'_wp_page_template','template/template-onepage.php'),(7728,1286,'_wp_page_template','template/template-onepage.php'),(7729,1286,'_elementor_edit_mode','builder'),(7730,1286,'_elementor_template_type','wp-page'),(7731,1286,'_elementor_version','3.0.11'),(7732,1286,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7733,1286,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7737,1287,'_elementor_edit_mode','builder'),(7738,1287,'_elementor_template_type','wp-page'),(7739,1287,'_elementor_version','3.0.11'),(7740,1287,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7741,1287,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7776,1292,'_wp_page_template','template/template-onepage.php'),(7753,1289,'_wp_page_template','template/template-onepage.php'),(7754,1289,'_elementor_edit_mode','builder'),(7755,1289,'_elementor_template_type','wp-page'),(7745,1288,'_wp_page_template','template/template-onepage.php'),(7746,1288,'_elementor_edit_mode','builder'),(7747,1288,'_elementor_template_type','wp-page'),(7748,1288,'_elementor_version','3.0.11'),(7749,1288,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7750,1288,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7756,1289,'_elementor_version','3.0.11'),(7757,1289,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7758,1289,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7760,1290,'_wp_page_template','template/template-onepage.php'),(7761,1290,'_elementor_edit_mode','builder'),(7762,1290,'_elementor_template_type','wp-page'),(7763,1290,'_elementor_version','3.0.11'),(7764,1290,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7765,1290,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7768,1291,'_wp_page_template','template/template-onepage.php'),(7769,1291,'_elementor_edit_mode','builder'),(7770,1291,'_elementor_template_type','wp-page'),(7771,1291,'_elementor_version','3.0.11'),(7772,1291,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7773,1291,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7777,1292,'_elementor_edit_mode','builder'),(7778,1292,'_elementor_template_type','wp-page'),(7779,1292,'_elementor_version','3.0.11'),(7780,1292,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7781,1292,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo-e1602979990537.jpg\",\"id\":22},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo-e1602979990537.jpg\",\"id\":22},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7790,1295,'_wp_page_template','template/template-onepage.php'),(7791,1295,'_elementor_edit_mode','builder'),(7792,1295,'_elementor_template_type','wp-page'),(7793,1295,'_elementor_version','3.0.11'),(7794,1295,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7795,1295,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7789,1294,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.258366800535475338307378478930331766605377197265625;s:5:\"bytes\";i:3102;s:11:\"size_before\";i:246510;s:10:\"size_after\";i:243408;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.680000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:3102;s:11:\"size_before\";i:84238;s:10:\"size_after\";i:81136;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:81136;s:10:\"size_after\";i:81136;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:81136;s:10:\"size_after\";i:81136;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(7787,1294,'_wp_attached_file','2020/10/Lantern-Square.png'),(7788,1294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:345;s:4:\"file\";s:26:\"2020/10/Lantern-Square.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Lantern-Square.png\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Lantern-Square.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"Lantern-Square.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(7799,1296,'_wp_page_template','template/template-onepage.php'),(7800,1296,'_elementor_edit_mode','builder'),(7801,1296,'_elementor_template_type','wp-page'),(7802,1296,'_elementor_version','3.0.11'),(7803,1296,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7804,1296,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7807,1297,'_wp_page_template','template/template-onepage.php'),(7808,1297,'_elementor_edit_mode','builder'),(7809,1297,'_elementor_template_type','wp-page'),(7810,1297,'_elementor_version','3.0.11'),(7811,1297,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7812,1297,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7815,1298,'_wp_page_template','template/template-onepage.php'),(7816,1298,'_elementor_edit_mode','builder'),(7817,1298,'_elementor_template_type','wp-page'),(7818,1298,'_elementor_version','3.0.11'),(7819,1298,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7820,1298,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7824,1299,'_wp_page_template','template/template-onepage.php'),(7825,1299,'_elementor_edit_mode','builder'),(7826,1299,'_elementor_template_type','wp-page'),(7827,1299,'_elementor_version','3.0.11'),(7828,1299,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7829,1299,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8054,1311,'_wp_page_template','template/template-onepage.php'),(8055,1311,'_elementor_edit_mode','builder'),(8056,1311,'_elementor_template_type','wp-page'),(8057,1311,'_elementor_version','3.0.11'),(8058,1311,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8059,1311,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7833,1300,'_elementor_edit_mode','builder'),(7834,1300,'_elementor_template_type','wp-page'),(7835,1300,'_elementor_version','3.0.11'),(7836,1300,'_wp_page_template','template/template-agencies.php'),(7838,1301,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7839,1301,'_menu_item_type','post_type'),(7840,1301,'_menu_item_menu_item_parent','0'),(7841,1301,'_menu_item_object_id','1279'),(7842,1301,'_menu_item_object','page'),(7843,1301,'_menu_item_target',''),(7844,1301,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7845,1301,'_menu_item_xfn',''),(7846,1301,'_menu_item_url',''),(7853,1302,'fave_listing_page_content_area','0'),(7854,1302,'fave_prop_no','9'),(7855,1302,'fave_properties_sort','d_date'),(7856,1302,'fave_listings_tabs','disable'),(7857,1302,'fave_properties_min_beds','0'),(7858,1302,'fave_properties_min_baths','0'),(7859,1302,'fave_agency_orderby','None'),(7860,1302,'fave_agency_order','ASC'),(7861,1302,'fave_agent_orderby','None'),(7862,1302,'fave_agent_order','ASC'),(7863,1302,'fave_header_type','elementor'),(7864,1302,'fave_page_header_image_opacity','0.35'),(7865,1302,'fave_page_header_search','0'),(7866,1302,'fave_header_full_screen','0'),(7867,1302,'fave_adv_search_enable','global'),(7868,1302,'fave_adv_search','hide'),(7869,1302,'fave_adv_search_pos','under_menu'),(7870,1302,'fave_page_title','show'),(7871,1302,'fave_page_breadcrumb','show'),(7872,1302,'fave_page_sidebar','right_sidebar'),(7873,1302,'fave_page_background','yes'),(7874,1302,'fave_main_menu_trans','no'),(7875,1302,'slide_template','default'),(7876,1302,'rs_page_bg_color','#ffffff'),(7877,1302,'passster_activate_protection',NULL),(7878,1302,'passster_protection_type','password'),(7879,1302,'_wpb_vc_js_status','false'),(7880,1302,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(7881,1302,'_elementor_edit_mode','builder'),(7882,1302,'_elementor_template_type','wp-page'),(7883,1302,'_elementor_version','3.0.11'),(7884,1302,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7885,1302,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Salisbury Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Salisbury\\/815190\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8063,1312,'_wp_page_template','template/template-onepage.php'),(8064,1312,'_elementor_edit_mode','builder'),(8065,1312,'_elementor_template_type','wp-page'),(8066,1312,'_elementor_version','3.0.11'),(8067,1312,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8068,1312,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Salisbury Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Salisbury\\/815190\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8070,1302,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(7888,1303,'_wp_page_template','template/template-onepage.php'),(7889,1303,'_elementor_edit_mode','builder'),(7890,1303,'_elementor_template_type','wp-page'),(7891,1303,'_elementor_version','3.0.11'),(7892,1303,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7893,1303,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7894,1303,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(8818,1462,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.486172776250729576918985230804537422955036163330078125;s:5:\"bytes\";i:45432;s:11:\"size_before\";i:9344826;s:10:\"size_after\";i:9299394;s:4:\"time\";d:5.870000000000000994759830064140260219573974609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:45432;s:11:\"size_before\";i:760770;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.5500000000000000444089209850062616169452667236328125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.58999999999999996891375531049561686813831329345703125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.6999999999999999555910790149937383830547332763671875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.82999999999999996003197111349436454474925994873046875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}}}'),(7896,1304,'_wp_page_template','template/template-onepage.php'),(7897,1304,'_elementor_edit_mode','builder'),(7898,1304,'_elementor_template_type','wp-page'),(7899,1304,'_elementor_version','3.0.11'),(7900,1304,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7901,1304,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7902,1304,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(8816,1462,'_wp_attached_file','2020/12/AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg'),(8817,1462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2501;s:6:\"height\";i:2561;s:4:\"file\";s:57:\"2020/12/AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:786;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:1500;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:2000;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:586;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:15:\"LL2 PRODUCTIONS\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1600866050\";s:9:\"copyright\";s:15:\"LL2 PRODUCTIONS\";s:12:\"focal_length\";s:2:\"44\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7904,1305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7905,1305,'_edit_last','1'),(7906,1305,'_wp_page_template','template/template-onepage.php'),(7907,1305,'_edit_lock','1603069446:1'),(7908,1305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7909,1305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7910,1305,'fave_listing_page_content_area','0'),(7911,1305,'fave_prop_no','9'),(7912,1305,'fave_properties_sort','d_date'),(7913,1305,'fave_listings_tabs','disable'),(7914,1305,'fave_properties_min_beds','0'),(7915,1305,'fave_properties_min_baths','0'),(7916,1305,'fave_agency_orderby','None'),(7917,1305,'fave_agency_order','ASC'),(7918,1305,'fave_agent_orderby','None'),(7919,1305,'fave_agent_order','ASC'),(7920,1305,'fave_header_type','elementor'),(7921,1305,'fave_page_header_image_opacity','0.35'),(7922,1305,'fave_page_header_search','0'),(7923,1305,'fave_header_full_screen','0'),(7924,1305,'fave_adv_search_enable','global'),(7925,1305,'fave_adv_search','hide'),(7926,1305,'fave_adv_search_pos','under_menu'),(7927,1305,'fave_page_title','show'),(7928,1305,'fave_page_breadcrumb','show'),(7929,1305,'fave_page_sidebar','right_sidebar'),(7930,1305,'fave_page_background','yes'),(7931,1305,'fave_main_menu_trans','no'),(7932,1305,'slide_template',''),(7933,1305,'rs_page_bg_color',''),(7934,1305,'passster_activate_protection',''),(7935,1305,'passster_protection_type','password'),(7936,1305,'_wpb_vc_js_status','false'),(7937,1305,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(7938,1305,'_elementor_edit_mode','builder'),(7939,1305,'_elementor_template_type','wp-page'),(7940,1305,'_elementor_version','3.0.11'),(7941,1305,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7942,1305,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Harrisburg Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8072,1313,'_wp_page_template','template/template-onepage.php'),(8073,1313,'_elementor_edit_mode','builder'),(8074,1313,'_elementor_template_type','wp-page'),(8075,1313,'_elementor_version','3.0.11'),(8076,1313,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8077,1313,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Harrisburg Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7945,1306,'_wp_page_template','template/template-onepage.php'),(7946,1306,'_elementor_edit_mode','builder'),(7947,1306,'_elementor_template_type','wp-page'),(7948,1306,'_elementor_version','3.0.11'),(7949,1306,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7950,1306,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7951,1306,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(9290,1598,'fave_agency_visible','0'),(9291,1598,'fave_agency_phone','828-772-0220'),(9292,1598,'slide_template',''),(7953,1307,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7954,1307,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7955,1307,'_edit_last','1'),(7956,1307,'_wp_page_template','template/template-onepage.php'),(7957,1307,'_edit_lock','1603069739:1'),(7958,1307,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7959,1307,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7960,1307,'fave_listing_page_content_area','0'),(7961,1307,'fave_prop_no','9'),(7962,1307,'fave_properties_sort','d_date'),(7963,1307,'fave_listings_tabs','disable'),(7964,1307,'fave_properties_min_beds','0'),(7965,1307,'fave_properties_min_baths','0'),(7966,1307,'fave_agency_orderby','None'),(7967,1307,'fave_agency_order','ASC'),(7968,1307,'fave_agent_orderby','None'),(7969,1307,'fave_agent_order','ASC'),(7970,1307,'fave_header_type','elementor'),(7971,1307,'fave_page_header_image_opacity','0.35'),(7972,1307,'fave_page_header_search','0'),(7973,1307,'fave_header_full_screen','0'),(7974,1307,'fave_adv_search_enable','global'),(7975,1307,'fave_adv_search','hide'),(7976,1307,'fave_adv_search_pos','under_menu'),(7977,1307,'fave_page_title','show'),(7978,1307,'fave_page_breadcrumb','show'),(7979,1307,'fave_page_sidebar','right_sidebar'),(7980,1307,'fave_page_background','yes'),(7981,1307,'fave_main_menu_trans','no'),(7982,1307,'slide_template',''),(7983,1307,'rs_page_bg_color',''),(7984,1307,'passster_activate_protection',''),(7985,1307,'passster_protection_type','password'),(7986,1307,'_wpb_vc_js_status','false'),(7987,1307,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(7988,1307,'_elementor_edit_mode','builder'),(7989,1307,'_elementor_template_type','wp-page'),(7990,1307,'_elementor_version','3.0.11'),(7991,1307,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7992,1307,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty - Albemarle Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8110,1318,'_wp_page_template','template/template-onepage.php'),(8102,1317,'_wp_page_template','template/template-onepage.php'),(8103,1317,'_elementor_edit_mode','builder'),(8104,1317,'_elementor_template_type','wp-page'),(8105,1317,'_elementor_version','3.0.11'),(8106,1317,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8107,1317,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty - Albemarle Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7995,1308,'_wp_page_template','template/template-onepage.php'),(7996,1308,'_elementor_edit_mode','builder'),(7997,1308,'_elementor_template_type','wp-page'),(7998,1308,'_elementor_version','3.0.11'),(7999,1308,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8000,1308,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8001,1308,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(8003,1309,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8004,1309,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8005,1309,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8006,1309,'_edit_last','1'),(8007,1309,'_wp_page_template','template/template-onepage.php'),(8008,1309,'_edit_lock','1605059520:1'),(8009,1309,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8010,1309,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8011,1309,'fave_listing_page_content_area','0'),(8012,1309,'fave_prop_no','9'),(8013,1309,'fave_properties_sort','d_date'),(8014,1309,'fave_listings_tabs','disable'),(8015,1309,'fave_properties_min_beds','0'),(8016,1309,'fave_properties_min_baths','0'),(8017,1309,'fave_agency_orderby','None'),(8018,1309,'fave_agency_order','ASC'),(8019,1309,'fave_agent_orderby','None'),(8020,1309,'fave_agent_order','ASC'),(8021,1309,'fave_header_type','elementor'),(8022,1309,'fave_page_header_image_opacity','0.35'),(8023,1309,'fave_page_header_search','0'),(8024,1309,'fave_header_full_screen','0'),(8025,1309,'fave_adv_search_enable','global'),(8026,1309,'fave_adv_search','hide'),(8027,1309,'fave_adv_search_pos','under_menu'),(8028,1309,'fave_page_title','show'),(8029,1309,'fave_page_breadcrumb','show'),(8030,1309,'fave_page_sidebar','right_sidebar'),(8031,1309,'fave_page_background','yes'),(8032,1309,'fave_main_menu_trans','no'),(8033,1309,'slide_template',''),(8034,1309,'rs_page_bg_color',''),(8035,1309,'passster_activate_protection',''),(8036,1309,'passster_protection_type','password'),(8037,1309,'_wpb_vc_js_status','false'),(8038,1309,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(8039,1309,'_elementor_edit_mode','builder'),(8040,1309,'_elementor_template_type','wp-page'),(8041,1309,'_elementor_version','3.0.11'),(8042,1309,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8043,1309,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Mooresville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 980-9379\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7049809379\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"LanternRealtyMooresville@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:LanternRealtyMooresville@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8087,1315,'_wp_page_template','template/template-onepage.php'),(8088,1315,'_elementor_edit_mode','builder'),(8089,1315,'_elementor_template_type','wp-page'),(8090,1315,'_elementor_version','3.0.11'),(8091,1315,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `lrwp_postmeta` VALUES (8092,1315,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Mooresville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8046,1310,'_wp_page_template','template/template-onepage.php'),(8047,1310,'_elementor_edit_mode','builder'),(8048,1310,'_elementor_template_type','wp-page'),(8049,1310,'_elementor_version','3.0.11'),(8050,1310,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8051,1310,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8052,1310,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(9482,1621,'_wp_page_template','template/template-onepage.php'),(9483,1621,'_elementor_edit_mode','builder'),(9484,1621,'_elementor_template_type','wp-page'),(9485,1621,'_elementor_version','3.0.11'),(9486,1621,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9487,1621,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8080,1314,'_wp_page_template','template/template-onepage.php'),(8081,1314,'_elementor_edit_mode','builder'),(8082,1314,'_elementor_template_type','wp-page'),(8083,1314,'_elementor_version','3.0.11'),(8084,1314,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8085,1314,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Harrisburg Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8086,1305,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(8095,1316,'_wp_page_template','template/template-onepage.php'),(8096,1316,'_elementor_edit_mode','builder'),(8097,1316,'_elementor_template_type','wp-page'),(8098,1316,'_elementor_version','3.0.11'),(8099,1316,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8100,1316,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Mooresville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8694,1411,'_wp_page_template','template/template-onepage.php'),(8695,1411,'_elementor_edit_mode','builder'),(8696,1411,'_elementor_template_type','wp-page'),(8697,1411,'_elementor_version','3.0.11'),(8698,1411,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8699,1411,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Mooresville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 980-9379\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7049809379\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"LanternRealtyMooresville@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:LanternRealtyMooresville@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8111,1318,'_elementor_edit_mode','builder'),(8112,1318,'_elementor_template_type','wp-page'),(8113,1318,'_elementor_version','3.0.11'),(8114,1318,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8115,1318,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty - Albemarle Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8116,1307,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(8811,1460,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.056007765499380912643800911610014736652374267578125;s:5:\"bytes\";i:32898;s:11:\"size_before\";i:3115318;s:10:\"size_after\";i:3082420;s:4:\"time\";d:1.54000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:32898;s:11:\"size_before\";i:341140;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.25;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(8125,101,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8126,1320,'_wp_page_template','template/template-page.php'),(8127,1320,'_elementor_edit_mode','builder'),(8128,1320,'_elementor_template_type','wp-page'),(8129,1320,'_elementor_version','3.0.9'),(8130,1320,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">6477 Morehead Road Harrisburg, North Carolina 28075 <\\/br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">118 East Main Street Albemarle, North Carolina 28001 <\\/br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(8132,1320,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8134,1321,'_wp_page_template','template/template-page.php'),(8135,1321,'_elementor_edit_mode','builder'),(8136,1321,'_elementor_template_type','wp-page'),(8137,1321,'_elementor_version','3.0.11'),(8138,1321,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">6477 Morehead Road Harrisburg, North Carolina 28075 <\\/br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">118 East Main Street Albemarle, North Carolina 28001 <\\/br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(8139,1321,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9661,1647,'_wp_page_template','template/template-page.php'),(9662,1647,'_elementor_edit_mode','builder'),(9663,1647,'_elementor_template_type','wp-page'),(9664,1647,'_elementor_version','3.0.11'),(9665,1647,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">6477 Morehead Road Harrisburg, North Carolina 28075 <\\/br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">118 East Main Street Albemarle, North Carolina 28001 <\\/br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(8757,1442,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.5052093923094458371991777312359772622585296630859375;s:5:\"bytes\";i:21987;s:11:\"size_before\";i:1460727;s:10:\"size_after\";i:1438740;s:4:\"time\";d:1.6799999999999999378275106209912337362766265869140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.5;s:5:\"bytes\";i:21987;s:11:\"size_before\";i:141882;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119895;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119895;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119895;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119895;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119895;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119895;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119895;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119895;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119895;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119895;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119895;s:10:\"size_after\";i:119895;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(8755,1442,'_wp_attached_file','2020/11/19_199043_GFR_LGO_Young_Gecko.jpg'),(8756,1442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1045;s:4:\"file\";s:41:\"2020/11/19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"19_199043_GFR_LGO_Young_Gecko.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:\"19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:33:\"19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:33:\"19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:33:\"19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:33:\"19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:33:\"19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"width\";i:1176;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:33:\"19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:33:\"19_199043_GFR_LGO_Young_Gecko.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:253;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:{}}}'),(8189,1325,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8190,1325,'_edit_lock','1603074667:1'),(8191,1325,'_wp_page_template','template/template-onepage.php'),(8192,1325,'_edit_last','1'),(8193,1325,'fave_listing_page_content_area','0'),(8194,1325,'fave_prop_no','9'),(8195,1325,'fave_properties_sort','d_date'),(8196,1325,'fave_listings_tabs','disable'),(8197,1325,'fave_properties_min_beds','0'),(8198,1325,'fave_properties_min_baths','0'),(8199,1325,'fave_agency_orderby','None'),(8200,1325,'fave_agency_order','ASC'),(8201,1325,'fave_agent_orderby','None'),(8202,1325,'fave_agent_order','ASC'),(8203,1325,'fave_header_type','none'),(8204,1325,'fave_page_header_image_opacity','0.35'),(8205,1325,'fave_page_header_search','0'),(8206,1325,'fave_header_full_screen','0'),(8207,1325,'fave_adv_search_enable','global'),(8208,1325,'fave_adv_search','hide'),(8209,1325,'fave_adv_search_pos','under_menu'),(8210,1325,'fave_page_title','show'),(8211,1325,'fave_page_breadcrumb','show'),(8212,1325,'fave_page_sidebar','right_sidebar'),(8213,1325,'fave_page_background','yes'),(8214,1325,'fave_main_menu_trans','no'),(8215,1325,'slide_template','default'),(8216,1325,'rs_page_bg_color','#ffffff'),(8217,1325,'passster_activate_protection',NULL),(8218,1325,'passster_protection_type','password'),(8219,1325,'_wpb_vc_js_status','false'),(8220,1325,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(8221,1325,'_elementor_edit_mode','builder'),(8222,1325,'_elementor_template_type','wp-page'),(8223,1325,'_elementor_version','3.0.11'),(8232,1328,'_wp_page_template','template/template-onepage.php'),(8230,1325,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8231,1325,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"644e5e0\",\"elType\":\"widget\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85229da\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d635eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d2879d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2244af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"da38b9d\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-search\",\"title\":\"Buy\",\"text\":\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\\u2019re one click away from discovering your next home!\",\"read_more_text\":\"Search Homes\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/homes-for-sale-search\\/\"},\"_id\":\"b980347\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-home\",\"title\":\"Sell\",\"text\":\"Lantern Realty and Development dedicated to selling your home quickly and getting you what it\\u2019s worth. Let us speak with you about selling your property and you\\u2019ll learn why our previous clients love us.\",\"read_more_text\":\"Free Valuation Request\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\"},\"_id\":\"4ab842d\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-phone\",\"title\":\"Contact\",\"text\":\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\",\"read_more_text\":\"Speak to an Agent\",\"read_more_link\":{\"url\":\"tel:\\/\\/(704) 298-0087\"},\"_id\":\"81a1874\"}],\"padding_a\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_primary_color\":\"#004272\",\"icon_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"f6ffebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Listings\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"339de3f\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[optima_express_gallery_slider height=\\\"425\\\" rows=\\\"1\\\" nav=\\\"sides\\\" style=\\\"grid\\\" columns=\\\"3\\\" effect=\\\"slide\\\" auto=\\\"false\\\" interval=\\\"4\\\" status=\\\"active\\\" sortBy=\\\"pd\\\" maxResults=\\\"25\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d37e474\",\"elType\":\"widget\",\"settings\":{\"title\":\"Listed this Week\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1cd1d1a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[optima_express_gallery_slider id=\\\"813462\\\" height=\\\"425\\\" rows=\\\"1\\\" nav=\\\"sides\\\" style=\\\"grid\\\" columns=\\\"3\\\" effect=\\\"slide\\\" auto=\\\"false\\\" interval=\\\"4\\\" status=\\\"active\\\" sortBy=\\\"ds\\\" maxResults=\\\"25\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(8233,1328,'_elementor_edit_mode','builder'),(8234,1328,'_elementor_template_type','wp-page'),(8235,1328,'_elementor_version','3.0.11'),(8236,1328,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8237,1328,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8239,1329,'_wp_page_template','template/template-onepage.php'),(8240,1329,'_elementor_edit_mode','builder'),(8241,1329,'_elementor_template_type','wp-page'),(8242,1329,'_elementor_version','3.0.11'),(8243,1329,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8244,1329,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"universal\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8247,1330,'_wp_page_template','template/template-onepage.php'),(8248,1330,'_elementor_edit_mode','builder'),(8249,1330,'_elementor_template_type','wp-page'),(8250,1330,'_elementor_version','3.0.11'),(8251,1330,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8252,1330,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Property Search\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8258,1331,'_elementor_template_type','wp-page'),(8259,1331,'_elementor_version','3.0.11'),(8260,1331,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8256,1331,'_wp_page_template','template/template-onepage.php'),(8257,1331,'_elementor_edit_mode','builder'),(8261,1331,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Property Search\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8265,1332,'_wp_page_template','template/template-onepage.php'),(8266,1332,'_elementor_edit_mode','builder'),(8267,1332,'_elementor_template_type','wp-page'),(8268,1332,'_elementor_version','3.0.11'),(8269,1332,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8270,1332,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Property Search\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8273,1333,'_wp_page_template','template/template-onepage.php'),(8274,1333,'_elementor_edit_mode','builder'),(8275,1333,'_elementor_template_type','wp-page'),(8276,1333,'_elementor_version','3.0.11'),(8277,1333,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8278,1333,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Property Search\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8281,1334,'_wp_page_template','template/template-onepage.php'),(8282,1334,'_elementor_edit_mode','builder'),(8283,1334,'_elementor_template_type','wp-page'),(8284,1334,'_elementor_version','3.0.11'),(8285,1334,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8286,1334,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"xl\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8290,1335,'_wp_page_template','template/template-onepage.php'),(8291,1335,'_elementor_edit_mode','builder'),(8292,1335,'_elementor_template_type','wp-page'),(8293,1335,'_elementor_version','3.0.11'),(8294,1335,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8295,1335,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8299,1336,'_wp_page_template','template/template-onepage.php'),(8300,1336,'_elementor_edit_mode','builder'),(8301,1336,'_elementor_template_type','wp-page'),(8302,1336,'_elementor_version','3.0.11'),(8303,1336,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8304,1336,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8308,1337,'_wp_page_template','template/template-onepage.php'),(8309,1337,'_elementor_edit_mode','builder'),(8310,1337,'_elementor_template_type','wp-page'),(8311,1337,'_elementor_version','3.0.11'),(8312,1337,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8313,1337,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9293,1598,'rs_page_bg_color',''),(8317,1338,'_wp_page_template','template/template-onepage.php'),(8318,1338,'_elementor_edit_mode','builder'),(8319,1338,'_elementor_template_type','wp-page'),(8320,1338,'_elementor_version','3.0.11'),(8321,1338,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8322,1338,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9294,1598,'fave_agency_address','23 Mill Stone Drive, Asheville NC 28803'),(8326,1339,'_wp_page_template','template/template-onepage.php'),(8327,1339,'_elementor_edit_mode','builder'),(8328,1339,'_elementor_template_type','wp-page'),(8329,1339,'_elementor_version','3.0.11'),(8330,1339,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8331,1339,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"column_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8335,1340,'_wp_page_template','template/template-onepage.php'),(8336,1340,'_elementor_edit_mode','builder'),(8337,1340,'_elementor_template_type','wp-page'),(8338,1340,'_elementor_version','3.0.11'),(8339,1340,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8340,1340,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8344,1341,'_wp_page_template','template/template-onepage.php'),(8345,1341,'_elementor_edit_mode','builder'),(8346,1341,'_elementor_template_type','wp-page'),(8347,1341,'_elementor_version','3.0.11'),(8348,1341,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8349,1341,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9297,1598,'fave_agency_web','https://lantern-realty.com/'),(8353,1342,'_wp_page_template','template/template-onepage.php'),(8354,1342,'_elementor_edit_mode','builder'),(8355,1342,'_elementor_template_type','wp-page'),(8356,1342,'_elementor_version','3.0.11'),(8357,1342,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8358,1342,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9299,1599,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9298,1598,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(8362,1343,'_wp_page_template','template/template-onepage.php'),(8363,1343,'_elementor_edit_mode','builder'),(8364,1343,'_elementor_template_type','wp-page'),(8365,1343,'_elementor_version','3.0.11'),(8366,1343,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8367,1343,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9300,1599,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9301,1599,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8371,1344,'_wp_page_template','template/template-onepage.php'),(8372,1344,'_elementor_edit_mode','builder'),(8373,1344,'_elementor_template_type','wp-page'),(8374,1344,'_elementor_version','3.0.11'),(8375,1344,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8376,1344,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9302,1599,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9303,1599,'_edit_last','1'),(9304,1599,'_wp_page_template','template/template-onepage.php'),(8379,1345,'_wp_page_template','template/template-onepage.php'),(8380,1345,'_elementor_edit_mode','builder'),(8381,1345,'_elementor_template_type','wp-page'),(8382,1345,'_elementor_version','3.0.11'),(8383,1345,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8384,1345,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8387,1346,'_wp_page_template','template/template-onepage.php'),(8388,1346,'_elementor_edit_mode','builder'),(8389,1346,'_elementor_template_type','wp-page'),(8390,1346,'_elementor_version','3.0.11'),(8391,1346,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8392,1346,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9305,1599,'_edit_lock','1614130672:1'),(9306,1599,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8396,1347,'_wp_page_template','template/template-onepage.php'),(8397,1347,'_elementor_edit_mode','builder'),(8398,1347,'_elementor_template_type','wp-page'),(8399,1347,'_elementor_version','3.0.11'),(8400,1347,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8401,1347,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9308,1599,'fave_listing_page_content_area','0'),(9307,1599,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8405,1348,'_wp_page_template','template/template-onepage.php'),(8406,1348,'_elementor_edit_mode','builder'),(8407,1348,'_elementor_template_type','wp-page'),(8408,1348,'_elementor_version','3.0.11'),(8409,1348,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8410,1348,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"644e5e0\",\"elType\":\"widget\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.770000000000000017763568394002504646778106689453125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9309,1599,'fave_prop_no','9'),(9310,1599,'fave_properties_sort','d_date'),(9311,1599,'fave_listings_tabs','disable'),(8445,1353,'_wp_page_template','template/template-onepage.php'),(8446,1353,'_elementor_edit_mode','builder'),(8447,1353,'_elementor_template_type','wp-page'),(8448,1353,'_elementor_version','3.0.11'),(8449,1353,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8450,1353,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"644e5e0\",\"elType\":\"widget\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85229da\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d635eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d2879d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c2244af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e5519c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-search\",\"library\":\"fa-solid\"},\"title_text\":\"Buy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"d58ba09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e8d119f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8425,1350,'_elementor_version','3.0.11'),(8426,1350,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8427,1350,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"644e5e0\",\"elType\":\"widget\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85229da\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d635eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8422,1350,'_wp_page_template','template/template-onepage.php'),(8423,1350,'_elementor_edit_mode','builder'),(8424,1350,'_elementor_template_type','wp-page'),(8439,1352,'_elementor_edit_mode','builder'),(8440,1352,'_elementor_template_type','wp-page'),(8441,1352,'_elementor_version','3.0.11'),(8442,1352,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8443,1352,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"644e5e0\",\"elType\":\"widget\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85229da\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d635eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d2879d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c2244af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e5519c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-search\",\"library\":\"fa-solid\"},\"title_text\":\"Buy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"d58ba09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e8d119f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8438,1352,'_wp_page_template','template/template-onepage.php'),(8453,1354,'_wp_page_template','template/template-onepage.php'),(8454,1354,'_elementor_edit_mode','builder'),(8455,1354,'_elementor_template_type','wp-page'),(8456,1354,'_elementor_version','3.0.11'),(8457,1354,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8458,1354,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"644e5e0\",\"elType\":\"widget\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85229da\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d635eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d2879d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2244af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"da38b9d\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-search\",\"title\":\"Buy\",\"text\":\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\\u2019re one click away from discovering your next home!\",\"read_more_text\":\"Search Homes\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/homes-for-sale-search\\/\"},\"_id\":\"b980347\"}],\"padding_a\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_primary_color\":\"#004272\",\"icon_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9312,1599,'fave_properties_min_beds','0'),(9313,1599,'fave_properties_min_baths','0'),(9314,1599,'fave_agency_orderby','None'),(8462,1355,'_wp_page_template','template/template-onepage.php'),(8463,1355,'_elementor_edit_mode','builder'),(8464,1355,'_elementor_template_type','wp-page'),(8465,1355,'_elementor_version','3.0.11'),(8466,1355,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8467,1355,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"644e5e0\",\"elType\":\"widget\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85229da\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d635eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d2879d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2244af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"da38b9d\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-search\",\"title\":\"Buy\",\"text\":\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\\u2019re one click away from discovering your next home!\",\"read_more_text\":\"Search Homes\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/homes-for-sale-search\\/\"},\"_id\":\"b980347\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-search\",\"title\":\"Buy\",\"text\":\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\\u2019re one click away from discovering your next home!\",\"read_more_text\":\"Search Homes\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/homes-for-sale-search\\/\"},\"_id\":\"4ab842d\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-search\",\"title\":\"Buy\",\"text\":\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\\u2019re one click away from discovering your next home!\",\"read_more_text\":\"Search Homes\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/homes-for-sale-search\\/\"},\"_id\":\"81a1874\"}],\"padding_a\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_primary_color\":\"#004272\",\"icon_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9315,1599,'fave_agency_order','ASC'),(9316,1599,'fave_agent_orderby','None'),(9317,1599,'fave_agent_order','ASC'),(8471,1356,'_wp_page_template','template/template-onepage.php'),(8472,1356,'_elementor_edit_mode','builder'),(8473,1356,'_elementor_template_type','wp-page'),(8474,1356,'_elementor_version','3.0.11'),(8475,1356,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8476,1356,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"644e5e0\",\"elType\":\"widget\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85229da\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d635eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d2879d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2244af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"da38b9d\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-search\",\"title\":\"Buy\",\"text\":\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\\u2019re one click away from discovering your next home!\",\"read_more_text\":\"Search Homes\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/homes-for-sale-search\\/\"},\"_id\":\"b980347\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-home\",\"title\":\"Sell\",\"text\":\"Lantern Realty and Development dedicated to selling your home quickly and getting you what it\\u2019s worth. Let us speak with you about selling your property and you\\u2019ll learn why our previous clients love us.\",\"read_more_text\":\"Free Valuation Request\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\"},\"_id\":\"4ab842d\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-phone\",\"title\":\"Contact\",\"text\":\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\",\"read_more_text\":\"Speak to an Agent\",\"read_more_link\":{\"url\":\"tel:\\/\\/(704) 298-0087\"},\"_id\":\"81a1874\"}],\"padding_a\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_primary_color\":\"#004272\",\"icon_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9319,1599,'fave_page_header_image_opacity','0.35'),(9320,1599,'fave_page_header_search','0'),(9318,1599,'fave_header_type','elementor'),(8501,1359,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"644e5e0\",\"elType\":\"widget\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85229da\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d635eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d2879d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2244af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"da38b9d\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-search\",\"title\":\"Buy\",\"text\":\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\\u2019re one click away from discovering your next home!\",\"read_more_text\":\"Search Homes\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/homes-for-sale-search\\/\"},\"_id\":\"b980347\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-home\",\"title\":\"Sell\",\"text\":\"Lantern Realty and Development dedicated to selling your home quickly and getting you what it\\u2019s worth. Let us speak with you about selling your property and you\\u2019ll learn why our previous clients love us.\",\"read_more_text\":\"Free Valuation Request\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\"},\"_id\":\"4ab842d\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-phone\",\"title\":\"Contact\",\"text\":\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\",\"read_more_text\":\"Speak to an Agent\",\"read_more_link\":{\"url\":\"tel:\\/\\/(704) 298-0087\"},\"_id\":\"81a1874\"}],\"padding_a\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_primary_color\":\"#004272\",\"icon_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"f6ffebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Listings\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"339de3f\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[optima_express_gallery_slider height=\\\"425\\\" rows=\\\"1\\\" nav=\\\"sides\\\" style=\\\"grid\\\" columns=\\\"3\\\" effect=\\\"slide\\\" auto=\\\"false\\\" interval=\\\"4\\\" status=\\\"active\\\" sortBy=\\\"pd\\\" maxResults=\\\"25\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d37e474\",\"elType\":\"widget\",\"settings\":{\"title\":\"Listed this Week\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1cd1d1a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[optima_express_gallery_slider id=\\\"813462\\\" height=\\\"425\\\" rows=\\\"1\\\" nav=\\\"sides\\\" style=\\\"grid\\\" columns=\\\"3\\\" effect=\\\"slide\\\" auto=\\\"false\\\" interval=\\\"4\\\" status=\\\"active\\\" sortBy=\\\"ds\\\" maxResults=\\\"25\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(8503,1325,'_elementor_controls_usage','a:7:{s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:38:\"wp-widget-ihomefinderquicksearchwidget\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:4;s:16:\"content_position\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:5:{s:6:\"layout\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:15:\"column_position\";i:1;s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}}}s:25:\"houzez_elementor_icon_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"content_section\";a:1:{s:10:\"icon_boxes\";i:1;}s:24:\"content_section_settings\";a:1:{s:9:\"padding_a\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_iconbox_style\";a:3:{s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}}'),(8496,1359,'_wp_page_template','template/template-onepage.php'),(8497,1359,'_elementor_edit_mode','builder'),(8498,1359,'_elementor_template_type','wp-page'),(8499,1359,'_elementor_version','3.0.11'),(8500,1359,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8488,1358,'_wp_page_template','template/template-onepage.php'),(8489,1358,'_elementor_edit_mode','builder'),(8490,1358,'_elementor_template_type','wp-page'),(8491,1358,'_elementor_version','3.0.11'),(8492,1358,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8493,1358,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"644e5e0\",\"elType\":\"widget\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85229da\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d635eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d2879d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2244af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"da38b9d\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-search\",\"title\":\"Buy\",\"text\":\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\\u2019re one click away from discovering your next home!\",\"read_more_text\":\"Search Homes\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/homes-for-sale-search\\/\"},\"_id\":\"b980347\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-home\",\"title\":\"Sell\",\"text\":\"Lantern Realty and Development dedicated to selling your home quickly and getting you what it\\u2019s worth. Let us speak with you about selling your property and you\\u2019ll learn why our previous clients love us.\",\"read_more_text\":\"Free Valuation Request\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\"},\"_id\":\"4ab842d\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-phone\",\"title\":\"Contact\",\"text\":\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\",\"read_more_text\":\"Speak to an Agent\",\"read_more_link\":{\"url\":\"tel:\\/\\/(704) 298-0087\"},\"_id\":\"81a1874\"}],\"padding_a\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_primary_color\":\"#004272\",\"icon_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"f6ffebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Listings\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"339de3f\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[optima_express_gallery_slider height=\\\"425\\\" rows=\\\"1\\\" nav=\\\"sides\\\" style=\\\"grid\\\" columns=\\\"3\\\" effect=\\\"slide\\\" auto=\\\"false\\\" interval=\\\"4\\\" status=\\\"active\\\" sortBy=\\\"pd\\\" maxResults=\\\"25\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9323,1599,'fave_adv_search','hide'),(9321,1599,'fave_header_full_screen','0'),(9322,1599,'fave_adv_search_enable','global'),(9327,1599,'fave_page_sidebar','right_sidebar'),(9328,1599,'fave_page_background','yes'),(8505,1360,'_wp_page_template','template/template-onepage.php'),(8506,1360,'_elementor_edit_mode','builder'),(8507,1360,'_elementor_template_type','wp-page'),(8508,1360,'_elementor_version','3.0.11'),(8509,1360,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8510,1360,'_elementor_data','[{\"id\":\"7df6e22\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"height\":\"full\",\"custom_height\":{\"unit\":\"px\",\"size\":563,\"sizes\":[]},\"column_position\":\"top\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Lantern_OpenHouse.png\",\"id\":56},\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"138079a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"644e5e0\",\"elType\":\"widget\",\"settings\":{\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2118d19\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d88ffed\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fda7064\",\"elType\":\"widget\",\"settings\":{\"title\":\"Property Search\",\"size\":\"large\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b92585b\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"style\":\"twoline\",\"idx-contact-form\":\"true\",\"idx-featured-search\":\"true\",\"idx-detail\":\"true\",\"idx-hotsheets\":\"true\",\"idx-open-home-search-form\":\"true\",\"idx-property-organizer-login\":\"true\",\"idx-pending-featured-listing\":\"true\",\"idx-results\":\"true\",\"idx-sold-featured-listing\":\"true\",\"idx-sold-detail\":\"true\",\"idx-supplemental-listing\":\"true\",\"idx-valuation-form\":\"true\"}},\"elements\":[],\"widgetType\":\"wp-widget-ihomefinderquicksearchwidget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85229da\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d635eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d2879d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2244af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"da38b9d\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-search\",\"title\":\"Buy\",\"text\":\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\\u2019re one click away from discovering your next home!\",\"read_more_text\":\"Search Homes\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/homes-for-sale-search\\/\"},\"_id\":\"b980347\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-home\",\"title\":\"Sell\",\"text\":\"Lantern Realty and Development dedicated to selling your home quickly and getting you what it\\u2019s worth. Let us speak with you about selling your property and you\\u2019ll learn why our previous clients love us.\",\"read_more_text\":\"Free Valuation Request\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\"},\"_id\":\"4ab842d\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-phone\",\"title\":\"Contact\",\"text\":\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\",\"read_more_text\":\"Speak to an Agent\",\"read_more_link\":{\"url\":\"tel:\\/\\/(704) 298-0087\"},\"_id\":\"81a1874\"}],\"padding_a\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"icon_primary_color\":\"#004272\",\"icon_size\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"f6ffebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Listings\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"339de3f\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[optima_express_gallery_slider height=\\\"425\\\" rows=\\\"1\\\" nav=\\\"sides\\\" style=\\\"grid\\\" columns=\\\"3\\\" effect=\\\"slide\\\" auto=\\\"false\\\" interval=\\\"4\\\" status=\\\"active\\\" sortBy=\\\"pd\\\" maxResults=\\\"25\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d37e474\",\"elType\":\"widget\",\"settings\":{\"title\":\"Listed this Week\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1cd1d1a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[optima_express_gallery_slider id=\\\"813462\\\" height=\\\"425\\\" rows=\\\"1\\\" nav=\\\"sides\\\" style=\\\"grid\\\" columns=\\\"3\\\" effect=\\\"slide\\\" auto=\\\"false\\\" interval=\\\"4\\\" status=\\\"active\\\" sortBy=\\\"ds\\\" maxResults=\\\"25\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(8511,1360,'_elementor_controls_usage','a:7:{s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:38:\"wp-widget-ihomefinderquicksearchwidget\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:4;s:16:\"content_position\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:5:{s:6:\"layout\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:15:\"column_position\";i:1;s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}}}s:25:\"houzez_elementor_icon_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"content_section\";a:1:{s:10:\"icon_boxes\";i:1;}s:24:\"content_section_settings\";a:1:{s:9:\"padding_a\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_iconbox_style\";a:3:{s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}}'),(9324,1599,'fave_adv_search_pos','under_menu'),(9325,1599,'fave_page_title','show'),(9326,1599,'fave_page_breadcrumb','show'),(8534,1372,'_wp_attached_file','2020/10/2020-Educational-Calendar-3.xlsx'),(8517,1363,'_wp_attached_file','2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png'),(8518,1363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1600;s:4:\"file\";s:48:\"2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1229;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:750;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:40:\"05F1BB70-445B-4044-AACC-8382CE3C590E.png\";s:5:\"width\";i:496;s:6:\"height\";i:397;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8519,1363,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34567632;s:10:\"size_after\";i:34567632;s:4:\"time\";d:55.18999999999999772626324556767940521240234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:6.44000000000000039079850466805510222911834716796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:2.95999999999999996447286321199499070644378662109375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:5.30999999999999960920149533194489777088165283203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:3.029999999999999804600747665972448885440826416015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:4.11000000000000031974423109204508364200592041015625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:3.29000000000000003552713678800500929355621337890625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:3.470000000000000195399252334027551114559173583984375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:7.660000000000000142108547152020037174224853515625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:5.1699999999999999289457264239899814128875732421875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:5.13999999999999968025576890795491635799407958984375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:3.279999999999999804600747665972448885440826416015625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2880636;s:10:\"size_after\";i:2880636;s:4:\"time\";d:5.3300000000000000710542735760100185871124267578125;}}}'),(8520,1364,'_wp_attached_file','2020/10/98A5F20E-DCBA-4C78-A8D1-F08E48673BF2-scaled.jpeg'),(8521,1364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2020/10/98A5F20E-DCBA-4C78-A8D1-F08E48673BF2-scaled.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 11\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603209509\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:41:\"98A5F20E-DCBA-4C78-A8D1-F08E48673BF2.jpeg\";}'),(8526,1367,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.9855557884984931238392391605884768068790435791015625;s:5:\"bytes\";i:47574;s:11:\"size_before\";i:4827124;s:10:\"size_after\";i:4779550;s:4:\"time\";d:1.5;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:47574;s:11:\"size_before\";i:525529;s:10:\"size_after\";i:477955;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:477955;s:10:\"size_after\";i:477955;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:477955;s:10:\"size_after\";i:477955;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:477955;s:10:\"size_after\";i:477955;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:477955;s:10:\"size_after\";i:477955;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:477955;s:10:\"size_after\";i:477955;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:477955;s:10:\"size_after\";i:477955;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:477955;s:10:\"size_after\";i:477955;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:477955;s:10:\"size_after\";i:477955;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:477955;s:10:\"size_after\";i:477955;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(8527,1368,'_wp_attached_file','2020/10/jerrpic-scaled.jpg'),(8528,1368,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:26:\"2020/10/jerrpic-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:11:\"jerrpic.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:11:\"jerrpic.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:11:\"jerrpic.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:11:\"jerrpic.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:11:\"jerrpic.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:11:\"jerrpic.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:11:\"jerrpic.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:11:\"jerrpic.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:11:\"jerrpic.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:11:\"jerrpic.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:11:\"jerrpic.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:11:\"jerrpic.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:11:\"jerrpic.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 11\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603400461\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"jerrpic.jpg\";}'),(8529,1368,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.438799604936693399270808413348277099430561065673828125;s:5:\"bytes\";i:114234;s:11:\"size_before\";i:26033296;s:10:\"size_after\";i:25919062;s:4:\"time\";d:13.0999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:114234;s:11:\"size_before\";i:2108008;s:10:\"size_after\";i:1993774;s:4:\"time\";d:2.04000000000000003552713678800500929355621337890625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:1.479999999999999982236431605997495353221893310546875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:0.58999999999999996891375531049561686813831329345703125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:1.3200000000000000621724893790087662637233734130859375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:0.70999999999999996447286321199499070644378662109375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:1.12000000000000010658141036401502788066864013671875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:1.4699999999999999733546474089962430298328399658203125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:1.0100000000000000088817841970012523233890533447265625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:0.6999999999999999555910790149937383830547332763671875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1993774;s:10:\"size_after\";i:1993774;s:4:\"time\";d:0.7399999999999999911182158029987476766109466552734375;}}}'),(8824,1465,'_wp_attached_file','2020/12/pic.jpg'),(11199,1983,'_wp_attached_file','2021/07/Joshua-Pic2-scaled-e1627855042728.jpg'),(11200,1983,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:45:\"2021/07/Joshua-Pic2-scaled-e1627855042728.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Joshua-Pic2-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:25:\"Joshua-Pic2-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:23:\"Joshua-Pic2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Joshua-Pic2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Joshua-Pic2-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:25:\"Joshua-Pic2-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:24:\"Joshua-Pic2-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"Joshua-Pic2-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"Joshua-Pic2-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"Joshua-Pic2-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"Joshua-Pic2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"Joshua-Pic2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Joshua-Pic2-496x496.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1527686804\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"79\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"Joshua-Pic2.jpg\";}'),(8578,1392,'_wp_attached_file','2020/11/Alan_Aylesworth.jpg'),(8579,1392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2020/11/Alan_Aylesworth.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Alan_Aylesworth.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:19:\"Alan_Aylesworth.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:19:\"Alan_Aylesworth.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:19:\"Alan_Aylesworth.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"Alan_Aylesworth.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:19:\"Alan_Aylesworth.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8580,1392,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.88142976106591508500542886395123787224292755126953125;s:5:\"bytes\";i:1376;s:11:\"size_before\";i:156110;s:10:\"size_after\";i:154734;s:4:\"time\";d:0.1399999999999999855671006798729649744927883148193359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1376;s:11:\"size_before\";i:27165;s:10:\"size_after\";i:25789;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25789;s:10:\"size_after\";i:25789;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25789;s:10:\"size_after\";i:25789;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25789;s:10:\"size_after\";i:25789;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25789;s:10:\"size_after\";i:25789;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25789;s:10:\"size_after\";i:25789;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(8590,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8591,1393,'_edit_lock','1605058447:1'),(8592,1393,'_edit_last','1'),(8597,1393,'fave_agent_license','NC 293117'),(8594,1393,'fave_agent_email','4jennacook@gmail.com'),(8595,1393,'fave_agent_visible','0'),(8596,1393,'fave_agent_position','Licensed Agent'),(8598,1393,'fave_agent_mobile','704-960-5591'),(8599,1393,'slide_template',''),(8600,1393,'rs_page_bg_color',''),(8604,1393,'fave_agent_company','Lantern Realty and Development'),(8603,1395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1801;s:6:\"height\";i:2560;s:4:\"file\";s:22:\"2020/11/Jenna_Cook.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.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:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1092;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:1081;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:1441;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:422;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:14:\"Jenna_Cook.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8605,1393,'fave_agent_website','https://lantern-realty.com/'),(8606,1393,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(8607,1397,'_wp_attached_file','2020/11/Jenna_Cook-1.jpg'),(8608,1397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:486;s:4:\"file\";s:24:\"2020/11/Jenna_Cook-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"Jenna_Cook-1.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Jenna_Cook-1.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:16:\"Jenna_Cook-1.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:16:\"Jenna_Cook-1.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:16:\"Jenna_Cook-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:16:\"Jenna_Cook-1.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8609,1397,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.147114390617759216439708325196988880634307861328125;s:5:\"bytes\";i:4827;s:11:\"size_before\";i:420795;s:10:\"size_after\";i:415968;s:4:\"time\";d:0.770000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4827;s:11:\"size_before\";i:74155;s:10:\"size_after\";i:69328;s:4:\"time\";d:0.57999999999999996003197111349436454474925994873046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69328;s:10:\"size_after\";i:69328;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69328;s:10:\"size_after\";i:69328;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69328;s:10:\"size_after\";i:69328;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69328;s:10:\"size_after\";i:69328;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69328;s:10:\"size_after\";i:69328;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(8610,1393,'_thumbnail_id','1397'),(8611,1393,'fave_agent_logo','1294'),(8612,1393,'fave_agent_agencies','45'),(8613,1393,'_primary_term_agent_category','10'),(8614,1398,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8615,1398,'_edit_lock','1605058651:1'),(8616,1398,'_edit_last','1'),(8617,1398,'fave_agent_company','Lantern Realty and Development'),(8618,1398,'fave_agent_email','lizphallman@gmail.com'),(8619,1398,'fave_agent_visible','0'),(8620,1398,'fave_agent_position','Licensed Agent'),(8621,1398,'fave_agent_license','NC 281082'),(8622,1398,'fave_agent_mobile','980-621-9575'),(8623,1398,'fave_agent_website','https://lantern-realty.com/'),(8624,1398,'slide_template',''),(8625,1398,'rs_page_bg_color',''),(8626,1400,'_wp_attached_file','2020/11/Liz_Hallman.jpeg'),(8627,1400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:516;s:4:\"file\";s:24:\"2020/11/Liz_Hallman.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"Liz_Hallman.jpeg\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Liz_Hallman.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:16:\"Liz_Hallman.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:16:\"Liz_Hallman.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:16:\"Liz_Hallman.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:16:\"Liz_Hallman.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8628,1400,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.5858098987346396224751288173138163983821868896484375;s:5:\"bytes\";i:9551;s:11:\"size_before\";i:602279;s:10:\"size_after\";i:592728;s:4:\"time\";d:0.370000000000000051070259132757200859487056732177734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:9551;s:11:\"size_before\";i:108339;s:10:\"size_after\";i:98788;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:98788;s:10:\"size_after\";i:98788;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:98788;s:10:\"size_after\";i:98788;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:98788;s:10:\"size_after\";i:98788;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:98788;s:10:\"size_after\";i:98788;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:98788;s:10:\"size_after\";i:98788;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(8629,1398,'_thumbnail_id','1400'),(8630,1398,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(8631,1398,'fave_agent_logo','1294'),(8632,1398,'fave_agent_agencies','45'),(8633,1398,'_primary_term_agent_category','7'),(8634,1402,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8635,1402,'_edit_lock','1613657881:1'),(8636,1402,'_edit_last','1'),(8637,1402,'fave_agent_company','Lantern Realty and Development'),(8638,1402,'fave_agent_email','teamlambert.sellsnc@gmail.com'),(8639,1402,'fave_agent_visible','0'),(8640,1402,'fave_agent_position','Licensed Agent'),(8641,1402,'fave_agent_license','NC 25766'),(8642,1402,'fave_agent_mobile','704-400-0641'),(8643,1402,'slide_template',''),(8644,1402,'rs_page_bg_color',''),(8645,1404,'_wp_attached_file','2020/11/Amanda_Lambert.jpg'),(8646,1404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:495;s:4:\"file\";s:26:\"2020/11/Amanda_Lambert.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Amanda_Lambert.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Amanda_Lambert.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:18:\"Amanda_Lambert.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:18:\"Amanda_Lambert.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"Amanda_Lambert.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:18:\"Amanda_Lambert.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8647,1404,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.32334058331804715891166779329068958759307861328125;s:5:\"bytes\";i:5555;s:11:\"size_before\";i:419771;s:10:\"size_after\";i:414216;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:5555;s:11:\"size_before\";i:74591;s:10:\"size_after\";i:69036;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69036;s:10:\"size_after\";i:69036;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69036;s:10:\"size_after\";i:69036;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69036;s:10:\"size_after\";i:69036;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69036;s:10:\"size_after\";i:69036;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69036;s:10:\"size_after\";i:69036;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(8648,1402,'_thumbnail_id','1404'),(8649,1402,'fave_agent_website','https://lantern-realty.com/'),(8650,1402,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9257,1402,'fave_agent_logo','1294'),(8652,1402,'fave_agent_agencies','45'),(8653,1402,'_primary_term_agent_category','7'),(8654,1405,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8655,1405,'_edit_lock','1656033492:1'),(8656,1405,'_edit_last','1'),(8657,1405,'fave_agent_company','Lantern Realty and Development'),(8658,1405,'fave_agent_email','jerry.teamlambert@gmail.com'),(8659,1405,'fave_agent_visible','0'),(8660,1405,'fave_agent_position','Licensed Agent'),(8661,1405,'fave_agent_license','NC 321038'),(8662,1405,'fave_agent_mobile','704-791-0429'),(8664,1405,'rs_page_bg_color',''),(8665,1407,'_wp_attached_file','2020/11/Jerry_Lambert.jpg'),(8666,1407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:491;s:4:\"file\";s:25:\"2020/11/Jerry_Lambert.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Jerry_Lambert.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Jerry_Lambert.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:17:\"Jerry_Lambert.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:17:\"Jerry_Lambert.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:17:\"Jerry_Lambert.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"Jerry_Lambert.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:487;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1605038348\";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\";}}'),(8667,1407,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.46098980166426795079814837663434445858001708984375;s:5:\"bytes\";i:32085;s:11:\"size_before\";i:719235;s:10:\"size_after\";i:687150;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.879999999999999005240169935859739780426025390625;s:5:\"bytes\";i:32085;s:11:\"size_before\";i:146610;s:10:\"size_after\";i:114525;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:114525;s:10:\"size_after\";i:114525;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:114525;s:10:\"size_after\";i:114525;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:114525;s:10:\"size_after\";i:114525;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:114525;s:10:\"size_after\";i:114525;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:114525;s:10:\"size_after\";i:114525;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(8668,1405,'_thumbnail_id','1407'),(8669,1405,'fave_agent_website','https://lantern-realty.com/'),(8670,1405,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9258,1405,'fave_agent_logo','1294'),(8672,1405,'fave_agent_agencies','45'),(8673,1405,'_primary_term_agent_category','7'),(8674,1408,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8675,1408,'_edit_lock','1605059483:1'),(8676,1408,'_edit_last','1'),(8677,1408,'fave_agent_company','Lantern Realty and Development'),(8678,1408,'fave_agent_email','sherriargabright@gmail.com'),(8679,1408,'fave_agent_visible','0'),(8680,1408,'fave_agent_position','Licensed Agent'),(8681,1408,'fave_agent_license','NC 220340'),(8682,1408,'fave_agent_mobile','704-202-0806'),(8683,1408,'fave_agent_website','https://lantern-realty.com/'),(8684,1408,'slide_template',''),(8685,1408,'rs_page_bg_color',''),(8686,1410,'_wp_attached_file','2020/11/Sherri_Wiles_Argabright.jpg'),(8687,1410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:624;s:4:\"file\";s:35:\"2020/11/Sherri_Wiles_Argabright.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Sherri_Wiles_Argabright.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Sherri_Wiles_Argabright.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"Sherri_Wiles_Argabright.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:27:\"Sherri_Wiles_Argabright.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"Sherri_Wiles_Argabright.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:27:\"Sherri_Wiles_Argabright.jpg\";s:5:\"width\";i:481;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"Sherri_Wiles_Argabright.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Sherri_Wiles_Argabright.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:619;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8688,1410,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.0204881764514792674702903241268359124660491943359375;s:5:\"bytes\";i:6377;s:11:\"size_before\";i:624897;s:10:\"size_after\";i:618520;s:4:\"time\";d:0.44000000000000005773159728050814010202884674072265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:6377;s:11:\"size_before\";i:83692;s:10:\"size_after\";i:77315;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77315;s:10:\"size_after\";i:77315;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77315;s:10:\"size_after\";i:77315;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77315;s:10:\"size_after\";i:77315;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77315;s:10:\"size_after\";i:77315;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77315;s:10:\"size_after\";i:77315;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77315;s:10:\"size_after\";i:77315;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77315;s:10:\"size_after\";i:77315;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(8689,1408,'_thumbnail_id','1410'),(8690,1408,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(8691,1408,'fave_agent_logo','1294'),(8692,1408,'fave_agent_agencies','45'),(8693,1408,'_primary_term_agent_category','10'),(9330,1599,'slide_template','default'),(9331,1599,'rs_page_bg_color','#ffffff'),(9332,1599,'passster_activate_protection',NULL),(9329,1599,'fave_main_menu_trans','no'),(8702,1412,'_wp_page_template','template/template-onepage.php'),(8703,1412,'_elementor_edit_mode','builder'),(8704,1412,'_elementor_template_type','wp-page'),(8705,1412,'_elementor_version','3.0.11'),(8706,1412,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8707,1412,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Mooresville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 980-9379\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7049809379\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"LanternRealtyMooresville@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:LanternRealtyMooresville@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8708,1309,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(9333,1599,'passster_protection_type','password'),(9334,1599,'_wpb_vc_js_status','false'),(9335,1599,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(8710,760,'fave_agency_visible','0'),(8713,1415,'_wp_attached_file','2020/11/LRD-Direct-Deposit.pdf'),(8714,1416,'_wp_attached_file','2020/11/LRD-Draft-Authorization-Form.docx'),(8715,1417,'_wp_attached_file','2020/11/LRD-Mentoring-Program-Guidelines-2020.pdf'),(8716,1418,'_wp_attached_file','2020/11/LRD-Policy-Updated-10_14_2020.pdf'),(8717,1419,'_wp_attached_file','2020/11/LRD-Safety-Plan.pdf'),(8718,1420,'_wp_attached_file','2020/11/Measurement-Booklet-NCREC-v1.pdf'),(8719,1413,'wpdocs_items_by_user','a:1:{i:1;a:7:{i:0;s:4:\"1414\";i:1;s:4:\"1415\";i:2;s:4:\"1416\";i:3;s:4:\"1417\";i:4;s:4:\"1418\";i:5;s:4:\"1419\";i:6;s:4:\"1420\";}}'),(8720,1413,'wpdocs_items','a:7:{i:0;s:4:\"1414\";i:1;s:4:\"1415\";i:2;s:4:\"1416\";i:3;s:4:\"1417\";i:4;s:4:\"1418\";i:5;s:4:\"1419\";i:6;s:4:\"1420\";}'),(8721,1425,'_wp_attached_file','2020/11/image.png'),(8722,1425,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1366;s:6:\"height\";i:768;s:4:\"file\";s:17:\"2020/11/image.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:9:\"image.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:9:\"image.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:9:\"image.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:9:\"image.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:9:\"image.png\";s:5:\"width\";i:1170;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:9:\"image.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:9:\"image.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:9:\"image.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:9:\"image.png\";s:5:\"width\";i:1067;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:9:\"image.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:9:\"image.png\";s:5:\"width\";i:496;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8723,1425,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.327381836911866397343828793964348733425140380859375;s:5:\"bytes\";i:59561;s:11:\"size_before\";i:1790026;s:10:\"size_after\";i:1730465;s:4:\"time\";d:11.4199999999999999289457264239899814128875732421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:59561;s:11:\"size_before\";i:216876;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.810000000000000053290705182007513940334320068359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.729999999999999982236431605997495353221893310546875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:1.0700000000000000621724893790087662637233734130859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:1.5;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.979999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:1.520000000000000017763568394002504646778106689453125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:1.37000000000000010658141036401502788066864013671875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:1.5300000000000000266453525910037569701671600341796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.58999999999999996891375531049561686813831329345703125;}}}'),(8732,1431,'_wp_attached_file','2020/11/image-1.png'),(8733,1431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1366;s:6:\"height\";i:768;s:4:\"file\";s:19:\"2020/11/image-1.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:11:\"image-1.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:11:\"image-1.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:11:\"image-1.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:11:\"image-1.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:11:\"image-1.png\";s:5:\"width\";i:1170;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:11:\"image-1.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:11:\"image-1.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:11:\"image-1.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:11:\"image-1.png\";s:5:\"width\";i:1067;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:11:\"image-1.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:11:\"image-1.png\";s:5:\"width\";i:496;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8734,1431,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.327381836911866397343828793964348733425140380859375;s:5:\"bytes\";i:59561;s:11:\"size_before\";i:1790026;s:10:\"size_after\";i:1730465;s:4:\"time\";d:10.010000000000001563194018672220408916473388671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:59561;s:11:\"size_before\";i:216876;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.7800000000000000266453525910037569701671600341796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:1.4699999999999999733546474089962430298328399658203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.939999999999999946709294817992486059665679931640625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.7399999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:1.29000000000000003552713678800500929355621337890625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:1.5800000000000000710542735760100185871124267578125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.729999999999999982236431605997495353221893310546875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157315;s:10:\"size_after\";i:157315;s:4:\"time\";d:0.57999999999999996003197111349436454474925994873046875;}}}'),(8739,1433,'_wp_attached_file','2020/11/RE-picture.jpg'),(8740,1433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:959;s:4:\"file\";s:22:\"2020/11/RE-picture.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"RE-picture.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:14:\"RE-picture.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:14:\"RE-picture.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:14:\"RE-picture.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:14:\"RE-picture.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:14:\"RE-picture.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:14:\"RE-picture.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:14:\"RE-picture.jpg\";s:5:\"width\";i:601;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:14:\"RE-picture.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:14:\"RE-picture.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:495;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:{}}}'),(8741,1433,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.0093541306838871747519892352329407003708183765411376953125;s:5:\"bytes\";i:56;s:11:\"size_before\";i:598666;s:10:\"size_after\";i:598610;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.0899999999999999966693309261245303787291049957275390625;s:5:\"bytes\";i:56;s:11:\"size_before\";i:59917;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(8742,1434,'_wp_attached_file','2020/11/RE-picture-1.jpg'),(8743,1434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:959;s:4:\"file\";s:24:\"2020/11/RE-picture-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"RE-picture-1.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:16:\"RE-picture-1.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:16:\"RE-picture-1.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:16:\"RE-picture-1.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:16:\"RE-picture-1.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:16:\"RE-picture-1.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:16:\"RE-picture-1.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:16:\"RE-picture-1.jpg\";s:5:\"width\";i:601;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:16:\"RE-picture-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:16:\"RE-picture-1.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:495;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:{}}}'),(8744,1434,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.0093541306838871747519892352329407003708183765411376953125;s:5:\"bytes\";i:56;s:11:\"size_before\";i:598666;s:10:\"size_after\";i:598610;s:4:\"time\";d:1.0300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.0899999999999999966693309261245303787291049957275390625;s:5:\"bytes\";i:56;s:11:\"size_before\";i:59917;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59861;s:10:\"size_after\";i:59861;s:4:\"time\";d:0.25;}}}'),(8810,1460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:955;s:4:\"file\";s:26:\"2020/12/IMG_7791-Small.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.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:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:917;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:503;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1572658616\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8763,1442,'_edit_lock','1606785885:1'),(8809,1460,'_wp_attached_file','2020/12/IMG_7791-Small.jpg'),(8766,1449,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8767,1449,'_edit_lock','1606786700:1'),(8768,1449,'_edit_last','1'),(8769,1449,'fave_agent_company','Lantern Realty and Development'),(8770,1449,'fave_agent_email','csloansellshomes@gmail.com'),(8771,1449,'fave_agent_visible','0'),(8772,1449,'fave_agent_position','Licensed Agent'),(8773,1449,'fave_agent_license','NC 314926'),(8774,1449,'fave_agent_mobile','704-754-7104'),(8775,1449,'slide_template',''),(8776,1449,'rs_page_bg_color',''),(8777,1449,'fave_agent_website','https://lantern-realty.com/'),(8778,1449,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(8786,1449,'fave_agent_logo','22'),(8780,1449,'_primary_term_agent_category','7'),(8781,1451,'_wp_attached_file','2020/12/Courtney_Sloan_Holshouser.jpg'),(8782,1451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:499;s:4:\"file\";s:37:\"2020/12/Courtney_Sloan_Holshouser.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Courtney_Sloan_Holshouser.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:29:\"Courtney_Sloan_Holshouser.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:29:\"Courtney_Sloan_Holshouser.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:29:\"Courtney_Sloan_Holshouser.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:29:\"Courtney_Sloan_Holshouser.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"Courtney_Sloan_Holshouser.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8783,1451,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.1836358838765959067274025073857046663761138916015625;s:5:\"bytes\";i:4396;s:11:\"size_before\";i:371398;s:10:\"size_after\";i:367002;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4396;s:11:\"size_before\";i:65563;s:10:\"size_after\";i:61167;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61167;s:10:\"size_after\";i:61167;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61167;s:10:\"size_after\";i:61167;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61167;s:10:\"size_after\";i:61167;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61167;s:10:\"size_after\";i:61167;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61167;s:10:\"size_after\";i:61167;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(8784,1449,'_thumbnail_id','1451'),(8787,1449,'fave_agent_agencies','757'),(9064,1545,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8884,1504,'_wp_attached_file','2021/01/Gretchen-B-Photography_Janice_027-Square-for-Web.jpg'),(8885,1504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:60:\"2021/01/Gretchen-B-Photography_Janice_027-Square-for-Web.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"Gretchen-B-Photography_Janice_027-Square-for-Web.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:52:\"Gretchen-B-Photography_Janice_027-Square-for-Web.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:52:\"Gretchen-B-Photography_Janice_027-Square-for-Web.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:52:\"Gretchen-B-Photography_Janice_027-Square-for-Web.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:52:\"Gretchen-B-Photography_Janice_027-Square-for-Web.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:52:\"Gretchen-B-Photography_Janice_027-Square-for-Web.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:52:\"Gretchen-B-Photography_Janice_027-Square-for-Web.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:52:\"Gretchen-B-Photography_Janice_027-Square-for-Web.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:52:\"Gretchen-B-Photography_Janice_027-Square-for-Web.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:52:\"Gretchen-B-Photography_Janice_027-Square-for-Web.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1500031007\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8886,1504,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.37526809445849806934347725473344326019287109375;s:5:\"bytes\";i:34066;s:11:\"size_before\";i:1434196;s:10:\"size_after\";i:1400130;s:4:\"time\";d:1.3600000000000000976996261670137755572795867919921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:34066;s:11:\"size_before\";i:174079;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(9059,1543,'_wp_attached_file','2021/02/LRD-Roster_020521.xlsx'),(8890,1507,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8891,1507,'_edit_lock','1611795149:1'),(8892,1507,'_edit_last','1'),(8893,1507,'fave_agent_company','Lantern Realty and Development'),(8894,1507,'fave_agent_email','PaigeWiserRealtor@gmail.com'),(8895,1507,'fave_agent_visible','0'),(8896,1507,'fave_agent_position','Licensed Agent'),(8897,1507,'fave_agent_license','309172'),(8898,1507,'fave_agent_mobile','704-904-1903'),(8899,1507,'fave_agent_website','https://lantern-realty.com/'),(8900,1507,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(8901,1507,'slide_template',''),(8902,1507,'rs_page_bg_color',''),(8910,1507,'fave_agent_logo','22'),(8904,1507,'fave_agent_agencies','757'),(8905,1507,'_primary_term_agent_category','4'),(8906,1509,'_wp_attached_file','2021/01/Paige_Wiser.jpg'),(8907,1509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:433;s:4:\"file\";s:23:\"2021/01/Paige_Wiser.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"Paige_Wiser.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"Paige_Wiser.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:15:\"Paige_Wiser.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8908,1509,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.593346020080057545698082321905530989170074462890625;s:5:\"bytes\";i:5928;s:11:\"size_before\";i:228585;s:10:\"size_after\";i:222657;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5928;s:11:\"size_before\";i:80147;s:10:\"size_after\";i:74219;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:74219;s:10:\"size_after\";i:74219;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:74219;s:10:\"size_after\";i:74219;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(8909,1507,'_thumbnail_id','1509'),(8911,1510,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8912,1510,'_edit_lock','1611795137:1'),(8913,1510,'_edit_last','1'),(8918,1510,'fave_agent_license','321999'),(8915,1510,'fave_agent_email','taylormcclure23@gmail.com'),(8916,1510,'fave_agent_visible','0'),(8917,1510,'fave_agent_position','Licensed Agent'),(8919,1510,'fave_agent_mobile','980-253-0223'),(8920,1510,'slide_template',''),(8921,1510,'rs_page_bg_color',''),(8922,1512,'_wp_attached_file','2021/01/Taylor_McClure.jpeg'),(8923,1512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:429;s:4:\"file\";s:27:\"2021/01/Taylor_McClure.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Taylor_McClure.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Taylor_McClure.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"Taylor_McClure.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8924,1512,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.331464622015397392118529751314781606197357177734375;s:5:\"bytes\";i:2986;s:11:\"size_before\";i:128074;s:10:\"size_after\";i:125088;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2986;s:11:\"size_before\";i:44682;s:10:\"size_after\";i:41696;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:41696;s:10:\"size_after\";i:41696;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:41696;s:10:\"size_after\";i:41696;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(8925,1510,'_thumbnail_id','1512'),(8926,1510,'fave_agent_company','Lantern Realty and Development'),(8927,1510,'fave_agent_website','https://lantern-realty.com/'),(8928,1510,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(8929,1510,'fave_agent_logo','22'),(8930,1510,'fave_agent_agencies','45'),(8931,1510,'_primary_term_agent_category','4'),(9058,1542,'_wp_attached_file','2021/02/2021-Educational-Calendar.xlsx'),(8934,1514,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8935,1514,'_edit_lock','1611795116:1'),(8936,1514,'_edit_last','1'),(8937,1514,'fave_agent_company','Lantern Realty and Development'),(8938,1514,'fave_agent_email','Mandee704@hotmail.com'),(8939,1514,'fave_agent_visible','0'),(8940,1514,'fave_agent_position','Licensed Agent'),(8941,1514,'fave_agent_license','308723'),(8942,1514,'fave_agent_mobile','704-819-7111'),(8943,1514,'fave_agent_website','https://lantern-realty.com/'),(8944,1514,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(8945,1514,'slide_template',''),(8946,1514,'rs_page_bg_color',''),(8947,1516,'_wp_attached_file','2021/01/Maranda_Allen.jpg'),(8948,1516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:481;s:6:\"height\";i:506;s:4:\"file\";s:25:\"2021/01/Maranda_Allen.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Maranda_Allen.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Maranda_Allen.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:17:\"Maranda_Allen.jpg\";s:5:\"width\";i:481;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:17:\"Maranda_Allen.jpg\";s:5:\"width\";i:481;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:17:\"Maranda_Allen.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8949,1516,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.35302200292212138066361148958094418048858642578125;s:5:\"bytes\";i:3732;s:11:\"size_before\";i:275827;s:10:\"size_after\";i:272095;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3732;s:11:\"size_before\";i:58151;s:10:\"size_after\";i:54419;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54419;s:10:\"size_after\";i:54419;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54419;s:10:\"size_after\";i:54419;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54419;s:10:\"size_after\";i:54419;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54419;s:10:\"size_after\";i:54419;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(8950,1514,'_thumbnail_id','1516'),(8951,1514,'fave_agent_logo','22'),(8952,1514,'fave_agent_agencies','758'),(8953,1514,'_primary_term_agent_category','12'),(8954,1517,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8955,1517,'_edit_lock','1637541295:1'),(8956,1517,'_edit_last','1'),(8957,1517,'fave_agent_company','Lantern Realty and Development'),(8958,1517,'fave_agent_email','NC.Realtor.Renee@gmail.com'),(8959,1517,'fave_agent_visible','0'),(8960,1517,'fave_agent_position','Licensed Agent'),(8961,1517,'fave_agent_license','316110'),(8962,1517,'fave_agent_mobile','(704) 925-7938'),(8963,1517,'fave_agent_website','https://lantern-realty.com/'),(8964,1517,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(8966,1517,'rs_page_bg_color',''),(8967,1519,'_wp_attached_file','2021/01/Renee_Chambers.png'),(8968,1519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:632;s:6:\"height\";i:677;s:4:\"file\";s:26:\"2021/01/Renee_Chambers.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Renee_Chambers.png\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Renee_Chambers.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:18:\"Renee_Chambers.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:18:\"Renee_Chambers.png\";s:5:\"width\";i:632;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:18:\"Renee_Chambers.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:18:\"Renee_Chambers.png\";s:5:\"width\";i:560;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"Renee_Chambers.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:18:\"Renee_Chambers.png\";s:5:\"width\";i:496;s:6:\"height\";i:531;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8969,1519,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5960296;s:10:\"size_after\";i:5960296;s:4:\"time\";d:5.4900000000000002131628207280300557613372802734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:745037;s:10:\"size_after\";i:745037;s:4:\"time\";d:0.5500000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:745037;s:10:\"size_after\";i:745037;s:4:\"time\";d:0.61999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:745037;s:10:\"size_after\";i:745037;s:4:\"time\";d:0.65000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:745037;s:10:\"size_after\";i:745037;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:745037;s:10:\"size_after\";i:745037;s:4:\"time\";d:0.7800000000000000266453525910037569701671600341796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:745037;s:10:\"size_after\";i:745037;s:4:\"time\";d:1.6100000000000000976996261670137755572795867919921875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:745037;s:10:\"size_after\";i:745037;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:745037;s:10:\"size_after\";i:745037;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}}}'),(8970,1517,'_thumbnail_id','1519'),(8971,1517,'fave_agent_logo','22'),(8972,1517,'fave_agent_agencies','45'),(8973,1517,'_primary_term_agent_category','7'),(8974,1520,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8975,1520,'_edit_lock','1613677078:1'),(8976,1520,'_edit_last','1'),(8977,1520,'fave_agent_company','Lantern Realty and Development'),(8978,1520,'fave_agent_email','brenda@bingham.cc'),(8979,1520,'fave_agent_visible','0'),(8980,1520,'fave_agent_position','Licensed Agent'),(8981,1520,'fave_agent_license','302334'),(8982,1520,'fave_agent_mobile','704-787-2539'),(8983,1520,'fave_agent_website','https://lantern-realty.com/'),(8984,1520,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(8985,1520,'slide_template',''),(8986,1520,'rs_page_bg_color',''),(8987,1522,'_wp_attached_file','2021/01/Brenda_Sue_Bingham.jpeg'),(8988,1522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:417;s:6:\"height\";i:365;s:4:\"file\";s:31:\"2021/01/Brenda_Sue_Bingham.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Brenda_Sue_Bingham.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Brenda_Sue_Bingham.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Brenda_Sue_Bingham.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(8989,1522,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.974424249600378988844795458135195076465606689453125;s:5:\"bytes\";i:2001;s:11:\"size_before\";i:101346;s:10:\"size_after\";i:99345;s:4:\"time\";d:0.12000000000000000943689570931383059360086917877197265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2001;s:11:\"size_before\";i:35116;s:10:\"size_after\";i:33115;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33115;s:10:\"size_after\";i:33115;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33115;s:10:\"size_after\";i:33115;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(8990,1520,'_thumbnail_id','1522'),(9265,1520,'fave_agent_logo','22'),(8992,1520,'fave_agent_agencies','759'),(8993,1520,'_primary_term_agent_category','13'),(8994,1523,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8995,1523,'_edit_lock','1611881915:1'),(8996,1523,'_edit_last','1'),(8997,1523,'fave_agent_company','Lantern Realty and Development'),(8998,1523,'fave_agent_email','janiceacannon@gmail.com'),(8999,1523,'fave_agent_visible','0'),(9000,1523,'fave_agent_position','Licensed Agent'),(9001,1523,'fave_agent_mobile','205-514-5124'),(9002,1523,'fave_agent_website','https://lantern-realty.com/'),(9003,1523,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9032,1523,'fave_agent_logo','22'),(9005,1523,'slide_template',''),(9006,1523,'rs_page_bg_color',''),(9007,1523,'_thumbnail_id','1530'),(9009,1523,'fave_agent_agencies','758'),(9010,1523,'_primary_term_agent_category','7'),(9033,1532,'_wp_attached_file','2021/01/head-shot.jpg'),(9011,1526,'_wp_attached_file','2021/01/Gretchen-B-Photography_Janice_027-Square-for-Web-1.jpg'),(9012,1526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:62:\"2021/01/Gretchen-B-Photography_Janice_027-Square-for-Web-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Gretchen-B-Photography_Janice_027-Square-for-Web-1.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:54:\"Gretchen-B-Photography_Janice_027-Square-for-Web-1.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:54:\"Gretchen-B-Photography_Janice_027-Square-for-Web-1.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:54:\"Gretchen-B-Photography_Janice_027-Square-for-Web-1.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:54:\"Gretchen-B-Photography_Janice_027-Square-for-Web-1.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:54:\"Gretchen-B-Photography_Janice_027-Square-for-Web-1.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:54:\"Gretchen-B-Photography_Janice_027-Square-for-Web-1.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:54:\"Gretchen-B-Photography_Janice_027-Square-for-Web-1.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:54:\"Gretchen-B-Photography_Janice_027-Square-for-Web-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:54:\"Gretchen-B-Photography_Janice_027-Square-for-Web-1.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1500031007\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9013,1526,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.37526809445849806934347725473344326019287109375;s:5:\"bytes\";i:34066;s:11:\"size_before\";i:1434196;s:10:\"size_after\";i:1400130;s:4:\"time\";d:2.420000000000000373034936274052597582340240478515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:34066;s:11:\"size_before\";i:174079;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140013;s:10:\"size_after\";i:140013;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(9026,1523,'fave_agent_license','322349'),(9028,1530,'_wp_attached_file','2021/01/Janice_Cannon.jpg'),(9029,1530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:508;s:4:\"file\";s:25:\"2021/01/Janice_Cannon.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Janice_Cannon.jpg\";s:5:\"width\";i:295;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Janice_Cannon.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:17:\"Janice_Cannon.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:17:\"Janice_Cannon.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:17:\"Janice_Cannon.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"Janice_Cannon.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9030,1530,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.0088373277084772272615964538999833166599273681640625;s:5:\"bytes\";i:2774;s:11:\"size_before\";i:274970;s:10:\"size_after\";i:272196;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2774;s:11:\"size_before\";i:48140;s:10:\"size_after\";i:45366;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45366;s:10:\"size_after\";i:45366;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45366;s:10:\"size_after\";i:45366;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45366;s:10:\"size_after\";i:45366;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45366;s:10:\"size_after\";i:45366;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45366;s:10:\"size_after\";i:45366;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(9034,1532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:887;s:4:\"file\";s:21:\"2021/01/head-shot.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"head-shot.jpg\";s:5:\"width\";i:196;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"head-shot.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:13:\"head-shot.jpg\";s:5:\"width\";i:580;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:13:\"head-shot.jpg\";s:5:\"width\";i:580;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:13:\"head-shot.jpg\";s:5:\"width\";i:580;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:13:\"head-shot.jpg\";s:5:\"width\";i:580;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:13:\"head-shot.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:13:\"head-shot.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:13:\"head-shot.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:759;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1598874206\";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:{}}}'),(9035,1532,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.46411996310262093601295418920926749706268310546875;s:5:\"bytes\";i:49225;s:11:\"size_before\";i:900877;s:10:\"size_after\";i:851652;s:4:\"time\";d:1.25;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:49225;s:11:\"size_before\";i:143853;s:10:\"size_after\";i:94628;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:94628;s:10:\"size_after\";i:94628;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:94628;s:10:\"size_after\";i:94628;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:94628;s:10:\"size_after\";i:94628;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:94628;s:10:\"size_after\";i:94628;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:94628;s:10:\"size_after\";i:94628;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:94628;s:10:\"size_after\";i:94628;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:94628;s:10:\"size_after\";i:94628;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:94628;s:10:\"size_after\";i:94628;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(9036,1533,'_wp_attached_file','2021/01/Headshot-scaled.jpg'),(9037,1533,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2021/01/Headshot-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"Headshot.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:12:\"Headshot.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:12:\"Headshot.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:12:\"Headshot.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:12:\"Headshot.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:12:\"Headshot.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:12:\"Headshot.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:12:\"Headshot.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:12:\"Headshot.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:12:\"Headshot.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:12:\"Headshot.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:12:\"Headshot.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:12:\"Headshot.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1557831652\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"Headshot.jpg\";}'),(9038,1533,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.410045039995631077633930772208259440958499908447265625;s:5:\"bytes\";i:28532;s:11:\"size_before\";i:6958260;s:10:\"size_after\";i:6929728;s:4:\"time\";d:9.6599999999999983657517077517695724964141845703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:28532;s:11:\"size_before\";i:561588;s:10:\"size_after\";i:533056;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:1.2399999999999999911182158029987476766109466552734375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:0.65000000000000002220446049250313080847263336181640625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:0.83999999999999996891375531049561686813831329345703125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:1.9699999999999999733546474089962430298328399658203125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:2.029999999999999804600747665972448885440826416015625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:533056;s:10:\"size_after\";i:533056;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}}}'),(9039,1534,'_wp_attached_file','2021/01/unnamed.jpg'),(9040,1534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:652;s:6:\"height\";i:792;s:4:\"file\";s:19:\"2021/01/unnamed.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:11:\"unnamed.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:11:\"unnamed.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:11:\"unnamed.jpg\";s:5:\"width\";i:652;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:11:\"unnamed.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:11:\"unnamed.jpg\";s:5:\"width\";i:652;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:11:\"unnamed.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:11:\"unnamed.jpg\";s:5:\"width\";i:494;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:11:\"unnamed.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:11:\"unnamed.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:603;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:{}}}'),(9041,1534,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:572229;s:10:\"size_after\";i:572229;s:4:\"time\";d:0.6900000000000001687538997430237941443920135498046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63581;s:10:\"size_after\";i:63581;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63581;s:10:\"size_after\";i:63581;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63581;s:10:\"size_after\";i:63581;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63581;s:10:\"size_after\";i:63581;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63581;s:10:\"size_after\";i:63581;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63581;s:10:\"size_after\";i:63581;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63581;s:10:\"size_after\";i:63581;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63581;s:10:\"size_after\";i:63581;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63581;s:10:\"size_after\";i:63581;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(9042,1535,'_wp_attached_file','2021/01/IMG-2501.jpg'),(9043,1535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2175;s:6:\"height\";i:2219;s:4:\"file\";s:20:\"2021/01/IMG-2501.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"IMG-2501.jpg\";s:5:\"width\";i:294;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:12:\"IMG-2501.jpg\";s:5:\"width\";i:1004;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:12:\"IMG-2501.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:12:\"IMG-2501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:12:\"IMG-2501.jpg\";s:5:\"width\";i:1506;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:12:\"IMG-2501.jpg\";s:5:\"width\";i:2007;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:12:\"IMG-2501.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:12:\"IMG-2501.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:12:\"IMG-2501.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:12:\"IMG-2501.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:12:\"IMG-2501.jpg\";s:5:\"width\";i:588;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:12:\"IMG-2501.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:12:\"IMG-2501.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XS\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1591963322\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:18:\"0.0081967213114754\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9044,1535,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.307003629964049673528592165894224308431148529052734375;s:5:\"bytes\";i:38671;s:11:\"size_before\";i:12596268;s:10:\"size_after\";i:12557597;s:4:\"time\";d:5.20000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.850000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:38671;s:11:\"size_before\";i:1004640;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:1.270000000000000017763568394002504646778106689453125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965969;s:10:\"size_after\";i:965969;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}}}'),(9045,1536,'_wp_attached_file','2021/01/headshot2021-scaled.jpg'),(9046,1536,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:31:\"2021/01/headshot2021-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"headshot2021.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"headshot2021.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"headshot2021.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:16:\"headshot2021.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"headshot2021.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:16:\"headshot2021.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:16:\"headshot2021.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:16:\"headshot2021.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:16:\"headshot2021.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:16:\"headshot2021.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:16:\"headshot2021.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:16:\"headshot2021.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:16:\"headshot2021.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 12 Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611942782\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"headshot2021.jpg\";}'),(9047,1536,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.8506436782188815381999802411883138120174407958984375;s:5:\"bytes\";i:300936;s:11:\"size_before\";i:16261153;s:10:\"size_after\";i:15960217;s:4:\"time\";d:13.309999999999998721023075631819665431976318359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.690000000000001278976924368180334568023681640625;s:5:\"bytes\";i:300936;s:11:\"size_before\";i:1528645;s:10:\"size_after\";i:1227709;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";d:1.1999999999999999555910790149937383830547332763671875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";d:2.729999999999999982236431605997495353221893310546875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";d:0.86999999999999999555910790149937383830547332763671875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";d:0.75;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";d:2.12999999999999989341858963598497211933135986328125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";i:1;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";d:1.1699999999999999289457264239899814128875732421875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";d:0.5100000000000000088817841970012523233890533447265625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1227709;s:10:\"size_after\";i:1227709;s:4:\"time\";d:0.770000000000000017763568394002504646778106689453125;}}}'),(9048,1537,'_wp_attached_file','2021/01/headshot2021-1-scaled.jpg'),(9049,1537,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:33:\"2021/01/headshot2021-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.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:18:\"headshot2021-1.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:18:\"headshot2021-1.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;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:{}}s:14:\"original_image\";s:18:\"headshot2021-1.jpg\";}'),(9050,1537,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.261480124565962146476749694556929171085357666015625;s:5:\"bytes\";i:93596;s:11:\"size_before\";i:35794690;s:10:\"size_after\";i:35701094;s:4:\"time\";d:28.03999999999999914734871708787977695465087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:93596;s:11:\"size_before\";i:2839834;s:10:\"size_after\";i:2746238;s:4:\"time\";d:1.37999999999999989341858963598497211933135986328125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:4.5800000000000000710542735760100185871124267578125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:1.7199999999999999733546474089962430298328399658203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.86999999999999999555910790149937383830547332763671875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:5.0999999999999996447286321199499070644378662109375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:5.1699999999999999289457264239899814128875732421875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:1.7600000000000000088817841970012523233890533447265625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.9899999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:1.45999999999999996447286321199499070644378662109375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:1.3600000000000000976996261670137755572795867919921875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:1.7800000000000000266453525910037569701671600341796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.9899999999999999911182158029987476766109466552734375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.88000000000000000444089209850062616169452667236328125;}}}'),(9051,1538,'_wp_attached_file','2021/01/headshot2021-2-scaled.jpg'),(9052,1538,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:33:\"2021/01/headshot2021-2-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.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:18:\"headshot2021-2.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:18:\"headshot2021-2.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;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:{}}s:14:\"original_image\";s:18:\"headshot2021-2.jpg\";}'),(9053,1538,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.261480124565962146476749694556929171085357666015625;s:5:\"bytes\";i:93596;s:11:\"size_before\";i:35794690;s:10:\"size_after\";i:35701094;s:4:\"time\";d:18.75;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:93596;s:11:\"size_before\";i:2839834;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.91000000000000003108624468950438313186168670654296875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.92000000000000003996802888650563545525074005126953125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.84999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:1.8200000000000000621724893790087662637233734130859375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.84999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.9499999999999999555910790149937383830547332763671875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:1.0800000000000000710542735760100185871124267578125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.9899999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:2.12000000000000010658141036401502788066864013671875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";i:2;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.81999999999999995115018691649311222136020660400390625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:4.589999999999999857891452847979962825775146484375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2746238;s:10:\"size_after\";i:2746238;s:4:\"time\";d:0.84999999999999997779553950749686919152736663818359375;}}}'),(9065,1545,'_edit_lock','1612744229:1'),(9066,1545,'_edit_last','1'),(9067,1545,'fave_agent_company','Lantern Realty and Development'),(9068,1545,'fave_agent_email','Michele.Tichnor@gmail.com'),(9069,1545,'fave_agent_visible','0'),(9070,1545,'fave_agent_position','Licensed Agent'),(9071,1545,'fave_agent_license','321191'),(9072,1545,'fave_agent_mobile','704-699-8824'),(9073,1545,'fave_agent_website','https://lantern-realty.com/'),(9074,1545,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9075,1545,'slide_template',''),(9076,1545,'rs_page_bg_color',''),(9077,1547,'_wp_attached_file','2021/02/Michele_Tichnor.jpg'),(9078,1547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:543;s:4:\"file\";s:27:\"2021/02/Michele_Tichnor.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Michele_Tichnor.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Michele_Tichnor.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:19:\"Michele_Tichnor.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:19:\"Michele_Tichnor.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"Michele_Tichnor.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:19:\"Michele_Tichnor.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9079,1547,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.8468540847546000005507949026650749146938323974609375;s:5:\"bytes\";i:11264;s:11:\"size_before\";i:609902;s:10:\"size_after\";i:598638;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:11264;s:11:\"size_before\";i:111037;s:10:\"size_after\";i:99773;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:99773;s:10:\"size_after\";i:99773;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:99773;s:10:\"size_after\";i:99773;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:99773;s:10:\"size_after\";i:99773;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:99773;s:10:\"size_after\";i:99773;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:99773;s:10:\"size_after\";i:99773;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(9080,1545,'_thumbnail_id','1547'),(9081,1545,'fave_agent_logo','22'),(9082,1545,'fave_agent_agencies','45'),(9083,1545,'_primary_term_agent_category','7'),(9084,1548,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9085,1548,'_edit_lock','1612744441:1'),(9086,1548,'_edit_last','1'),(9087,1548,'fave_agent_company','Lantern Realty and Development'),(9088,1548,'fave_agent_email','dwalterhomes4u@gmail.com'),(9089,1548,'fave_agent_visible','0'),(9090,1548,'fave_agent_position','Licensed Agent'),(9091,1548,'fave_agent_license','318276'),(9092,1548,'fave_agent_mobile','828-638-5353'),(9093,1548,'fave_agent_website','https://lantern-realty.com/'),(9094,1548,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9105,1548,'fave_agent_logo','22'),(9096,1548,'slide_template',''),(9097,1548,'rs_page_bg_color',''),(9098,1550,'_wp_attached_file','2021/02/Dominique_Walter.jpg'),(9099,1550,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:693;s:4:\"file\";s:28:\"2021/02/Dominique_Walter.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Dominique_Walter.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Dominique_Walter.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"Dominique_Walter.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"Dominique_Walter.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"Dominique_Walter.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"Dominique_Walter.jpg\";s:5:\"width\";i:519;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"Dominique_Walter.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"Dominique_Walter.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9101,1548,'fave_agent_agencies','760'),(9102,1548,'_primary_term_agent_category','7'),(9103,1550,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.95279927882466808330974572527338750660419464111328125;s:5:\"bytes\";i:7462;s:11:\"size_before\";i:783166;s:10:\"size_after\";i:775704;s:4:\"time\";d:0.5;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7462;s:11:\"size_before\";i:104425;s:10:\"size_after\";i:96963;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96963;s:10:\"size_after\";i:96963;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96963;s:10:\"size_after\";i:96963;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96963;s:10:\"size_after\";i:96963;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96963;s:10:\"size_after\";i:96963;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96963;s:10:\"size_after\";i:96963;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96963;s:10:\"size_after\";i:96963;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96963;s:10:\"size_after\";i:96963;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(9104,1548,'_thumbnail_id','1550'),(9106,1551,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9107,1551,'_edit_lock','1645149047:1'),(9108,1551,'_edit_last','1'),(9109,1551,'fave_agent_company','Lantern Realty and Development'),(9110,1551,'fave_agent_email','ivanbhenrickson@gmail.com'),(9111,1551,'fave_agent_visible','0'),(9112,1551,'fave_agent_position','Licensed Agent'),(9113,1551,'fave_agent_license','319616'),(9114,1551,'fave_agent_mobile','704-309-7841'),(9115,1551,'fave_agent_website','https://lantern-realty.com/'),(9116,1551,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11966,2274,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9118,1551,'rs_page_bg_color',''),(9119,1553,'_wp_attached_file','2021/02/Ivan_Henrickson.jpg'),(9120,1553,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:661;s:4:\"file\";s:27:\"2021/02/Ivan_Henrickson.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Ivan_Henrickson.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Ivan_Henrickson.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:19:\"Ivan_Henrickson.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:19:\"Ivan_Henrickson.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:19:\"Ivan_Henrickson.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:19:\"Ivan_Henrickson.jpg\";s:5:\"width\";i:545;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"Ivan_Henrickson.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:19:\"Ivan_Henrickson.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9121,1553,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.9933119725408066091887349102762527763843536376953125;s:5:\"bytes\";i:8485;s:11:\"size_before\";i:854213;s:10:\"size_after\";i:845728;s:4:\"time\";d:0.80999999999999994226840271949185989797115325927734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:8485;s:11:\"size_before\";i:114201;s:10:\"size_after\";i:105716;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:105716;s:10:\"size_after\";i:105716;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:105716;s:10:\"size_after\";i:105716;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:105716;s:10:\"size_after\";i:105716;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:105716;s:10:\"size_after\";i:105716;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:105716;s:10:\"size_after\";i:105716;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:105716;s:10:\"size_after\";i:105716;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:105716;s:10:\"size_after\";i:105716;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(11965,1551,'fave_agent_logo','22'),(9123,1551,'fave_agent_agencies','760'),(9124,1551,'_primary_term_agent_category','14'),(9125,1551,'_thumbnail_id','2273'),(9127,1554,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9128,1554,'_edit_lock','1637540541:1'),(9129,1554,'_edit_last','1'),(9130,1554,'fave_agent_company','Lantern Realty and Development'),(9131,1554,'fave_agent_email','abarehomes@gmail.com'),(9132,1554,'fave_agent_visible','0'),(9133,1554,'fave_agent_position','Licensed Agent'),(9134,1554,'fave_agent_mobile','704-783-5434'),(9135,1554,'fave_agent_website','https://lantern-realty.com/'),(9136,1554,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9147,1554,'fave_agent_logo','22'),(9138,1554,'fave_agent_agencies','757'),(9140,1554,'rs_page_bg_color',''),(9142,1554,'_primary_term_agent_category','4'),(9143,1556,'_wp_attached_file','2021/02/Alexandria_J_Bare.jpg'),(9144,1556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:618;s:4:\"file\";s:29:\"2021/02/Alexandria_J_Bare.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Alexandria_J_Bare.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Alexandria_J_Bare.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"Alexandria_J_Bare.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:21:\"Alexandria_J_Bare.jpg\";s:5:\"width\";i:648;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"Alexandria_J_Bare.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:21:\"Alexandria_J_Bare.jpg\";s:5:\"width\";i:629;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:21:\"Alexandria_J_Bare.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Alexandria_J_Bare.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9145,1556,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.062371078706077387465711581171490252017974853515625;s:5:\"bytes\";i:7128;s:11:\"size_before\";i:670952;s:10:\"size_after\";i:663824;s:4:\"time\";d:0.77999999999999991562305012848810292780399322509765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7128;s:11:\"size_before\";i:90106;s:10:\"size_after\";i:82978;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:82978;s:10:\"size_after\";i:82978;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:82978;s:10:\"size_after\";i:82978;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:82978;s:10:\"size_after\";i:82978;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:82978;s:10:\"size_after\";i:82978;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:82978;s:10:\"size_after\";i:82978;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:82978;s:10:\"size_after\";i:82978;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:82978;s:10:\"size_after\";i:82978;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(9146,1554,'_thumbnail_id','1556'),(9148,1557,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9149,1557,'_edit_lock','1612745643:1'),(9150,1557,'_edit_last','1'),(9151,1557,'fave_agent_company','Lantern Realty and Development'),(9152,1557,'fave_agent_email','aliciahammelrealtor@gmail.com'),(9153,1557,'fave_agent_visible','0'),(9154,1557,'fave_agent_position','Licensed Agent'),(9155,1557,'fave_agent_license','301472'),(9156,1557,'fave_agent_mobile','704-699-7843'),(9157,1557,'fave_agent_website','https://lantern-realty.com/'),(9158,1557,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9169,1557,'fave_agent_logo','22'),(9160,1557,'fave_agent_agencies','45'),(9161,1557,'slide_template',''),(9162,1557,'rs_page_bg_color',''),(9163,1559,'_wp_attached_file','2021/02/Alicia_Love_Hammel.jpg'),(9164,1559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:664;s:4:\"file\";s:30:\"2021/02/Alicia_Love_Hammel.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Alicia_Love_Hammel.jpg\";s:5:\"width\";i:271;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Alicia_Love_Hammel.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:22:\"Alicia_Love_Hammel.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:22:\"Alicia_Love_Hammel.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:22:\"Alicia_Love_Hammel.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:22:\"Alicia_Love_Hammel.jpg\";s:5:\"width\";i:542;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"Alicia_Love_Hammel.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"Alicia_Love_Hammel.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9165,1559,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.9294578374529549602556244281004182994365692138671875;s:5:\"bytes\";i:5848;s:11:\"size_before\";i:629184;s:10:\"size_after\";i:623336;s:4:\"time\";d:0.359999999999999931166172473240294493734836578369140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:5848;s:11:\"size_before\";i:83765;s:10:\"size_after\";i:77917;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77917;s:10:\"size_after\";i:77917;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77917;s:10:\"size_after\";i:77917;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77917;s:10:\"size_after\";i:77917;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77917;s:10:\"size_after\";i:77917;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77917;s:10:\"size_after\";i:77917;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77917;s:10:\"size_after\";i:77917;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77917;s:10:\"size_after\";i:77917;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(9167,1557,'_primary_term_agent_category','7'),(9168,1557,'_thumbnail_id','1559'),(9171,1364,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:53476592;s:10:\"size_after\";i:53476592;s:4:\"time\";d:34.099999999999994315658113919198513031005859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:2.560000000000000053290705182007513940334320068359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:5.30999999999999960920149533194489777088165283203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:1.9099999999999999200639422269887290894985198974609375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:1.6399999999999999023003738329862244427204132080078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:1.060000000000000053290705182007513940334320068359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:1.1699999999999999289457264239899814128875732421875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:4.75;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:0.95999999999999996447286321199499070644378662109375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:1.5700000000000000621724893790087662637233734130859375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:3.8300000000000000710542735760100185871124267578125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:1.70999999999999996447286321199499070644378662109375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:6.3300000000000000710542735760100185871124267578125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4113584;s:10:\"size_after\";i:4113584;s:4:\"time\";d:1.3000000000000000444089209850062616169452667236328125;}}}'),(9190,1573,'_wp_attached_file','2021/02/2021-Educational-Calendar-1.xlsx'),(9188,1571,'_wp_attached_file','2021/02/FHA-Flip.pdf'),(9189,1572,'_wp_attached_file','2021/02/LRD-Roster_020521-1.xlsx'),(9179,1564,'_wp_attached_file','2021/02/Profile-pic-1.jpg'),(9180,1564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:176;s:6:\"height\";i:176;s:4:\"file\";s:25:\"2021/02/Profile-pic-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Profile-pic-1.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:17:\"Profile-pic-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1609262026\";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:{}}}'),(9181,1564,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:56.361773679873493847480858676135540008544921875;s:5:\"bytes\";i:25307;s:11:\"size_before\";i:44901;s:10:\"size_after\";i:19594;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.090000000000003410605131648480892181396484375;s:5:\"bytes\";i:25307;s:11:\"size_before\";i:35104;s:10:\"size_after\";i:9797;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9797;s:10:\"size_after\";i:9797;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(9193,1574,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9194,1574,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9195,1574,'_edit_last','1'),(9196,1574,'_edit_lock','1613438040:1'),(9197,1574,'_wp_page_template','template/template-page.php'),(9198,1574,'slide_template','default'),(9199,1574,'_wpb_vc_js_status','true'),(9200,1574,'fave_default_view','list_view'),(9201,1574,'fave_properties_sort','d_date'),(9202,1574,'fave_featured_prop_no','4'),(9203,1574,'fave_prop_no','9'),(9204,1574,'fave_listings_tabs','enable'),(9205,1574,'fave_prop_no_halfmap','9'),(9206,1574,'fave_properties_sort_halfmap','d_date'),(9207,1574,'fave_agency_orderby','None'),(9208,1574,'fave_agency_order','ASC'),(9209,1574,'fave_agent_orderby','title'),(9210,1574,'fave_agent_order','ASC'),(9211,1574,'fave_page_title','hide'),(9212,1574,'fave_page_breadcrumb','show'),(9213,1574,'fave_page_sidebar','none'),(9214,1574,'fave_page_background','yes'),(9215,1574,'fave_header_type','none'),(9216,1574,'fave_header_full_screen','0'),(9217,1574,'fave_header_full_screen_type','screen_fix'),(9218,1574,'fave_page_header_search','0'),(9219,1574,'fave_page_header_image_opacity','0.5'),(9220,1574,'fave_page_header_video_overlay','yes'),(9221,1574,'fave_main_menu_trans','no'),(9222,1574,'fave_adv_search_enable','global'),(9223,1574,'fave_adv_search','hide'),(9224,1574,'fave_adv_search_pos','under_menu'),(9225,1574,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(9226,1574,'fave_listing_page_content_area','0'),(9227,1574,'rs_page_bg_color','#ffffff'),(9228,1574,'_elementor_edit_mode','builder'),(9229,1574,'_elementor_template_type','wp-page'),(9230,1574,'_elementor_version','3.0.11'),(9231,1574,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">6477 Morehead Road Harrisburg, North Carolina 28075 <\\/br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">118 East Main Street Albemarle, North Carolina 28001 <\\/br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(9232,1574,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9233,1574,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:11:\"header_size\";i:1;s:5:\"align\";i:7;s:4:\"link\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:6;s:7:\"orderby\";i:6;s:11:\"posts_limit\";i:5;s:7:\"columns\";i:5;}}}}}'),(9235,1575,'_wp_page_template','template/template-page.php'),(9236,1575,'_elementor_edit_mode','builder'),(9237,1575,'_elementor_template_type','wp-page'),(9238,1575,'_elementor_version','3.0.11'),(9239,1575,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">6477 Morehead Road Harrisburg, North Carolina 28075 <\\/br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">118 East Main Street Albemarle, North Carolina 28001 <\\/br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(9240,1575,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9241,1575,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:11:\"header_size\";i:1;s:5:\"align\";i:7;s:4:\"link\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:6;s:7:\"orderby\";i:6;s:11:\"posts_limit\";i:5;s:7:\"columns\";i:5;}}}}}'),(9243,1574,'passster_activate_protection',NULL),(9244,1574,'passster_protection_type','password'),(9247,1580,'_wp_attached_file','2021/02/Fair-Housing-slides-Canopy-MLS.pdf'),(9248,1581,'_wp_attached_file','2021/02/Professional-Standards-Changes-2020.pdf'),(9254,565,'fave_agent_visible','0'),(9261,1590,'_wp_attached_file','2020/09/rick_wilson.jpg'),(9262,1590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:327;s:6:\"height\";i:351;s:4:\"file\";s:23:\"2020/09/rick_wilson.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"rick_wilson.jpg\";s:5:\"width\";i:279;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"rick_wilson.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:15:\"rick_wilson.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:37:\"KODAK EASYSHARE CX6200 DIGITAL CAMERA\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1283518875\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.99\";s:3:\"iso\";s:3:\"140\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";}}'),(9263,1590,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.95778455834073383812210522592067718505859375;s:5:\"bytes\";i:29720;s:11:\"size_before\";i:129455;s:10:\"size_after\";i:99735;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:47.2000000000000028421709430404007434844970703125;s:5:\"bytes\";i:29720;s:11:\"size_before\";i:62965;s:10:\"size_after\";i:33245;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33245;s:10:\"size_after\";i:33245;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33245;s:10:\"size_after\";i:33245;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(9281,1597,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2021/02/Pam-Lambert-6-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.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:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:19:\"Pam-Lambert-6-1.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611290734\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"Pam-Lambert-6-1.jpg\";}'),(9282,1597,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.6314514037683476299633866801741532981395721435546875;s:5:\"bytes\";i:163191;s:11:\"size_before\";i:25843794;s:10:\"size_after\";i:25680603;s:4:\"time\";d:34;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:163191;s:11:\"size_before\";i:2138622;s:10:\"size_after\";i:1975431;s:4:\"time\";d:4.54999999999999982236431605997495353221893310546875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:3.729999999999999982236431605997495353221893310546875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:1.8400000000000000799360577730112709105014801025390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:2.649999999999999911182158029987476766109466552734375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:0.70999999999999996447286321199499070644378662109375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:1.0900000000000000799360577730112709105014801025390625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:5.519999999999999573674358543939888477325439453125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:2.339999999999999857891452847979962825775146484375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:0.75;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:6.1500000000000003552713678800500929355621337890625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:0.9699999999999999733546474089962430298328399658203125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:0.93000000000000004884981308350688777863979339599609375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1975431;s:10:\"size_after\";i:1975431;s:4:\"time\";d:2.770000000000000017763568394002504646778106689453125;}}}'),(9269,1593,'_wp_attached_file','2021/02/KW6783106_02-scaled.jpg'),(9270,1593,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:31:\"2021/02/KW6783106_02-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.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:16:\"KW6783106_02.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:16:\"KW6783106_02.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535455680\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"KW6783106_02.jpg\";}'),(9271,1593,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.65931786897037725214687498009880073368549346923828125;s:5:\"bytes\";i:361144;s:11:\"size_before\";i:54775400;s:10:\"size_after\";i:54414256;s:4:\"time\";d:27.660000000000000142108547152020037174224853515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:361144;s:11:\"size_before\";i:4546856;s:10:\"size_after\";i:4185712;s:4:\"time\";d:0.9699999999999999733546474089962430298328399658203125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:2.680000000000000159872115546022541821002960205078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:5.62999999999999989341858963598497211933135986328125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:0.9899999999999999911182158029987476766109466552734375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:3.779999999999999804600747665972448885440826416015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:1.020000000000000017763568394002504646778106689453125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:1.7600000000000000088817841970012523233890533447265625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:1.2399999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:1.2800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:1.4099999999999999200639422269887290894985198974609375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:3.9199999999999999289457264239899814128875732421875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:1.4199999999999999289457264239899814128875732421875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4185712;s:10:\"size_after\";i:4185712;s:4:\"time\";d:1.560000000000000053290705182007513940334320068359375;}}}'),(9280,1597,'_wp_attached_file','2021/02/Pam-Lambert-6-1-scaled.jpg'),(9336,1599,'_elementor_edit_mode','builder'),(9337,1599,'_elementor_template_type','wp-page'),(9338,1599,'_elementor_version','3.1.1'),(9339,1599,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9340,1599,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9698,1652,'_wp_page_template','template/template-onepage.php'),(9442,1615,'_wp_page_template','template/template-onepage.php'),(9351,1601,'_wp_page_template','template/template-onepage.php'),(9352,1601,'_elementor_edit_mode','builder'),(9353,1601,'_elementor_template_type','wp-page'),(9354,1601,'_elementor_version','3.0.11'),(9355,1601,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9356,1601,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Mooresville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 980-9379\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7049809379\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"LanternRealtyMooresville@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:LanternRealtyMooresville@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9343,1600,'_wp_page_template','template/template-onepage.php'),(9344,1600,'_elementor_edit_mode','builder'),(9345,1600,'_elementor_template_type','wp-page'),(9346,1600,'_elementor_version','3.0.11'),(9347,1600,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9348,1600,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Mooresville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 980-9379\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7049809379\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"LanternRealtyMooresville@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:LanternRealtyMooresville@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9349,1600,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(10854,1885,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2021/06/D8130E10-C3B5-4B81-90E9-1A894310EE45-scaled.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-1152x1536.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-1536x2048.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-450x600.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"D8130E10-C3B5-4B81-90E9-1A894310EE45-496x661.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:661;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:{}}s:14:\"original_image\";s:41:\"D8130E10-C3B5-4B81-90E9-1A894310EE45.jpeg\";}'),(10853,1885,'_wp_attached_file','2021/06/D8130E10-C3B5-4B81-90E9-1A894310EE45-scaled.jpeg'),(9358,1602,'_wp_page_template','template/template-onepage.php'),(9359,1602,'_elementor_edit_mode','builder'),(9360,1602,'_elementor_template_type','wp-page'),(9361,1602,'_elementor_version','3.0.11'),(9362,1602,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9363,1602,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Mooresville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 980-9379\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7049809379\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"LanternRealtyMooresville@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:LanternRealtyMooresville@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9365,1603,'_wp_page_template','template/template-onepage.php'),(9366,1603,'_elementor_edit_mode','builder'),(9367,1603,'_elementor_template_type','wp-page'),(9368,1603,'_elementor_version','3.0.11'),(9369,1603,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9370,1603,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9373,1604,'_wp_page_template','template/template-onepage.php'),(9374,1604,'_elementor_edit_mode','builder'),(9375,1604,'_elementor_template_type','wp-page'),(9376,1604,'_elementor_version','3.1.1'),(9377,1604,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9378,1604,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9379,1605,'_wp_page_template','template/template-onepage.php'),(9380,1605,'_elementor_edit_mode','builder'),(9381,1605,'_elementor_template_type','wp-page'),(9382,1605,'_elementor_version','3.1.1'),(9383,1605,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9384,1605,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9385,1606,'_wp_page_template','template/template-onepage.php'),(9386,1606,'_elementor_edit_mode','builder'),(9387,1606,'_elementor_template_type','wp-page'),(9388,1606,'_elementor_version','3.1.1'),(9389,1606,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9390,1606,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9392,1607,'_wp_page_template','template/template-onepage.php'),(9393,1607,'_elementor_edit_mode','builder'),(9394,1607,'_elementor_template_type','wp-page'),(9395,1607,'_elementor_version','3.1.1'),(9396,1607,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9397,1607,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9398,1608,'_wp_page_template','template/template-onepage.php'),(9399,1608,'_elementor_edit_mode','builder'),(9400,1608,'_elementor_template_type','wp-page'),(9401,1608,'_elementor_version','3.1.1'),(9402,1608,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9403,1608,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9404,1609,'_wp_page_template','template/template-onepage.php'),(9405,1609,'_elementor_edit_mode','builder'),(9406,1609,'_elementor_template_type','wp-page'),(9407,1609,'_elementor_version','3.1.1'),(9408,1609,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9409,1609,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9411,1610,'_wp_page_template','template/template-onepage.php'),(9412,1610,'_elementor_edit_mode','builder'),(9413,1610,'_elementor_template_type','wp-page'),(9414,1610,'_elementor_version','3.1.1'),(9415,1610,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9416,1610,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9417,1611,'_wp_page_template','template/template-onepage.php'),(9418,1611,'_elementor_edit_mode','builder'),(9419,1611,'_elementor_template_type','wp-page'),(9420,1611,'_elementor_version','3.1.1'),(9421,1611,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9422,1611,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9423,1612,'_wp_page_template','template/template-onepage.php'),(9424,1612,'_elementor_edit_mode','builder'),(9425,1612,'_elementor_template_type','wp-page'),(9426,1612,'_elementor_version','3.1.1'),(9427,1612,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9428,1612,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9430,1613,'_wp_page_template','template/template-onepage.php'),(9431,1613,'_elementor_edit_mode','builder'),(9432,1613,'_elementor_template_type','wp-page'),(9433,1613,'_elementor_version','3.1.1'),(9434,1613,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9435,1613,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9436,1614,'_wp_page_template','template/template-onepage.php'),(9437,1614,'_elementor_edit_mode','builder'),(9438,1614,'_elementor_template_type','wp-page'),(9439,1614,'_elementor_version','3.1.1'),(9440,1614,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9441,1614,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9443,1615,'_elementor_edit_mode','builder'),(9444,1615,'_elementor_template_type','wp-page'),(9445,1615,'_elementor_version','3.1.1'),(9446,1615,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9447,1615,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9454,1617,'_wp_page_template','template/template-onepage.php'),(9455,1617,'_elementor_edit_mode','builder'),(9456,1617,'_elementor_template_type','wp-page'),(9457,1617,'_elementor_version','3.1.1'),(9458,1617,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9459,1617,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9451,1616,'_wp_attached_file','2021/02/Lantern-Asheville.png'),(9452,1616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:455;s:4:\"file\";s:29:\"2021/02/Lantern-Asheville.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Lantern-Asheville.png\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Lantern-Asheville.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"Lantern-Asheville.png\";s:5:\"width\";i:580;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"Lantern-Asheville.png\";s:5:\"width\";i:580;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:21:\"Lantern-Asheville.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Lantern-Asheville.png\";s:5:\"width\";i:496;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9453,1616,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2122320;s:10:\"size_after\";i:2122320;s:4:\"time\";d:3.609999999999999875655021241982467472553253173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:353720;s:10:\"size_after\";i:353720;s:4:\"time\";d:0.60999999999999998667732370449812151491641998291015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:353720;s:10:\"size_after\";i:353720;s:4:\"time\";d:0.689999999999999946709294817992486059665679931640625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:353720;s:10:\"size_after\";i:353720;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:353720;s:10:\"size_after\";i:353720;s:4:\"time\";d:0.83999999999999996891375531049561686813831329345703125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:353720;s:10:\"size_after\";i:353720;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:353720;s:10:\"size_after\";i:353720;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;}}}'),(9460,1618,'_wp_page_template','template/template-onepage.php'),(9461,1618,'_elementor_edit_mode','builder'),(9462,1618,'_elementor_template_type','wp-page'),(9463,1618,'_elementor_version','3.1.1'),(9464,1618,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9465,1618,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9466,1619,'_wp_page_template','template/template-onepage.php'),(9467,1619,'_elementor_edit_mode','builder'),(9468,1619,'_elementor_template_type','wp-page'),(9469,1619,'_elementor_version','3.1.1'),(9470,1619,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9471,1619,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9638,1644,'_wp_page_template','template/template-onepage.php'),(9639,1644,'_elementor_edit_mode','builder'),(9640,1644,'_elementor_template_type','wp-page'),(9641,1644,'_elementor_version','3.1.1'),(9642,1644,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9643,1644,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9474,1620,'_wp_page_template','template/template-onepage.php'),(9475,1620,'_elementor_edit_mode','builder'),(9476,1620,'_elementor_template_type','wp-page'),(9477,1620,'_elementor_version','3.1.1'),(9478,1620,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9479,1620,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9480,1620,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(9489,1622,'_wp_page_template','template/template-onepage.php'),(9490,1622,'_elementor_edit_mode','builder'),(9491,1622,'_elementor_template_type','wp-page'),(9492,1622,'_elementor_version','3.0.11'),(9493,1622,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9494,1622,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9496,1623,'_wp_page_template','template/template-onepage.php'),(9497,1623,'_elementor_edit_mode','builder'),(9498,1623,'_elementor_template_type','wp-page'),(9499,1623,'_elementor_version','3.0.11'),(9500,1623,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9501,1623,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9504,1624,'_wp_page_template','template/template-onepage.php'),(9505,1624,'_elementor_edit_mode','builder'),(9506,1624,'_elementor_template_type','wp-page'),(9507,1624,'_elementor_version','3.1.1'),(9508,1624,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9509,1624,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9510,1625,'_wp_page_template','template/template-onepage.php'),(9511,1625,'_elementor_edit_mode','builder'),(9512,1625,'_elementor_template_type','wp-page'),(9513,1625,'_elementor_version','3.1.1'),(9514,1625,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9515,1625,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9516,1626,'_wp_page_template','template/template-onepage.php'),(9517,1626,'_elementor_edit_mode','builder'),(9518,1626,'_elementor_template_type','wp-page'),(9519,1626,'_elementor_version','3.1.1'),(9520,1626,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9521,1626,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9523,1627,'_wp_page_template','template/template-onepage.php'),(9524,1627,'_elementor_edit_mode','builder'),(9525,1627,'_elementor_template_type','wp-page'),(9526,1627,'_elementor_version','3.1.1'),(9527,1627,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9528,1627,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9529,1628,'_wp_page_template','template/template-onepage.php'),(9530,1628,'_elementor_edit_mode','builder'),(9531,1628,'_elementor_template_type','wp-page'),(9532,1628,'_elementor_version','3.1.1'),(9533,1628,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9534,1628,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9535,1629,'_wp_page_template','template/template-onepage.php'),(9536,1629,'_elementor_edit_mode','builder'),(9537,1629,'_elementor_template_type','wp-page'),(9538,1629,'_elementor_version','3.1.1'),(9539,1629,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9540,1629,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9542,1630,'_wp_page_template','template/template-onepage.php'),(9543,1630,'_elementor_edit_mode','builder'),(9544,1630,'_elementor_template_type','wp-page'),(9545,1630,'_elementor_version','3.1.1'),(9546,1630,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9547,1630,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9548,1631,'_wp_page_template','template/template-onepage.php'),(9549,1631,'_elementor_edit_mode','builder'),(9550,1631,'_elementor_template_type','wp-page'),(9551,1631,'_elementor_version','3.1.1'),(9552,1631,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9553,1631,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9554,1632,'_wp_page_template','template/template-onepage.php'),(9555,1632,'_elementor_edit_mode','builder'),(9556,1632,'_elementor_template_type','wp-page'),(9557,1632,'_elementor_version','3.1.1'),(9558,1632,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9559,1632,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12207,2314,'_wp_page_template','template/template-onepage.php'),(12208,2314,'_elementor_edit_mode','builder'),(12209,2314,'_elementor_template_type','wp-page'),(12210,2314,'_elementor_version','3.1.1'),(12211,2314,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12212,2314,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9562,1633,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9563,1633,'_edit_lock','1614131387:1'),(9564,1633,'_edit_last','1'),(9565,1633,'fave_agent_company','Lantern Realty and Development'),(9566,1633,'fave_agent_email','pamlambert.ncrealtor@gmail.com'),(9567,1633,'fave_agent_visible','0'),(9568,1633,'fave_agent_position','Licensed Agent'),(9569,1633,'slide_template',''),(9570,1633,'rs_page_bg_color',''),(9571,1633,'fave_agent_license','216222'),(9572,1633,'fave_agent_mobile','704-791-1074'),(9573,1633,'fave_agent_website','https://lantern-realty.com/'),(9574,1633,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9720,1633,'fave_agent_logo','28'),(9576,1633,'fave_agent_agencies','45'),(9577,1633,'_primary_term_agent_category','7'),(9578,1635,'_wp_attached_file','2021/02/pam_lambert.jpg'),(9579,1635,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:525;s:4:\"file\";s:23:\"2021/02/pam_lambert.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"pam_lambert.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pam_lambert.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:15:\"pam_lambert.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:15:\"pam_lambert.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:15:\"pam_lambert.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:15:\"pam_lambert.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9580,1635,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.7067980340006412287578996256343089044094085693359375;s:5:\"bytes\";i:10595;s:11:\"size_before\";i:620753;s:10:\"size_after\";i:610158;s:4:\"time\";d:0.310000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:10595;s:11:\"size_before\";i:112288;s:10:\"size_after\";i:101693;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101693;s:10:\"size_after\";i:101693;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101693;s:10:\"size_after\";i:101693;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101693;s:10:\"size_after\";i:101693;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101693;s:10:\"size_after\";i:101693;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101693;s:10:\"size_after\";i:101693;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(9581,1633,'_thumbnail_id','1654'),(9586,1637,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9587,1637,'_edit_lock','1614129176:1'),(9588,1637,'_edit_last','1'),(9589,1637,'fave_agent_company','Lantern Realty and Development'),(9590,1637,'fave_agent_email','ashleyuttecht@gmail.com'),(9591,1637,'fave_agent_visible','0'),(9592,1637,'fave_agent_position','Licensed Agent'),(9593,1637,'fave_agent_license','303298'),(9594,1637,'fave_agent_mobile','704-792-5147'),(9595,1637,'slide_template',''),(9596,1637,'rs_page_bg_color',''),(9597,1637,'fave_agent_website','https://lantern-realty.com/'),(9598,1637,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9606,1637,'fave_agent_logo','28'),(9600,1637,'fave_agent_agencies','760'),(9601,1637,'_primary_term_agent_category','7'),(9602,1639,'_wp_attached_file','2021/02/ashley_uttecht.jpg'),(9603,1639,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:504;s:4:\"file\";s:26:\"2021/02/ashley_uttecht.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"ashley_uttecht.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ashley_uttecht.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:18:\"ashley_uttecht.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:18:\"ashley_uttecht.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"ashley_uttecht.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:18:\"ashley_uttecht.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9604,1639,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.0696753877705014179610998326097615063190460205078125;s:5:\"bytes\";i:5075;s:11:\"size_before\";i:474443;s:10:\"size_after\";i:469368;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5075;s:11:\"size_before\";i:83303;s:10:\"size_after\";i:78228;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78228;s:10:\"size_after\";i:78228;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78228;s:10:\"size_after\";i:78228;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78228;s:10:\"size_after\";i:78228;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78228;s:10:\"size_after\";i:78228;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78228;s:10:\"size_after\";i:78228;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(9605,1637,'_thumbnail_id','1639'),(9607,1640,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9608,1640,'_edit_lock','1627852575:1'),(9609,1640,'_edit_last','1'),(9610,1640,'fave_agent_company','Lantern Realty and Development'),(9611,1640,'fave_agent_visible','0'),(9612,1640,'fave_agent_position','Licensed Agent'),(10860,1711,'_elementor_inline_svg','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\r\n<!-- Creator: CorelDRAW X7 -->\r\n<svg xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" width=\"297mm\" height=\"210mm\" version=\"1.1\" style=\"shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd\"\r\nviewBox=\"0 0 29700 21000\"\r\n xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n <defs>\r\n  <style type=\"text/css\">\r\n   <![CDATA[\r\n    .fil1 {fill:#013976}\r\n    .fil3 {fill:red}\r\n    .fil0 {fill:white}\r\n    .fil2 {fill:red;fill-rule:nonzero}\r\n    .fil4 {fill:red;fill-rule:nonzero}\r\n   ]]>\r\n  </style>\r\n </defs>\r\n <g id=\"Layer_x0020_1\">\r\n  <metadata id=\"CorelCorpID_0Corel-Layer\"/>\r\n  <rect class=\"fil0\" width=\"29700\" height=\"21000\"/>\r\n  <g id=\"_1958379139120\">\r\n   <g>\r\n    <g>\r\n     <g>\r\n      <path class=\"fil1\" d=\"M19357 6969c108,39 182,129 264,204 543,513 1088,1025 1632,1537 3,-542 1,-1084 1,-1626 216,-1 433,-2 649,1 -2,719 0,1438 -1,2156 -4,312 12,624 -11,935 -111,-69 -200,-164 -295,-252 -530,-496 -1055,-998 -1591,-1487 -6,534 -2,1069 -3,1603 -472,0 -944,-2 -1416,1 -263,-386 -526,-772 -786,-1160 -34,-1 -68,-2 -102,-3 -1,387 -1,775 0,1162 -228,-2 -455,2 -683,-3 3,-984 0,-1968 1,-2952 347,-1 695,-8 1043,7 282,15 579,104 772,322 267,287 274,766 33,1072 -94,127 -230,212 -369,282 281,409 570,814 858,1218 5,-1005 -5,-2011 4,-3017l0 0zm-1659 651c-1,273 -1,546 0,819 173,0 358,9 513,-80 232,-125 254,-509 31,-654 -164,-94 -361,-82 -544,-85z\"/>\r\n     </g>\r\n     <g>\r\n      <path class=\"fil1\" d=\"M8386 6970c28,36 57,73 78,114 440,921 885,1838 1327,2758 3,-958 -1,-1916 3,-2873 96,35 167,109 238,179 553,522 1107,1042 1659,1564 2,-543 2,-1085 0,-1627 217,-3 433,-1 650,-2 -4,1024 1,2047 -1,3070 -15,0 -44,1 -59,1 -615,-573 -1227,-1151 -1841,-1726 0,537 0,1074 0,1611 -430,2 -859,-1 -1289,2 -64,-143 -125,-288 -187,-432 -397,-2 -794,3 -1191,-2 -68,141 -131,284 -191,429 -803,8 -1605,3 -2407,2 2,-984 1,-1969 0,-2953 235,-3 470,-1 704,-2 -1,774 -1,1549 1,2323 382,-1 764,-1 1147,-1 -1,105 -1,210 0,315 457,-915 899,-1837 1359,-2750l0 0zm-413 2128c257,-2 515,0 772,-2 -127,-306 -253,-613 -380,-919 -135,304 -261,614 -392,921z\"/>\r\n     </g>\r\n     <path class=\"fil1\" d=\"M12367 7084c859,0 1717,-2 2576,0 0,206 -4,411 -8,617 -309,-1 -619,-3 -929,1 1,779 -2,1558 1,2337 -235,1 -469,0 -704,1 1,-780 4,-1560 -1,-2340 -312,0 -623,0 -934,0 -12,-205 -11,-411 -1,-616z\"/>\r\n     <path class=\"fil1\" d=\"M14960 7089c605,-14 1209,-2 1814,-5 -1,203 0,406 -2,608 -376,-1 -752,1 -1128,0 -2,178 -1,357 0,536 322,0 644,-1 966,0 0,201 -1,403 0,604 -323,0 -645,-2 -967,0 0,195 0,391 1,587 382,-1 765,0 1147,-1 0,207 0,414 0,622 -609,0 -1219,-1 -1829,0 0,-626 0,-1253 0,-1879 3,-357 -18,-715 -2,-1072z\"/>\r\n    </g>\r\n    <path class=\"fil2\" d=\"M19581 10832c36,22 60,52 74,90 13,38 9,76 -12,114 -22,38 -52,62 -90,73 -76,22 -155,79 -236,171 -82,93 -167,218 -257,375 -89,158 -160,288 -212,391 -51,103 -115,239 -191,407 -120,256 -205,421 -257,497 -51,76 -112,114 -183,114 -38,0 -67,-4 -86,-12 -19,-8 -44,-42 -77,-102 -32,-59 -60,-146 -81,-260 -22,-114 -44,-287 -66,-518 -21,-230 -38,-512 -48,-843 -6,-43 6,-80 36,-110 30,-30 67,-45 110,-45 38,-5 74,7 106,37 33,30 49,67 49,110 22,521 54,940 98,1255 27,-55 68,-136 122,-245 212,-461 399,-816 562,-1063 163,-247 337,-398 521,-452 44,-11 83,-5 118,16z\"/>\r\n    <path class=\"fil2\" d=\"M20518 12343c41,9 74,30 98,66 25,35 33,73 25,114 -9,40 -29,74 -62,101 -467,321 -855,481 -1164,481 -153,0 -272,-46 -359,-138 -179,-185 -185,-481 -16,-888 103,-234 244,-440 423,-619 180,-180 364,-272 554,-277 82,0 156,27 224,81 68,54 110,125 127,212 21,146 -47,299 -204,456 -158,158 -459,312 -904,464 -44,180 -38,299 16,359 71,70 223,61 456,-29 234,-89 456,-207 668,-354 38,-27 78,-37 118,-29zm-493 -851c-92,0 -195,49 -309,147 -114,98 -215,222 -301,374 124,-48 233,-99 325,-150 93,-52 159,-95 200,-131 41,-35 72,-70 94,-105 21,-36 32,-59 32,-70 0,-11 0,-19 0,-24 -5,-27 -19,-41 -41,-41z\"/>\r\n    <path class=\"fil2\" d=\"M21239 11965c120,76 211,137 273,183 63,46 125,114 188,204 62,89 90,183 85,281 -16,358 -391,638 -1124,839l-16 8c-17,0 -30,0 -41,0 -76,0 -125,-36 -147,-106 -11,-44 -5,-83 17,-118 21,-36 51,-59 89,-69l16 -9c592,-163 894,-350 905,-562 0,-59 -34,-119 -102,-179 -68,-60 -170,-133 -306,-220 -114,-76 -202,-137 -264,-183 -63,-46 -125,-113 -188,-200 -62,-87 -93,-176 -93,-269 0,-141 42,-271 126,-391 84,-119 193,-218 326,-297 133,-79 236,-134 309,-167 74,-32 140,-60 200,-81 38,-11 76,-9 114,8 38,16 64,45 77,85 14,41 11,80 -8,118 -19,38 -47,63 -85,74 -163,54 -330,141 -501,260 -172,120 -257,250 -257,391 0,60 35,119 106,176 70,57 171,131 301,224z\"/>\r\n    <path class=\"fil2\" d=\"M15889 12784c19,0 38,2 56,7l0 1c19,6 38,16 55,32 17,15 30,33 38,52l1 0c8,20 13,41 13,64 0,22 -4,42 -12,61 -8,20 -20,38 -35,53l0 0c-16,15 -32,27 -50,34l0 0c-18,8 -38,12 -57,13 -103,2 -202,5 -300,7 -876,21 -1553,37 -2465,332l0 1c-69,22 -132,45 -189,68 -56,22 -106,45 -151,68 -45,24 -81,44 -106,59l0 0c-24,15 -39,26 -45,33 -8,9 -15,17 -21,24l0 1c-2,3 -4,6 -6,9 -1,8 -3,17 -6,25 -3,10 -8,20 -13,30 -4,22 -8,44 -10,64 -3,21 -4,39 -4,54 0,20 -4,40 -13,59l0 0c-7,18 -19,34 -34,49l0 0c-15,15 -32,27 -51,35 -19,8 -39,12 -60,12 -43,0 -81,-15 -112,-47 -15,-15 -26,-31 -34,-49l0 0c-9,-19 -13,-39 -13,-59 0,-628 577,-2126 935,-3055 60,-156 114,-296 159,-415 8,-22 19,-41 33,-56 14,-16 32,-28 52,-37 20,-9 41,-13 61,-13 21,0 41,4 62,13 20,8 38,19 53,33 15,15 27,32 36,52l0 0c8,20 12,40 12,61 0,19 -4,39 -12,58 -256,666 -387,977 -469,1172 -56,131 -88,209 -122,308 -48,140 -98,324 -219,772 -30,112 -68,250 -134,493 570,-261 991,-422 3177,-478z\"/>\r\n    <path class=\"fil3\" d=\"M16480 12707l10 9c9,-7 18,-16 26,-23l0 0 11 -9 0 -1c14,-12 29,-24 44,-36 8,-6 16,-12 26,-21 32,-26 63,-50 94,-74l45 -35 0 0 309 -247 0 0c20,-16 55,-49 92,-85 51,-50 104,-105 125,-128l0 0c36,-40 78,-92 114,-152 27,-44 51,-92 67,-142 20,-64 19,-126 4,-180l0 0c-16,-61 -50,-112 -89,-144 -96,-76 -204,-96 -308,-76 -120,23 -235,98 -320,201 -16,20 -32,42 -47,66 -15,24 -29,51 -44,78l-2 5c-18,35 -38,73 -92,79 -73,8 -109,-45 -161,-122 -38,-59 -88,-133 -172,-202 -42,-34 -98,-69 -162,-95 -53,-21 -111,-36 -170,-40 -38,-2 -75,0 -110,7 -88,15 -162,57 -214,118 -53,61 -85,142 -90,236 -3,40 0,82 8,126 46,260 347,439 569,572l36 21c72,43 133,82 191,123 59,41 116,85 179,139 8,7 14,13 20,20l0 0c4,4 7,8 11,12l0 0zm-774 -1602l30 -7 3 -1 3 0c99,-9 186,-5 266,12 81,17 155,47 229,90 55,33 109,71 158,115 47,41 90,86 126,134l0 0 0 1 11 -16 6 -8 0 0c24,-34 53,-66 85,-96 31,-29 64,-56 98,-82 105,-80 239,-123 374,-127 135,-4 270,30 379,104 25,18 48,37 69,57l0 1c21,20 40,43 57,67 39,55 56,105 67,137l0 0 7 19 11 14 -3 16c-1,7 1,19 4,30 1,9 3,18 4,30 8,83 -3,161 -25,234 -22,72 -56,140 -93,206l0 0c-21,38 -44,70 -67,100 -23,30 -46,57 -70,84l-1 2 -114 117 -2 2c-4,4 -9,9 -14,15 -8,7 -15,15 -24,23l0 0c-23,19 -41,35 -60,51 -35,31 -72,62 -109,92l0 0 -68 53c-125,98 -358,281 -418,337l6 18c15,39 27,71 23,143 -4,81 -49,174 -109,244 -60,70 -137,119 -209,117 -36,-1 -67,-12 -92,-31 -29,-20 -49,-49 -61,-79 -12,-29 -17,-61 -17,-93 0,-37 7,-75 15,-108 25,-96 86,-178 137,-244l-12 -11 0 -1c-25,-22 -57,-48 -71,-59 -117,-87 -180,-126 -282,-189 -29,-18 -61,-37 -92,-56l-20 -12c-90,-56 -137,-86 -232,-155 -22,-16 -42,-32 -60,-47 -20,-17 -39,-34 -57,-51l-8 -7c-23,-22 -35,-34 -46,-46 -13,-14 -25,-28 -50,-57l0 0c-40,-47 -72,-98 -97,-152 -65,-140 -80,-295 -52,-439 29,-144 102,-276 211,-368 36,-31 78,-58 123,-79 54,-25 86,-33 133,-44l0 0z\"/>\r\n   </g>\r\n   <path class=\"fil4\" d=\"M22621 11135c-34,13 -72,-4 -85,-38 -13,-33 4,-71 37,-84l1863 -721c34,-13 72,3 85,37 13,34 -4,72 -38,85l-1862 721z\"/>\r\n   <path class=\"fil4\" d=\"M22741 12010c-36,-3 -62,-35 -59,-71 3,-36 35,-62 71,-59l992 90c36,3 62,35 59,71 -3,36 -35,62 -71,59l-992 -90z\"/>\r\n   <path class=\"fil4\" d=\"M22318 12929c-29,-22 -35,-63 -14,-92 22,-29 63,-35 92,-13l1412 1051c29,22 35,63 13,92 -21,29 -62,35 -91,13l-1412 -1051z\"/>\r\n   <path class=\"fil4\" d=\"M11616 12488c35,-9 71,13 79,48 9,35 -12,70 -47,79l-2203 551c-35,9 -71,-13 -79,-48 -9,-35 12,-70 47,-79l2203 -551z\"/>\r\n   <path class=\"fil4\" d=\"M11016 11406c-36,-6 -60,-40 -53,-76 6,-35 40,-59 75,-53l493 88c35,6 59,40 53,76 -6,35 -40,59 -76,53l-492 -88z\"/>\r\n  </g>\r\n </g>\r\n</svg>\r\n'),(9614,1640,'rs_page_bg_color',''),(9615,28,'_oembed_c737856c7e6f03f7155a411f5bf5ffa8','{{unknown}}'),(9616,1640,'_thumbnail_id','1889'),(9617,1640,'fave_agent_website','https://lantern-realty.com/'),(9618,1640,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11250,1640,'fave_agent_logo','28'),(9620,1640,'fave_agent_agencies','1598'),(9621,1640,'_primary_term_agent_category','22'),(9622,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9623,1642,'_edit_lock','1645148602:1'),(9624,1642,'_edit_last','1'),(9625,1642,'fave_agent_company','Lantern Realty and Development'),(9626,1642,'fave_agent_visible','0'),(9627,1642,'fave_agent_position','Licensed Agent'),(9724,1642,'fave_agent_email','klawingrealtor@gmail.com'),(9628,1642,'fave_agent_website','https://lantern-realty.com/'),(9629,1642,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11958,1642,'fave_agent_logo','28'),(9631,1642,'fave_agent_agencies','1598'),(10865,1891,'_wp_attached_file','2021/02/Katherine_Lawing.jpg'),(9633,1642,'rs_page_bg_color',''),(9634,1642,'_thumbnail_id','2269'),(9636,1642,'_primary_term_agent_category','22'),(9645,1645,'_wp_page_template','template/template-onepage.php'),(9646,1645,'_elementor_edit_mode','builder'),(9647,1645,'_elementor_template_type','wp-page'),(9648,1645,'_elementor_version','3.1.1'),(9649,1645,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9650,1645,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9652,1646,'_wp_page_template','template/template-onepage.php'),(9653,1646,'_elementor_edit_mode','builder'),(9654,1646,'_elementor_template_type','wp-page'),(9655,1646,'_elementor_version','3.1.1'),(9656,1646,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9657,1646,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9684,1650,'_wp_page_template','template/template-onepage.php'),(9685,1650,'_elementor_edit_mode','builder'),(9686,1650,'_elementor_template_type','wp-page'),(9687,1650,'_elementor_version','3.1.1'),(9688,1650,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9689,1650,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9705,1599,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(9666,1647,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9668,1648,'_wp_page_template','template/template-page.php'),(9669,1648,'_elementor_edit_mode','builder'),(9670,1648,'_elementor_template_type','wp-page'),(9671,1648,'_elementor_version','3.0.11'),(9672,1648,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">6477 Morehead Road Harrisburg, North Carolina 28075 <\\/br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">118 East Main Street Albemarle, North Carolina 28001 <\\/br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(9673,1648,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9675,1649,'_wp_page_template','template/template-page.php'),(9676,1649,'_elementor_edit_mode','builder'),(9677,1649,'_elementor_template_type','wp-page'),(9678,1649,'_elementor_version','3.0.11'),(9679,1649,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">6477 Morehead Road Harrisburg, North Carolina 28075 <\\/br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">118 East Main Street Albemarle, North Carolina 28001 <\\/br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(9680,1649,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10852,1884,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.3541294318376149163896116078831255435943603515625;s:5:\"bytes\";i:850280;s:11:\"size_before\";i:6882557;s:10:\"size_after\";i:6032277;s:4:\"time\";d:4.2599999999999997868371792719699442386627197265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7167;s:11:\"size_before\";i:64087;s:10:\"size_after\";i:56920;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:72249;s:11:\"size_before\";i:609594;s:10:\"size_after\";i:537345;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:2853;s:11:\"size_before\";i:25349;s:10:\"size_after\";i:22496;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:12;s:5:\"bytes\";i:85769;s:11:\"size_before\";i:714743;s:10:\"size_after\";i:628974;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:160589;s:11:\"size_before\";i:1262918;s:10:\"size_after\";i:1102329;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:278700;s:11:\"size_before\";i:2109852;s:10:\"size_after\";i:1831152;s:4:\"time\";d:1.729999999999999982236431605997495353221893310546875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:86767;s:11:\"size_before\";i:705662;s:10:\"size_after\";i:618895;s:4:\"time\";d:1.020000000000000017763568394002504646778106689453125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:25719;s:11:\"size_before\";i:233162;s:10:\"size_after\";i:207443;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:41209;s:11:\"size_before\";i:362270;s:10:\"size_after\";i:321061;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:25016;s:11:\"size_before\";i:227870;s:10:\"size_after\";i:202854;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:26157;s:11:\"size_before\";i:231205;s:10:\"size_after\";i:205048;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1596;s:11:\"size_before\";i:13450;s:10:\"size_after\";i:11854;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:36489;s:11:\"size_before\";i:322395;s:10:\"size_after\";i:285906;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(9691,1651,'_wp_page_template','template/template-onepage.php'),(9692,1651,'_elementor_edit_mode','builder'),(9693,1651,'_elementor_template_type','wp-page'),(9694,1651,'_elementor_version','3.1.1'),(9695,1651,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `lrwp_postmeta` VALUES (9696,1651,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Lake-Norman-Huntersville-Cornelius-Mooresville\\/815187\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9699,1652,'_elementor_edit_mode','builder'),(9700,1652,'_elementor_template_type','wp-page'),(9701,1652,'_elementor_version','3.1.1'),(9702,1652,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9703,1652,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9706,1653,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9707,1653,'_menu_item_type','custom'),(9708,1653,'_menu_item_menu_item_parent','707'),(9709,1653,'_menu_item_object_id','1653'),(9710,1653,'_menu_item_object','custom'),(9711,1653,'_menu_item_target',''),(9712,1653,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9713,1653,'_menu_item_xfn',''),(9714,1653,'_menu_item_url','/market-report/Asheville/1753763/'),(9716,1654,'_wp_attached_file','2021/02/pam_lambert-1.jpg'),(9717,1654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:673;s:4:\"file\";s:25:\"2021/02/pam_lambert-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"pam_lambert-1.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"pam_lambert-1.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:17:\"pam_lambert-1.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:17:\"pam_lambert-1.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:17:\"pam_lambert-1.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:17:\"pam_lambert-1.jpg\";s:5:\"width\";i:535;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:17:\"pam_lambert-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"pam_lambert-1.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:556;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9718,1654,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.34561594612164814321886296966113150119781494140625;s:5:\"bytes\";i:17035;s:11:\"size_before\";i:1265963;s:10:\"size_after\";i:1248928;s:4:\"time\";d:0.5500000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:17035;s:11:\"size_before\";i:173151;s:10:\"size_after\";i:156116;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:156116;s:10:\"size_after\";i:156116;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:156116;s:10:\"size_after\";i:156116;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:156116;s:10:\"size_after\";i:156116;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:156116;s:10:\"size_after\";i:156116;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:156116;s:10:\"size_after\";i:156116;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:156116;s:10:\"size_after\";i:156116;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:156116;s:10:\"size_after\";i:156116;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(9721,1640,'fave_agent_email','mfarlowrealtor@gmail.com'),(9722,1640,'fave_agent_mobile','828-231-5466'),(9725,1642,'fave_agent_mobile','828-772-0220'),(9727,1655,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9728,1655,'_edit_lock','1614132010:1'),(9729,1655,'_edit_last','1'),(9733,1655,'slide_template',''),(9731,1655,'fave_agent_email','tammyafox@gmail.com'),(9732,1655,'fave_agent_visible','0'),(9734,1655,'rs_page_bg_color',''),(9735,1657,'_wp_attached_file','2021/02/tammy_fox.jpg'),(9736,1657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:176;s:6:\"height\";i:176;s:4:\"file\";s:21:\"2021/02/tammy_fox.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"tammy_fox.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:13:\"tammy_fox.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9737,1657,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19594;s:10:\"size_after\";i:19594;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9797;s:10:\"size_after\";i:9797;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9797;s:10:\"size_after\";i:9797;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(9738,1655,'_thumbnail_id','1657'),(9739,1655,'fave_agent_company','Lantern Realty and Development'),(9740,1655,'fave_agent_position','Licensed Agent'),(9741,1655,'fave_agent_mobile','704-785-7597'),(9742,1655,'fave_agent_website','https://lantern-realty.com/'),(9743,1655,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9744,1655,'fave_agent_logo','28'),(9745,1655,'fave_agent_agencies','45'),(9746,1655,'_primary_term_agent_category','7'),(9754,1659,'_wp_attached_file','2021/02/LRD-Roster_022521.xlsx'),(9755,1660,'_wp_attached_file','2021/02/2021-Educational-Calendar-2.xlsx'),(9759,1661,'_wp_attached_file','2021/02/pv9365-1-1-scaled.jpg'),(9760,1661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/02/pv9365-1-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.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:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:620;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:{}}s:14:\"original_image\";s:14:\"pv9365-1-1.jpg\";}'),(9761,1661,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.956843035180959144980761266197077929973602294921875;s:5:\"bytes\";i:408040;s:11:\"size_before\";i:42644403;s:10:\"size_after\";i:42236363;s:4:\"time\";d:18.790000000000002700062395888380706310272216796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:408040;s:11:\"size_before\";i:3656991;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.0100000000000000088817841970012523233890533447265625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.7800000000000000266453525910037569701671600341796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:0.91000000000000003108624468950438313186168670654296875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.29000000000000003552713678800500929355621337890625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.75;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.20999999999999996447286321199499070644378662109375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.7800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";i:2;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.060000000000000053290705182007513940334320068359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.9899999999999999911182158029987476766109466552734375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:0.82999999999999996003197111349436454474925994873046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.3600000000000000976996261670137755572795867919921875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.8200000000000000621724893790087662637233734130859375;}}}'),(9771,1664,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.09872897097741972771700602606870234012603759765625;s:5:\"bytes\";i:413576;s:11:\"size_before\";i:37641312;s:10:\"size_after\";i:37227736;s:4:\"time\";d:12.6500000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:413576;s:11:\"size_before\";i:3277248;s:10:\"size_after\";i:2863672;s:4:\"time\";d:0.57999999999999996003197111349436454474925994873046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";d:1.2800000000000000266453525910037569701671600341796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";i:1;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";d:0.5100000000000000088817841970012523233890533447265625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";d:0.58999999999999996891375531049561686813831329345703125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";d:0.7199999999999999733546474089962430298328399658203125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";d:1.060000000000000053290705182007513940334320068359375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";d:1.12000000000000010658141036401502788066864013671875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";d:1.45999999999999996447286321199499070644378662109375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";d:2.520000000000000017763568394002504646778106689453125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2863672;s:10:\"size_after\";i:2863672;s:4:\"time\";d:0.61999999999999999555910790149937383830547332763671875;}}}'),(10838,1878,'_wp_attached_file','2021/06/2021-Educational-Calendar.xlsx'),(10845,1882,'_wp_attached_file','2021/06/2021-Educational-Calendar-1.xlsx'),(9773,1665,'_wp_attached_file','2021/03/677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg'),(9774,1665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:49:\"2021/03/677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:41:\"677AF495-B8D8-4B38-AA92-45C2C5E07C3D.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:661;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:{}}}'),(9775,1665,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.4303920836312287168112789004226215183734893798828125;s:5:\"bytes\";i:14520;s:11:\"size_before\";i:3373668;s:10:\"size_after\";i:3359148;s:4:\"time\";d:2.95000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:14520;s:11:\"size_before\";i:294449;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:279929;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:279929;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:279929;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:279929;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:279929;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:279929;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:279929;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:279929;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:279929;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:279929;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.83999999999999996891375531049561686813831329345703125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:279929;s:10:\"size_after\";i:279929;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(9776,1667,'_wp_attached_file','2021/03/pv9365-1-1-scaled.jpg'),(9777,1667,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/03/pv9365-1-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.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:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:14:\"pv9365-1-1.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:620;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:{}}s:14:\"original_image\";s:14:\"pv9365-1-1.jpg\";}'),(9778,1667,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.956843035180959144980761266197077929973602294921875;s:5:\"bytes\";i:408040;s:11:\"size_before\";i:42644403;s:10:\"size_after\";i:42236363;s:4:\"time\";d:27.3599999999999994315658113919198513031005859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:408040;s:11:\"size_before\";i:3656991;s:10:\"size_after\";i:3248951;s:4:\"time\";d:0.88000000000000000444089209850062616169452667236328125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:4.86000000000000031974423109204508364200592041015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.20999999999999996447286321199499070644378662109375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:2.45000000000000017763568394002504646778106689453125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.3200000000000000621724893790087662637233734130859375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.310000000000000053290705182007513940334320068359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:0.939999999999999946709294817992486059665679931640625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:0.95999999999999996447286321199499070644378662109375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:5.92999999999999971578290569595992565155029296875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:2.5800000000000000710542735760100185871124267578125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:2.979999999999999982236431605997495353221893310546875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.0900000000000000799360577730112709105014801025390625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:0.84999999999999997779553950749686919152736663818359375;}}}'),(9784,1672,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:31:\"2021/03/pv9365-1-1-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.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:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:16:\"pv9365-1-1-1.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:620;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:{}}s:14:\"original_image\";s:16:\"pv9365-1-1-1.jpg\";}'),(9783,1672,'_wp_attached_file','2021/03/pv9365-1-1-1-scaled.jpg'),(9785,1672,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.956843035180959144980761266197077929973602294921875;s:5:\"bytes\";i:408040;s:11:\"size_before\";i:42644403;s:10:\"size_after\";i:42236363;s:4:\"time\";d:23.910000000000000142108547152020037174224853515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:408040;s:11:\"size_before\";i:3656991;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.0500000000000000444089209850062616169452667236328125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:0.89000000000000001332267629550187848508358001708984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:4.589999999999999857891452847979962825775146484375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.8000000000000000444089209850062616169452667236328125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.75;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.6699999999999999289457264239899814128875732421875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:0.81999999999999995115018691649311222136020660400390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:3.649999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.62000000000000010658141036401502788066864013671875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:1.70999999999999996447286321199499070644378662109375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:0.9899999999999999911182158029987476766109466552734375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:2.520000000000000017763568394002504646778106689453125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3248951;s:10:\"size_after\";i:3248951;s:4:\"time\";d:0.84999999999999997779553950749686919152736663818359375;}}}'),(9789,1674,'_wp_attached_file','2021/03/20210312_154539-1-1-scaled.jpg'),(9790,1674,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2021/03/20210312_154539-1-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"20210312_154539-1-1.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"SM-G960U1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615563938\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.92\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0084033613445378\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"20210312_154539-1-1.jpg\";}'),(9791,1674,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.7149828675082254836326001168345101177692413330078125;s:5:\"bytes\";i:118051;s:11:\"size_before\";i:16511025;s:10:\"size_after\";i:16392974;s:4:\"time\";d:13.980000000000000426325641456060111522674560546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:118051;s:11:\"size_before\";i:1379049;s:10:\"size_after\";i:1260998;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:1.1799999999999999378275106209912337362766265869140625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:5.71999999999999975131004248396493494510650634765625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:1.0500000000000000444089209850062616169452667236328125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:2.2400000000000002131628207280300557613372802734375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:0.7600000000000000088817841970012523233890533447265625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1260998;s:10:\"size_after\";i:1260998;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}}}'),(9882,1706,'_wp_attached_file','2021/03/julie-photo.jpg'),(9799,1677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9800,1677,'_edit_lock','1615760660:1'),(9801,1677,'_edit_last','1'),(9804,1677,'slide_template',''),(9803,1677,'fave_agent_visible','0'),(9805,1677,'rs_page_bg_color',''),(9806,1677,'fave_agent_company','Lantern Realty and Development'),(9807,1677,'fave_agent_email','12martiv@gmail.com'),(9808,1677,'fave_agent_position','Licensed Agent'),(9809,1677,'fave_agent_license','318492'),(9810,1677,'fave_agent_mobile','704-777-7245'),(9811,1677,'fave_agent_website','https://lantern-realty.com/'),(9812,1677,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9820,1677,'fave_agent_logo','28'),(9814,1677,'fave_agent_agencies','45'),(9815,1677,'_primary_term_agent_category','10'),(9816,1680,'_wp_attached_file','2021/03/Viviana_Martinez_Campos.jpg'),(9817,1680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:634;s:4:\"file\";s:35:\"2021/03/Viviana_Martinez_Campos.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Viviana_Martinez_Campos.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Viviana_Martinez_Campos.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"Viviana_Martinez_Campos.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:27:\"Viviana_Martinez_Campos.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"Viviana_Martinez_Campos.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:27:\"Viviana_Martinez_Campos.jpg\";s:5:\"width\";i:568;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"Viviana_Martinez_Campos.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Viviana_Martinez_Campos.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:524;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9818,1680,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.9568013150578964509662682758062146604061126708984375;s:5:\"bytes\";i:7916;s:11:\"size_before\";i:827340;s:10:\"size_after\";i:819424;s:4:\"time\";d:0.5900000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7916;s:11:\"size_before\";i:110344;s:10:\"size_after\";i:102428;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102428;s:10:\"size_after\";i:102428;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102428;s:10:\"size_after\";i:102428;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102428;s:10:\"size_after\";i:102428;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102428;s:10:\"size_after\";i:102428;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102428;s:10:\"size_after\";i:102428;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102428;s:10:\"size_after\";i:102428;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102428;s:10:\"size_after\";i:102428;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(9819,1677,'_thumbnail_id','1680'),(9877,1701,'_wp_attached_file','2021/03/WWREA-Disclosure-Form-July-2021.pdf'),(9823,1682,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9824,1682,'_edit_lock','1615760894:1'),(9825,1682,'_edit_last','1'),(9826,1682,'fave_agent_company','Lantern Realty and Development'),(9827,1682,'fave_agent_email','taina@tshawrealty.com'),(9828,1682,'fave_agent_visible','0'),(9829,1682,'fave_agent_position','Licensed Agent'),(9830,1682,'fave_agent_license','172196'),(9831,1682,'slide_template',''),(9832,1682,'rs_page_bg_color',''),(9833,1682,'fave_agent_mobile','704-467-0090'),(9834,1682,'fave_agent_website','https://lantern-realty.com/'),(9835,1682,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9843,1682,'fave_agent_logo','28'),(9837,1682,'fave_agent_agencies','45'),(9838,1682,'_primary_term_agent_category','7'),(9839,1684,'_wp_attached_file','2021/03/taina_shaw.jpg'),(9840,1684,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:750;s:4:\"file\";s:22:\"2021/03/taina_shaw.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"taina_shaw.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"taina_shaw.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:14:\"taina_shaw.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:14:\"taina_shaw.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:14:\"taina_shaw.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:14:\"taina_shaw.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:14:\"taina_shaw.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:14:\"taina_shaw.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9841,1684,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.91832839032059687678355430762167088687419891357421875;s:5:\"bytes\";i:9766;s:11:\"size_before\";i:1063454;s:10:\"size_after\";i:1053688;s:4:\"time\";d:0.79000000000000014654943925052066333591938018798828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9766;s:11:\"size_before\";i:141477;s:10:\"size_after\";i:131711;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:131711;s:10:\"size_after\";i:131711;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:131711;s:10:\"size_after\";i:131711;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:131711;s:10:\"size_after\";i:131711;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:131711;s:10:\"size_after\";i:131711;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:131711;s:10:\"size_after\";i:131711;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:131711;s:10:\"size_after\";i:131711;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:131711;s:10:\"size_after\";i:131711;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(9842,1682,'_thumbnail_id','1684'),(9844,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9845,1685,'_edit_lock','1656033428:1'),(9846,1685,'_edit_last','1'),(9847,1685,'fave_agent_company','Lantern Realty and Development'),(9848,1685,'fave_agent_email','realtor.wendell.rummage@gmail.com'),(9849,1685,'fave_agent_visible','0'),(9850,1685,'fave_agent_position','Licensed Agent'),(9851,1685,'fave_agent_website','https://lantern-realty.com/'),(15077,1405,'_wp_page_template','default'),(9853,1685,'rs_page_bg_color',''),(9854,1685,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(15076,1685,'fave_agent_logo','28'),(9856,1685,'fave_agent_agencies','45'),(9857,1685,'_primary_term_agent_category','7'),(9858,1687,'_wp_attached_file','2021/03/wendell_rummage.jpg'),(9859,1687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:480;s:4:\"file\";s:27:\"2021/03/wendell_rummage.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"wendell_rummage.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"wendell_rummage.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:19:\"wendell_rummage.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:19:\"wendell_rummage.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"wendell_rummage.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:19:\"wendell_rummage.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(9860,1687,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.8293292690523552668224738226854242384433746337890625;s:5:\"bytes\";i:1997;s:11:\"size_before\";i:240797;s:10:\"size_after\";i:238800;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1997;s:11:\"size_before\";i:41797;s:10:\"size_after\";i:39800;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39800;s:10:\"size_after\";i:39800;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39800;s:10:\"size_after\";i:39800;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39800;s:10:\"size_after\";i:39800;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39800;s:10:\"size_after\";i:39800;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39800;s:10:\"size_after\";i:39800;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}}}'),(9861,1685,'_thumbnail_id','1687'),(9863,1691,'_wp_attached_file','2021/03/Micheal-Farlow-pic.jpg'),(9864,1691,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:488;s:6:\"height\";i:511;s:4:\"file\";s:30:\"2021/03/Micheal-Farlow-pic.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Micheal-Farlow-pic.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Micheal-Farlow-pic.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:22:\"Micheal-Farlow-pic.jpg\";s:5:\"width\";i:488;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:22:\"Micheal-Farlow-pic.jpg\";s:5:\"width\";i:488;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"Micheal-Farlow-pic.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1502807876\";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:{}}}'),(9865,1691,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.87772941472714849364678002530126832425594329833984375;s:5:\"bytes\";i:1464;s:11:\"size_before\";i:166794;s:10:\"size_after\";i:165330;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1464;s:11:\"size_before\";i:34530;s:10:\"size_after\";i:33066;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33066;s:10:\"size_after\";i:33066;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33066;s:10:\"size_after\";i:33066;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33066;s:10:\"size_after\";i:33066;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33066;s:10:\"size_after\";i:33066;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(9874,1695,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.8036898411482125137439425088814459741115570068359375;s:5:\"bytes\";i:106353;s:11:\"size_before\";i:13233090;s:10:\"size_after\";i:13126737;s:4:\"time\";d:9.949999999999999289457264239899814128875732421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:106353;s:11:\"size_before\";i:1116102;s:10:\"size_after\";i:1009749;s:4:\"time\";d:0.70999999999999996447286321199499070644378662109375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:2.5099999999999997868371792719699442386627197265625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:0.7600000000000000088817841970012523233890533447265625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:1.520000000000000017763568394002504646778106689453125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1009749;s:10:\"size_after\";i:1009749;s:4:\"time\";d:1.399999999999999911182158029987476766109466552734375;}}}'),(9872,1695,'_wp_attached_file','2021/03/D4K7830-2-scaled.jpg'),(9873,1695,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2134;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2021/03/D4K7830-2-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.jpg\";s:5:\"width\";i:854;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.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:13:\"D4K7830-2.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:921;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.jpg\";s:5:\"width\";i:1281;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.jpg\";s:5:\"width\";i:1707;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:13:\"D4K7830-2.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:595;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"NIKON D4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1614955605\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"D4K7830-2.jpg\";}'),(9869,1693,'_wp_attached_file','2021/03/Lawing_10_MLS.jpg'),(9870,1693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:571;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2021/03/Lawing_10_MLS.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Lawing_10_MLS.jpg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Lawing_10_MLS.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:17:\"Lawing_10_MLS.jpg\";s:5:\"width\";i:571;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:17:\"Lawing_10_MLS.jpg\";s:5:\"width\";i:571;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:17:\"Lawing_10_MLS.jpg\";s:5:\"width\";i:571;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:17:\"Lawing_10_MLS.jpg\";s:5:\"width\";i:571;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:17:\"Lawing_10_MLS.jpg\";s:5:\"width\";i:428;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:17:\"Lawing_10_MLS.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"Lawing_10_MLS.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1445867239\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9871,1693,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.695298421251224763039999743341468274593353271484375;s:5:\"bytes\";i:25501;s:11:\"size_before\";i:946129;s:10:\"size_after\";i:920628;s:4:\"time\";d:0.9200000000000001509903313490212894976139068603515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:25501;s:11:\"size_before\";i:127793;s:10:\"size_after\";i:102292;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102292;s:10:\"size_after\";i:102292;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102292;s:10:\"size_after\";i:102292;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102292;s:10:\"size_after\";i:102292;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102292;s:10:\"size_after\";i:102292;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102292;s:10:\"size_after\";i:102292;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102292;s:10:\"size_after\";i:102292;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102292;s:10:\"size_after\";i:102292;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102292;s:10:\"size_after\";i:102292;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(9883,1706,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:140;s:4:\"file\";s:23:\"2021/03/julie-photo.jpg\";s:5:\"sizes\";a:1:{s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:15:\"julie-photo.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(9884,1706,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6482;s:10:\"size_after\";i:6482;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6482;s:10:\"size_after\";i:6482;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(9885,1708,'_wp_attached_file','2021/03/LRD-Roster_032521.xlsx'),(9886,1709,'_wp_attached_file','2021/03/2021-Educational-Calendar.xlsx'),(9889,1711,'_wp_attached_file','2021/04/lanternloves-vector-file.svg'),(9890,1712,'_wp_attached_file','2021/04/lantenloves-transparent.png'),(9891,1712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2872;s:6:\"height\";i:1548;s:4:\"file\";s:35:\"2021/04/lantenloves-transparent.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:1024;s:6:\"height\";i:552;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:768;s:6:\"height\";i:414;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:1536;s:6:\"height\";i:828;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1104;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:1113;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"lantenloves-transparent.png\";s:5:\"width\";i:496;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9892,1712,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.9318433281699489700855565388337709009647369384765625;s:5:\"bytes\";i:26190;s:11:\"size_before\";i:1355700;s:10:\"size_after\";i:1329510;s:4:\"time\";d:31.17999999999999971578290569595992565155029296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:26190;s:11:\"size_before\";i:128460;s:10:\"size_after\";i:102270;s:4:\"time\";d:1.1799999999999999378275106209912337362766265869140625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:5.55999999999999960920149533194489777088165283203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:0.9899999999999999911182158029987476766109466552734375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:1.1799999999999999378275106209912337362766265869140625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:1.4299999999999999378275106209912337362766265869140625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:1.12000000000000010658141036401502788066864013671875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:3.589999999999999857891452847979962825775146484375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:1.5800000000000000710542735760100185871124267578125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:2.54000000000000003552713678800500929355621337890625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:2.910000000000000142108547152020037174224853515625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:3.9900000000000002131628207280300557613372802734375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:2.410000000000000142108547152020037174224853515625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:102270;s:10:\"size_after\";i:102270;s:4:\"time\";d:2.70000000000000017763568394002504646778106689453125;}}}'),(9893,1713,'_wp_attached_file','2021/04/Lanternloves-high-resolution-scaled.jpg'),(9894,1713,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1811;s:4:\"file\";s:47:\"2021/04/Lanternloves-high-resolution-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1087;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:848;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:32:\"Lanternloves-high-resolution.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"conecells\";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:{}}s:14:\"original_image\";s:32:\"Lanternloves-high-resolution.jpg\";}'),(9895,1713,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.591948172321987708954793561133556067943572998046875;s:5:\"bytes\";i:129668;s:11:\"size_before\";i:3609963;s:10:\"size_after\";i:3480295;s:4:\"time\";d:5.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.63000000000000255795384873636066913604736328125;s:5:\"bytes\";i:129668;s:11:\"size_before\";i:397383;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.5100000000000000088817841970012523233890533447265625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.93000000000000004884981308350688777863979339599609375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267715;s:10:\"size_after\";i:267715;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(9896,1714,'_wp_attached_file','2021/04/2021-Educational-Calendar.xlsx'),(9897,1715,'_wp_attached_file','2021/04/LRD-Roster_032521.xlsx'),(9900,1716,'_wp_attached_file','2021/04/78246493_2614369991981131_3987109451881512960_o.jpg'),(9901,1716,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:140;s:4:\"file\";s:59:\"2021/04/78246493_2614369991981131_3987109451881512960_o.jpg\";s:5:\"sizes\";a:1:{s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:51:\"78246493_2614369991981131_3987109451881512960_o.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(9902,1716,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6482;s:10:\"size_after\";i:6482;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6482;s:10:\"size_after\";i:6482;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(9903,1718,'_wp_attached_file','2021/04/NCREC-Bulletins-–-The-Pitfalls-of-Using-Escalation-Clauses.pdf'),(9906,1720,'_wp_attached_file','2021/04/166761760_482265923125422_5525175317584077461_n.jpg'),(9907,1720,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1747;s:6:\"height\";i:2534;s:4:\"file\";s:59:\"2021/04/166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:706;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.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:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:1412;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:414;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:51:\"166761760_482265923125422_5525175317584077461_n.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:719;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:{}}}'),(9908,1720,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.0038259965508551283495941586210165041848085820674896240234375;s:5:\"bytes\";i:213;s:11:\"size_before\";i:5567177;s:10:\"size_after\";i:5566964;s:4:\"time\";d:4.46000000000000085265128291212022304534912109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.05000000000000000277555756156289135105907917022705078125;s:5:\"bytes\";i:213;s:11:\"size_before\";i:428441;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.25;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.25;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.68000000000000004884981308350688777863979339599609375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:428228;s:10:\"size_after\";i:428228;s:4:\"time\";d:0.25;}}}'),(9911,1723,'_wp_attached_file','2021/04/Micheal-Farlow-pic.jpg'),(9912,1723,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:488;s:6:\"height\";i:511;s:4:\"file\";s:30:\"2021/04/Micheal-Farlow-pic.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Micheal-Farlow-pic.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Micheal-Farlow-pic.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:22:\"Micheal-Farlow-pic.jpg\";s:5:\"width\";i:488;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:22:\"Micheal-Farlow-pic.jpg\";s:5:\"width\";i:488;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"Micheal-Farlow-pic.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1502807876\";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:{}}}'),(9913,1723,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.87772941472714849364678002530126832425594329833984375;s:5:\"bytes\";i:1464;s:11:\"size_before\";i:166794;s:10:\"size_after\";i:165330;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1464;s:11:\"size_before\";i:34530;s:10:\"size_after\";i:33066;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33066;s:10:\"size_after\";i:33066;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33066;s:10:\"size_after\";i:33066;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33066;s:10:\"size_after\";i:33066;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33066;s:10:\"size_after\";i:33066;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(9914,1725,'_wp_attached_file','2021/04/2021-Educational-Calendar-1.xlsx'),(9915,1726,'_wp_attached_file','2021/04/LRD-Roster_041021.xlsx'),(10810,1856,'_wp_attached_file','2021/05/2021-LRD-Mentoring-Program-Guidelines.pdf'),(10837,1877,'_wp_attached_file','2021/06/LRD-Roster_052721.xlsx'),(9928,1732,'_wp_page_template','template/template-onepage.php'),(9929,1732,'_elementor_edit_mode','builder'),(9930,1732,'_elementor_template_type','wp-page'),(9931,1732,'_elementor_version','3.0.11'),(9932,1732,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9933,1732,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"10\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9935,1733,'_wp_page_template','template/template-onepage.php'),(9936,1733,'_elementor_edit_mode','builder'),(9937,1733,'_elementor_template_type','wp-page'),(9938,1733,'_elementor_version','3.0.11'),(9939,1733,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9940,1733,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"30\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9952,1735,'_wp_page_template','template/template-onepage.php'),(9953,1735,'_elementor_edit_mode','builder'),(9954,1735,'_elementor_template_type','wp-page'),(9955,1735,'_elementor_version','3.1.1'),(9956,1735,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9957,1735,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"30\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9986,1740,'_wp_page_template','template/template-onepage.php'),(9964,1737,'_wp_page_template','template/template-onepage.php'),(9965,1737,'_elementor_edit_mode','builder'),(9966,1737,'_elementor_template_type','wp-page'),(9967,1737,'_elementor_version','3.1.1'),(9968,1737,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9969,1737,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"30\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ba54a26\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(9987,1740,'_elementor_edit_mode','builder'),(9988,1740,'_elementor_template_type','wp-page'),(9958,1736,'_wp_page_template','template/template-onepage.php'),(9959,1736,'_elementor_edit_mode','builder'),(9960,1736,'_elementor_template_type','wp-page'),(9961,1736,'_elementor_version','3.1.1'),(9962,1736,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9963,1736,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"30\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9972,1738,'_wp_page_template','template/template-onepage.php'),(9973,1738,'_elementor_edit_mode','builder'),(9974,1738,'_elementor_template_type','wp-page'),(9975,1738,'_elementor_version','3.1.1'),(9976,1738,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9977,1738,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"30\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ba54a26\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(9993,1217,'_elementor_controls_usage','a:7:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:4:\"size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:22:\"wp-widget-sticky-posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(9979,1739,'_wp_page_template','template/template-onepage.php'),(9980,1739,'_elementor_edit_mode','builder'),(9981,1739,'_elementor_template_type','wp-page'),(9982,1739,'_elementor_version','3.1.1'),(9983,1739,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9984,1739,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"30\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ba54a26\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(9989,1740,'_elementor_version','3.1.1'),(9990,1740,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9991,1740,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"30\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9994,1741,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10282,1771,'_elementor_edit_mode','builder'),(10283,1771,'_elementor_template_type','wp-page'),(10284,1771,'_elementor_version','3.1.1'),(10285,1771,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10286,1771,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10071,1746,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:11:\"header_size\";i:1;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(9996,1741,'fave_properties_min_baths','0'),(9997,1741,'fave_agency_orderby','None'),(9998,1741,'fave_agency_order','ASC'),(9999,1741,'fave_agent_orderby','None'),(10000,1741,'fave_agent_order','ASC'),(10001,1741,'fave_header_type','none'),(10002,1741,'fave_page_header_image_opacity','0.35'),(10003,1741,'fave_page_header_search','0'),(10004,1741,'fave_header_full_screen','0'),(10005,1741,'fave_adv_search_enable','global'),(10006,1741,'fave_adv_search','hide'),(10007,1741,'fave_adv_search_pos','under_menu'),(10008,1741,'fave_page_title','show'),(10009,1741,'fave_page_breadcrumb','show'),(10010,1741,'fave_page_sidebar','right_sidebar'),(10011,1741,'fave_page_background','yes'),(10012,1741,'fave_main_menu_trans','no'),(10013,1741,'_genesis_noindex','1'),(10014,1741,'_genesis_nofollow','1'),(10015,1741,'_genesis_noarchive','1'),(10039,1742,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:11:\"header_size\";i:1;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(10017,1741,'slide_template','default'),(10018,1741,'rs_page_bg_color','#ffffff'),(10019,1741,'passster_activate_protection','true'),(10020,1741,'passster_protection_type','password'),(10021,1741,'passster_password','lantern704'),(10022,1741,'_wpb_vc_js_status','false'),(10023,1741,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(10024,1741,'_elementor_edit_mode','builder'),(10025,1741,'_elementor_template_type','wp-page'),(10026,1741,'_elementor_version','3.1.1'),(10027,1741,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10028,1741,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\"  width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10063,1745,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:11:\"header_size\";i:1;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(10029,1741,'fave_properties_min_beds','0'),(10030,1741,'fave_listings_tabs','disable'),(10031,1741,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10032,1741,'_edit_lock','1618609619:1'),(10033,1741,'_wp_page_template','template/template-onepage.php'),(10034,1741,'_edit_last','1'),(10035,1741,'fave_listing_page_content_area','0'),(10036,1741,'fave_prop_no','9'),(10037,1741,'fave_properties_sort','d_date'),(10040,1742,'_elementor_edit_mode','builder'),(10041,1742,'_elementor_template_type','wp-page'),(10042,1742,'_elementor_version','3.0.11'),(10043,1742,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10044,1742,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10045,1742,'_wp_page_template','template/template-onepage.php'),(10047,1743,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:11:\"header_size\";i:1;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(10048,1743,'_elementor_edit_mode','builder'),(10049,1743,'_elementor_template_type','wp-page'),(10050,1743,'_elementor_version','3.0.11'),(10051,1743,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10052,1743,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10053,1743,'_wp_page_template','template/template-onepage.php'),(10055,1744,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:11:\"header_size\";i:1;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(10056,1744,'_elementor_edit_mode','builder'),(10057,1744,'_elementor_template_type','wp-page'),(10058,1744,'_elementor_version','3.0.11'),(10059,1744,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10060,1744,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10061,1744,'_wp_page_template','template/template-onepage.php'),(10064,1745,'_elementor_edit_mode','builder'),(10065,1745,'_elementor_template_type','wp-page'),(10066,1745,'_elementor_version','3.0.11'),(10067,1745,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10068,1745,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10069,1745,'_wp_page_template','template/template-onepage.php'),(10072,1746,'_elementor_edit_mode','builder'),(10073,1746,'_elementor_template_type','wp-page'),(10074,1746,'_elementor_version','3.1.1'),(10075,1746,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10076,1746,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10077,1746,'_wp_page_template','template/template-onepage.php'),(10104,1750,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10101,1750,'_elementor_template_type','wp-page'),(10102,1750,'_elementor_version','3.0.11'),(10103,1750,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-certificate\",\"title\":\"Training Links\",\"text\":\"Links to Lantern published training videos and materials.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-training-links\\/\"},\"_id\":\"38d3048\"}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"70d7f95\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1241\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10099,1750,'_wp_page_template','template/template-onepage.php'),(10100,1750,'_elementor_edit_mode','builder'),(10092,1748,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10093,1749,'_wp_page_template','template/template-onepage.php'),(10094,1749,'_elementor_edit_mode','builder'),(10095,1749,'_elementor_template_type','wp-page'),(10096,1749,'_elementor_version','3.0.11'),(10097,1749,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"70d7f95\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1241\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10098,1749,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10115,1752,'_wp_page_template','template/template-onepage.php'),(10116,1752,'_elementor_edit_mode','builder'),(10117,1752,'_elementor_template_type','wp-page'),(10118,1752,'_elementor_version','3.1.1'),(10119,1752,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-certificate\",\"title\":\"Training Links\",\"text\":\"Links to Lantern published training videos and materials.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-training-links\\/\"},\"_id\":\"38d3048\"}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"70d7f95\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1241\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10132,1754,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10133,882,'_elementor_controls_usage','a:10:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;s:5:\"align\";i:3;s:4:\"size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:25:\"houzez_elementor_icon_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:10:\"icon_boxes\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_iconbox_style\";a:4:{s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:15:\"title_spacing_a\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:7;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:13:\"selected_icon\";i:2;}}}}s:22:\"wp-widget-sticky-posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}}'),(10130,1754,'_elementor_version','3.1.1'),(10131,1754,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-graduation-cap\",\"title\":\"Training Links\",\"text\":\"Links to Lantern published training videos and materials.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-training-links\\/\"},\"_id\":\"38d3048\"}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"70d7f95\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1241\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10127,1754,'_wp_page_template','template/template-onepage.php'),(10128,1754,'_elementor_edit_mode','builder'),(10129,1754,'_elementor_template_type','wp-page'),(10120,1752,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10121,1753,'_wp_page_template','template/template-onepage.php'),(10122,1753,'_elementor_edit_mode','builder'),(10123,1753,'_elementor_template_type','wp-page'),(10124,1753,'_elementor_version','3.1.1'),(10125,1753,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-certificate\",\"title\":\"Training Links\",\"text\":\"Links to Lantern published training videos and materials.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-training-links\\/\"},\"_id\":\"38d3048\"}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"70d7f95\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1241\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10126,1753,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10135,1755,'_wp_attached_file','2021/04/FA82C85D-87DA-450A-9BD2-2CEA67650DDA-scaled.jpeg'),(10136,1755,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2021/04/FA82C85D-87DA-450A-9BD2-2CEA67650DDA-scaled.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:661;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:{}}s:14:\"original_image\";s:41:\"FA82C85D-87DA-450A-9BD2-2CEA67650DDA.jpeg\";}'),(10137,1755,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.5989025403985082096625092162867076694965362548828125;s:5:\"bytes\";i:102955;s:11:\"size_before\";i:17190610;s:10:\"size_after\";i:17087655;s:4:\"time\";d:7.20999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:102955;s:11:\"size_before\";i:1417390;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.65000000000000002220446049250313080847263336181640625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.5100000000000000088817841970012523233890533447265625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.61999999999999999555910790149937383830547332763671875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:1.1599999999999999200639422269887290894985198974609375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1314435;s:10:\"size_after\";i:1314435;s:4:\"time\";d:0.5;}}}'),(10141,1757,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10216,1762,'_elementor_edit_mode','builder'),(10217,1762,'_elementor_template_type','wp-page'),(10218,1762,'_elementor_version','3.1.1'),(10219,1762,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10220,1762,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f10b9c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"bfaf9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"be5cb05\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10143,1757,'fave_properties_min_baths','0'),(10144,1757,'fave_agency_orderby','None'),(10145,1757,'fave_agency_order','ASC'),(10146,1757,'fave_agent_orderby','None'),(10147,1757,'fave_agent_order','ASC'),(10148,1757,'fave_header_type','none'),(10149,1757,'fave_page_header_image_opacity','0.35'),(10150,1757,'fave_page_header_search','0'),(10151,1757,'fave_header_full_screen','0'),(10152,1757,'fave_adv_search_enable','global'),(10153,1757,'fave_adv_search','hide'),(10154,1757,'fave_adv_search_pos','under_menu'),(10155,1757,'fave_page_title','show'),(10156,1757,'fave_page_breadcrumb','show'),(10157,1757,'fave_page_sidebar','right_sidebar'),(10158,1757,'fave_page_background','yes'),(10159,1757,'fave_main_menu_trans','no'),(10160,1757,'_genesis_noindex','1'),(10161,1757,'_genesis_nofollow','1'),(10162,1757,'_genesis_noarchive','1'),(11011,1914,'_elementor_edit_mode','builder'),(10165,1757,'rs_page_bg_color',''),(10166,1757,'passster_activate_protection','true'),(10167,1757,'passster_protection_type','password'),(10168,1757,'passster_password','lantern704'),(10169,1757,'_wpb_vc_js_status','false'),(10170,1757,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(10171,1757,'_elementor_edit_mode','builder'),(10172,1757,'_elementor_template_type','wp-page'),(10173,1757,'_elementor_version','3.1.1'),(10174,1757,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10175,1757,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\" datatables_page_length=\\\"150\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10176,1757,'fave_properties_min_beds','0'),(10177,1757,'fave_listings_tabs','disable'),(10178,1757,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10179,1757,'_edit_lock','1623202121:1'),(10180,1757,'_wp_page_template','template/template-onepage.php'),(10181,1757,'_edit_last','1'),(10182,1757,'fave_listing_page_content_area','0'),(10183,1757,'fave_prop_no','9'),(10184,1757,'fave_properties_sort','d_date'),(10186,1758,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:11:\"header_size\";i:1;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(10252,1767,'_elementor_version','3.1.1'),(10253,1767,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10187,1758,'_elementor_edit_mode','builder'),(10188,1758,'_elementor_template_type','wp-page'),(10189,1758,'_elementor_version','3.1.1'),(10190,1758,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10191,1758,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f10b9c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"bfaf9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"be5cb05\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10192,1758,'_wp_page_template','template/template-onepage.php'),(10193,1759,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:11:\"header_size\";i:1;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(10194,1759,'_elementor_edit_mode','builder'),(10195,1759,'_elementor_template_type','wp-page'),(10196,1759,'_elementor_version','3.1.1'),(10197,1759,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10198,1759,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f10b9c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"bfaf9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"be5cb05\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10199,1759,'_wp_page_template','template/template-onepage.php'),(10250,1767,'_elementor_edit_mode','builder'),(10251,1767,'_elementor_template_type','wp-page'),(10200,1760,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:11:\"header_size\";i:1;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(10201,1760,'_elementor_edit_mode','builder'),(10202,1760,'_elementor_template_type','wp-page'),(10203,1760,'_elementor_version','3.1.1'),(10204,1760,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10205,1760,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f10b9c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"bfaf9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"be5cb05\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10206,1760,'_wp_page_template','template/template-onepage.php'),(10236,1765,'_elementor_edit_mode','builder'),(10237,1765,'_elementor_template_type','wp-page'),(10238,1765,'_elementor_version','3.1.1'),(10239,1765,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10240,1765,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f10b9c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"bfaf9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"be5cb05\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10233,1764,'_wp_page_template','template/template-onepage.php'),(10232,1764,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f10b9c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"bfaf9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"be5cb05\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10231,1764,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10228,1764,'_elementor_edit_mode','builder'),(10229,1764,'_elementor_template_type','wp-page'),(10230,1764,'_elementor_version','3.1.1'),(10221,1762,'_wp_page_template','template/template-onepage.php'),(10222,1763,'_elementor_edit_mode','builder'),(10223,1763,'_elementor_template_type','wp-page'),(10224,1763,'_elementor_version','3.1.1'),(10225,1763,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10226,1763,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f10b9c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"bfaf9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"be5cb05\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10227,1763,'_wp_page_template','template/template-onepage.php'),(10241,1765,'_wp_page_template','template/template-onepage.php'),(10243,1766,'_elementor_edit_mode','builder'),(10244,1766,'_elementor_template_type','wp-page'),(10245,1766,'_elementor_version','3.1.1'),(10246,1766,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10247,1766,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f10b9c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"bfaf9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"be5cb05\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10248,1766,'_wp_page_template','template/template-onepage.php'),(10836,1875,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2874952;s:10:\"size_after\";i:2874952;s:4:\"time\";d:4.9900000000000002131628207280300557613372802734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:88257;s:10:\"size_after\";i:88257;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:677265;s:10:\"size_after\";i:677265;s:4:\"time\";d:0.91000000000000003108624468950438313186168670654296875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:35304;s:10:\"size_after\";i:35304;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:493379;s:10:\"size_after\";i:493379;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:262816;s:10:\"size_after\";i:262816;s:4:\"time\";d:0.5;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:334915;s:10:\"size_after\";i:334915;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:254681;s:10:\"size_after\";i:254681;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:285558;s:10:\"size_after\";i:285558;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17715;s:10:\"size_after\";i:17715;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:425062;s:10:\"size_after\";i:425062;s:4:\"time\";d:1.4899999999999999911182158029987476766109466552734375;}}}'),(10254,1767,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10255,1767,'_wp_page_template','template/template-onepage.php'),(10259,1768,'_elementor_edit_mode','builder'),(10260,1768,'_elementor_template_type','wp-page'),(10261,1768,'_elementor_version','3.1.1'),(10262,1768,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10263,1768,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10264,1768,'_wp_page_template','template/template-onepage.php'),(10266,1769,'_elementor_edit_mode','builder'),(10267,1769,'_elementor_template_type','wp-page'),(10268,1769,'_elementor_version','3.1.1'),(10269,1769,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10270,1769,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10271,1769,'_wp_page_template','template/template-onepage.php'),(10273,1770,'_elementor_edit_mode','builder'),(10274,1770,'_elementor_template_type','wp-page'),(10275,1770,'_elementor_version','3.1.1'),(10276,1770,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10277,1770,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10278,1770,'_wp_page_template','template/template-onepage.php'),(10305,1774,'_elementor_edit_mode','builder'),(10306,1774,'_elementor_template_type','wp-page'),(10307,1774,'_elementor_version','3.1.1'),(10308,1774,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10309,1774,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10287,1771,'_wp_page_template','template/template-onepage.php'),(10289,1772,'_elementor_edit_mode','builder'),(10290,1772,'_elementor_template_type','wp-page'),(10291,1772,'_elementor_version','3.1.1'),(10292,1772,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10293,1772,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10294,1772,'_wp_page_template','template/template-onepage.php'),(10296,1773,'_elementor_edit_mode','builder'),(10297,1773,'_elementor_template_type','wp-page'),(10298,1773,'_elementor_version','3.1.1'),(10299,1773,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10300,1773,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\" class=\\\"stripe hover\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10301,1773,'_wp_page_template','template/template-onepage.php'),(10351,1780,'_elementor_edit_mode','builder'),(10352,1780,'_elementor_template_type','wp-page'),(10353,1780,'_elementor_version','3.1.1'),(10354,1780,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10355,1780,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\" class=\\\"stripe hover\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10310,1774,'_wp_page_template','template/template-onepage.php'),(10312,1775,'_elementor_edit_mode','builder'),(10313,1775,'_elementor_template_type','wp-page'),(10314,1775,'_elementor_version','3.1.1'),(10315,1775,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10316,1775,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10317,1775,'_wp_page_template','template/template-onepage.php'),(10319,1776,'_elementor_edit_mode','builder'),(10320,1776,'_elementor_template_type','wp-page'),(10321,1776,'_elementor_version','3.1.1'),(10322,1776,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10323,1776,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"stripe hover compact\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10324,1776,'_wp_page_template','template/template-onepage.php'),(10328,1777,'_elementor_edit_mode','builder'),(10329,1777,'_elementor_template_type','wp-page'),(10330,1777,'_elementor_version','3.1.1'),(10331,1777,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10332,1777,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"stripe hover compact\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10333,1777,'_wp_page_template','template/template-onepage.php'),(10335,1778,'_elementor_edit_mode','builder'),(10336,1778,'_elementor_template_type','wp-page'),(10337,1778,'_elementor_version','3.1.1'),(10338,1778,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10339,1778,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"stripe hover compact\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10340,1778,'_wp_page_template','template/template-onepage.php'),(10835,1875,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:670;s:6:\"height\";i:1030;s:4:\"file\";s:49:\"2021/05/Screen-Shot-2021-05-07-at-11.35.58-AM.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-05-07-at-11.35.58-AM-195x300.png\";s:5:\"width\";i:195;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-05-07-at-11.35.58-AM-666x1024.png\";s:5:\"width\";i:666;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-05-07-at-11.35.58-AM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-05-07-at-11.35.58-AM-670x785.png\";s:5:\"width\";i:670;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-05-07-at-11.35.58-AM-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-05-07-at-11.35.58-AM-670x564.png\";s:5:\"width\";i:670;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-05-07-at-11.35.58-AM-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-05-07-at-11.35.58-AM-390x600.png\";s:5:\"width\";i:390;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-07-at-11.35.58-AM-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-05-07-at-11.35.58-AM-496x763.png\";s:5:\"width\";i:496;s:6:\"height\";i:763;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10342,1779,'_elementor_edit_mode','builder'),(10343,1779,'_elementor_template_type','wp-page'),(10344,1779,'_elementor_version','3.1.1'),(10345,1779,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10346,1779,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"stripe hover compact nowrap\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10347,1779,'_wp_page_template','template/template-onepage.php'),(10829,1873,'_wp_attached_file','2021/05/2021-Educational-Calendar-2.xlsx'),(10828,1872,'_wp_attached_file','2021/05/LRD-Roster_051421.xlsx'),(10383,1784,'_elementor_edit_mode','builder'),(10384,1784,'_elementor_template_type','wp-page'),(10385,1784,'_elementor_version','3.1.1'),(10386,1784,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10387,1784,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"stripe hover compact nowrap\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10356,1780,'_wp_page_template','template/template-onepage.php'),(10834,1875,'_wp_attached_file','2021/05/Screen-Shot-2021-05-07-at-11.35.58-AM.png'),(10358,1781,'_elementor_edit_mode','builder'),(10359,1781,'_elementor_template_type','wp-page'),(10360,1781,'_elementor_version','3.1.1'),(10361,1781,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10362,1781,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\" class=\\\"stripe hover\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10363,1781,'_wp_page_template','template/template-onepage.php'),(10813,1217,'_elementor_css','a:6:{s:4:\"time\";i:1620769577;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10365,1782,'_elementor_edit_mode','builder'),(10366,1782,'_elementor_template_type','wp-page'),(10367,1782,'_elementor_version','3.1.1'),(10368,1782,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10369,1782,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\" class=\\\"stripe hover compact nowrap\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10370,1782,'_wp_page_template','template/template-onepage.php'),(10807,753,'_elementor_css','a:7:{s:4:\"time\";i:1620517000;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(10452,1793,'_elementor_edit_mode','builder'),(10453,1793,'_elementor_template_type','wp-page'),(10454,1793,'_elementor_version','3.1.1'),(10455,1793,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10456,1793,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\" class=\\\"stripe hover compact nowrap\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10473,1741,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:11:\"header_size\";i:1;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(10407,1787,'_elementor_template_type','wp-page'),(10408,1787,'_elementor_version','3.1.1'),(10409,1787,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10402,1786,'_wp_page_template','template/template-onepage.php'),(10805,964,'_elementor_css','a:6:{s:4:\"time\";i:1620497077;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10410,1787,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap\\\" responsive=\\\"false\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10399,1786,'_elementor_version','3.1.1'),(10400,1786,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10401,1786,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap\\\" responsive=\\\"false\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10397,1786,'_elementor_edit_mode','builder'),(10398,1786,'_elementor_template_type','wp-page'),(10388,1784,'_wp_page_template','template/template-onepage.php'),(10806,996,'_elementor_css','a:6:{s:4:\"time\";i:1620497678;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10390,1785,'_elementor_edit_mode','builder'),(10391,1785,'_elementor_template_type','wp-page'),(10392,1785,'_elementor_version','3.1.1'),(10393,1785,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10394,1785,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"stripe hover compact nowrap\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10395,1785,'_wp_page_template','template/template-onepage.php'),(10406,1787,'_elementor_edit_mode','builder'),(10411,1787,'_wp_page_template','template/template-onepage.php'),(10413,1788,'_elementor_edit_mode','builder'),(10414,1788,'_elementor_template_type','wp-page'),(10415,1788,'_elementor_version','3.1.1'),(10416,1788,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10417,1788,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap\\\" responsive=\\\"false\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10418,1788,'_wp_page_template','template/template-onepage.php'),(10420,1789,'_elementor_edit_mode','builder'),(10421,1789,'_elementor_template_type','wp-page'),(10422,1789,'_elementor_version','3.1.1'),(10423,1789,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10424,1789,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap\\\" details=\\\"none\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10425,1789,'_wp_page_template','template/template-onepage.php'),(10429,1790,'_elementor_edit_mode','builder'),(10430,1790,'_elementor_template_type','wp-page'),(10431,1790,'_elementor_version','3.1.1'),(10432,1790,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10433,1790,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap\\\" details=\\\"none\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10434,1790,'_wp_page_template','template/template-onepage.php'),(10436,1791,'_elementor_edit_mode','builder'),(10437,1791,'_elementor_template_type','wp-page'),(10438,1791,'_elementor_version','3.1.1'),(10439,1791,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10440,1791,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap\\\" details=\\\"none\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10441,1791,'_wp_page_template','template/template-onepage.php'),(10443,1792,'_elementor_edit_mode','builder'),(10444,1792,'_elementor_template_type','wp-page'),(10445,1792,'_elementor_version','3.1.1'),(10446,1792,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10447,1792,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10448,1792,'_wp_page_template','template/template-onepage.php'),(10475,1796,'_elementor_edit_mode','builder'),(10476,1796,'_elementor_template_type','wp-page'),(10477,1796,'_elementor_version','3.1.1'),(10478,1796,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10479,1796,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10457,1793,'_wp_page_template','template/template-onepage.php'),(10459,1794,'_elementor_edit_mode','builder'),(10460,1794,'_elementor_template_type','wp-page'),(10461,1794,'_elementor_version','3.1.1'),(10462,1794,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10463,1794,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\" class=\\\"stripe hover compact nowrap\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10464,1794,'_wp_page_template','template/template-onepage.php'),(10466,1795,'_elementor_edit_mode','builder'),(10467,1795,'_elementor_template_type','wp-page'),(10468,1795,'_elementor_version','3.1.1'),(10469,1795,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10470,1795,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Training Materials\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Videos and Links\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Links to published training videos and materials.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc\\/edit?usp=sharing\\\"  width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10471,1795,'_wp_page_template','template/template-onepage.php'),(10804,1853,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.67721802173467915419990958980633877217769622802734375;s:5:\"bytes\";i:1786;s:11:\"size_before\";i:263726;s:10:\"size_after\";i:261940;s:4:\"time\";d:0.90000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1786;s:11:\"size_before\";i:39206;s:10:\"size_after\";i:37420;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37420;s:10:\"size_after\";i:37420;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37420;s:10:\"size_after\";i:37420;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37420;s:10:\"size_after\";i:37420;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37420;s:10:\"size_after\";i:37420;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37420;s:10:\"size_after\";i:37420;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37420;s:10:\"size_after\";i:37420;s:4:\"time\";d:0.5;}}}'),(10480,1796,'_wp_page_template','template/template-onepage.php'),(10482,1797,'_elementor_edit_mode','builder'),(10483,1797,'_elementor_template_type','wp-page'),(10484,1797,'_elementor_version','3.1.1'),(10485,1797,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10486,1797,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10487,1797,'_wp_page_template','template/template-onepage.php'),(10489,1798,'_elementor_edit_mode','builder'),(10490,1798,'_elementor_template_type','wp-page'),(10491,1798,'_elementor_version','3.1.1'),(10492,1798,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10493,1798,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10494,1798,'_wp_page_template','template/template-onepage.php'),(10498,1799,'_elementor_edit_mode','builder'),(10499,1799,'_elementor_template_type','wp-page'),(10500,1799,'_elementor_version','3.1.1'),(10501,1799,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10502,1799,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10503,1799,'_wp_page_template','template/template-onepage.php'),(10505,1800,'_elementor_edit_mode','builder'),(10506,1800,'_elementor_template_type','wp-page'),(10507,1800,'_elementor_version','3.1.1'),(10508,1800,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10509,1800,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10510,1800,'_wp_page_template','template/template-onepage.php'),(10512,1801,'_elementor_edit_mode','builder'),(10513,1801,'_elementor_template_type','wp-page'),(10514,1801,'_elementor_version','3.1.1'),(10515,1801,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10516,1801,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"select A,B WHERE A=Kannapolis\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10517,1801,'_wp_page_template','template/template-onepage.php'),(10520,1802,'_elementor_edit_mode','builder'),(10521,1802,'_elementor_template_type','wp-page'),(10522,1802,'_elementor_version','3.1.1'),(10523,1802,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10524,1802,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"select A,B WHERE A=Kannapolis\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10525,1802,'_wp_page_template','template/template-onepage.php'),(10526,1803,'_elementor_edit_mode','builder'),(10527,1803,'_elementor_template_type','wp-page'),(10528,1803,'_elementor_version','3.1.1'),(10529,1803,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10530,1803,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"select A,B WHERE A=Kannapolis\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10531,1803,'_wp_page_template','template/template-onepage.php'),(10532,1804,'_elementor_edit_mode','builder'),(10533,1804,'_elementor_template_type','wp-page'),(10534,1804,'_elementor_version','3.1.1'),(10535,1804,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10536,1804,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" gdoc_query=\\\"select A,B WHERE A=Kannapolis\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10537,1804,'_wp_page_template','template/template-onepage.php'),(10540,1805,'_elementor_edit_mode','builder'),(10541,1805,'_elementor_template_type','wp-page'),(10542,1805,'_elementor_version','3.1.1'),(10543,1805,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10544,1805,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" gdoc_query=\\\"select A,B WHERE A=Kannapolis\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10545,1805,'_wp_page_template','template/template-onepage.php'),(10547,1806,'_elementor_edit_mode','builder'),(10548,1806,'_elementor_template_type','wp-page'),(10549,1806,'_elementor_version','3.1.1'),(10550,1806,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10551,1806,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" gdoc_query=\\\"select A,B WHERE A=Kannapolis\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10552,1806,'_wp_page_template','template/template-onepage.php'),(10803,1853,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:408;s:6:\"height\";i:612;s:4:\"file\";s:31:\"2021/05/IMG_0830-edit-small.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"IMG_0830-edit-small.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"IMG_0830-edit-small.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"IMG_0830-edit-small.jpg\";s:5:\"width\";i:408;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"IMG_0830-edit-small.jpg\";s:5:\"width\";i:408;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"IMG_0830-edit-small.jpg\";s:5:\"width\";i:408;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"IMG_0830-edit-small.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"IMG_0830-edit-small.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1612552559\";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:{}}}'),(10554,1807,'_elementor_edit_mode','builder'),(10555,1807,'_elementor_template_type','wp-page'),(10556,1807,'_elementor_version','3.1.1'),(10557,1807,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10558,1807,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B WHERE A=Kannapolis\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10559,1807,'_wp_page_template','template/template-onepage.php'),(10802,1853,'_wp_attached_file','2021/05/IMG_0830-edit-small.jpg'),(10571,1809,'_elementor_edit_mode','builder'),(10572,1809,'_elementor_template_type','wp-page'),(10573,1809,'_elementor_version','3.1.1'),(10574,1809,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10575,1809,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B WHERE A=Kannapolis\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10592,1812,'_elementor_template_type','wp-page'),(10593,1812,'_elementor_version','3.1.1'),(10594,1812,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10588,1811,'_wp_page_template','template/template-onepage.php'),(10595,1812,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B WHERE A=\'Kannapolis\'\\\" header_rows=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10586,1811,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10587,1811,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B WHERE A=\'Kannapolis\'\\\" header_rows=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10583,1811,'_elementor_edit_mode','builder'),(10584,1811,'_elementor_template_type','wp-page'),(10585,1811,'_elementor_version','3.1.1'),(10576,1809,'_wp_page_template','template/template-onepage.php'),(10577,1810,'_elementor_edit_mode','builder'),(10578,1810,'_elementor_template_type','wp-page'),(10579,1810,'_elementor_version','3.1.1'),(10580,1810,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10581,1810,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B WHERE A=Kannapolis\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10582,1810,'_wp_page_template','template/template-onepage.php'),(10591,1812,'_elementor_edit_mode','builder'),(10596,1812,'_wp_page_template','template/template-onepage.php'),(10798,1852,'_wp_attached_file','2021/05/LRD-Roster_050621.xlsx'),(10801,916,'_elementor_css','a:6:{s:4:\"time\";i:1620495964;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10598,1813,'_elementor_edit_mode','builder'),(10599,1813,'_elementor_template_type','wp-page'),(10600,1813,'_elementor_version','3.1.1'),(10601,1813,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10602,1813,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B WHERE A=\'Kannapolis\'\\\" header_rows=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10603,1813,'_wp_page_template','template/template-onepage.php'),(10797,1851,'_wp_attached_file','2021/05/2021-Educational-Calendar-1.xlsx'),(10605,1814,'_elementor_edit_mode','builder'),(10606,1814,'_elementor_template_type','wp-page'),(10607,1814,'_elementor_version','3.1.1'),(10608,1814,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10609,1814,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B WHERE A=\'Kannapolis\'\\\" header_rows=\\\"2\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10610,1814,'_wp_page_template','template/template-onepage.php'),(10796,998,'_elementor_css','a:6:{s:4:\"time\";i:1620401133;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10614,1815,'_elementor_edit_mode','builder'),(10615,1815,'_elementor_template_type','wp-page'),(10616,1815,'_elementor_version','3.1.1'),(10617,1815,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10618,1815,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B WHERE A=\'Kannapolis\'\\\" header_rows=\\\"2\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10619,1815,'_wp_page_template','template/template-onepage.php'),(10795,1741,'_elementor_css','a:6:{s:4:\"time\";i:1620395083;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10621,1816,'_elementor_edit_mode','builder'),(10622,1816,'_elementor_template_type','wp-page'),(10623,1816,'_elementor_version','3.1.1'),(10624,1816,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10625,1816,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B WHERE A=\'Kannapolis\'\\\" header_rows=\\\"2\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10626,1816,'_wp_page_template','template/template-onepage.php'),(10794,1000,'_elementor_css','a:6:{s:4:\"time\";i:1620394727;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10628,1817,'_elementor_edit_mode','builder'),(10629,1817,'_elementor_template_type','wp-page'),(10630,1817,'_elementor_version','3.1.1'),(10631,1817,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10632,1817,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE A=\'Kannapolis\'\\\" header_rows=\\\"2\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10633,1817,'_wp_page_template','template/template-onepage.php'),(10784,1845,'_wp_attached_file','2021/05/2021-Educational-Calendar.xlsx'),(10785,1846,'_wp_attached_file','2021/05/LRD-Roster_042821.xlsx'),(10637,1818,'_elementor_edit_mode','builder'),(10638,1818,'_elementor_template_type','wp-page'),(10639,1818,'_elementor_version','3.1.1'),(10640,1818,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10641,1818,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE A=\'Kannapolis\'\\\" header_rows=\\\"2\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10642,1818,'_wp_page_template','template/template-onepage.php'),(11009,1175,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:11:\"header_size\";i:1;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(10644,1819,'_elementor_edit_mode','builder'),(10645,1819,'_elementor_template_type','wp-page'),(10646,1819,'_elementor_version','3.1.1'),(10647,1819,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10648,1819,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE A=\'Kannapolis\'\\\" header_rows=\\\"2\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10649,1819,'_wp_page_template','template/template-onepage.php'),(10651,1820,'_elementor_edit_mode','builder'),(10652,1820,'_elementor_template_type','wp-page'),(10653,1820,'_elementor_version','3.1.1'),(10654,1820,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10655,1820,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE A=\'Kannapolis\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10656,1820,'_wp_page_template','template/template-onepage.php'),(10782,1302,'_elementor_css','a:6:{s:4:\"time\";i:1619975212;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10660,1821,'_elementor_edit_mode','builder'),(10661,1821,'_elementor_template_type','wp-page'),(10662,1821,'_elementor_version','3.1.1'),(10663,1821,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10664,1821,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE A=\'Kannapolis\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10665,1821,'_wp_page_template','template/template-onepage.php'),(10781,1309,'_elementor_css','a:6:{s:4:\"time\";i:1619975206;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10667,1822,'_elementor_edit_mode','builder'),(10668,1822,'_elementor_template_type','wp-page'),(10669,1822,'_elementor_version','3.1.1'),(10670,1822,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10671,1822,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE A=\'Kannapolis\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10672,1822,'_wp_page_template','template/template-onepage.php'),(10674,1823,'_elementor_edit_mode','builder'),(10675,1823,'_elementor_template_type','wp-page'),(10676,1823,'_elementor_version','3.1.1'),(10677,1823,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10678,1823,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE A=\'Kannapolis\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10679,1823,'_wp_page_template','template/template-onepage.php'),(10780,1245,'_elementor_css','a:6:{s:4:\"time\";i:1619975198;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10683,1824,'_elementor_edit_mode','builder'),(10684,1824,'_elementor_template_type','wp-page'),(10685,1824,'_elementor_version','3.1.1'),(10686,1824,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10687,1824,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE A=\'Kannapolis\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10688,1824,'_wp_page_template','template/template-onepage.php'),(10779,1599,'_elementor_css','a:6:{s:4:\"time\";i:1619975185;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10690,1825,'_elementor_edit_mode','builder'),(10691,1825,'_elementor_template_type','wp-page'),(10692,1825,'_elementor_version','3.1.1'),(10693,1825,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10694,1825,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE A=\'Kannapolis\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT * WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10695,1825,'_wp_page_template','template/template-onepage.php'),(10697,1826,'_elementor_edit_mode','builder'),(10698,1826,'_elementor_template_type','wp-page'),(10699,1826,'_elementor_version','3.1.1'),(10700,1826,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10701,1826,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10702,1826,'_wp_page_template','template/template-onepage.php'),(10778,1305,'_elementor_css','a:6:{s:4:\"time\";i:1619953223;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10706,1827,'_elementor_edit_mode','builder'),(10707,1827,'_elementor_template_type','wp-page'),(10708,1827,'_elementor_version','3.1.1'),(10709,1827,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10710,1827,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10711,1827,'_wp_page_template','template/template-onepage.php'),(10777,1307,'_elementor_css','a:6:{s:4:\"time\";i:1619927798;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10713,1828,'_elementor_edit_mode','builder'),(10714,1828,'_elementor_template_type','wp-page'),(10715,1828,'_elementor_version','3.1.1'),(10716,1828,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10717,1828,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10718,1828,'_wp_page_template','template/template-onepage.php'),(10776,882,'_elementor_css','a:6:{s:4:\"time\";i:1619905533;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10720,1829,'_elementor_edit_mode','builder'),(10721,1829,'_elementor_template_type','wp-page'),(10722,1829,'_elementor_version','3.1.1'),(10723,1829,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10724,1829,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\" pageLength=\\\"150\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10725,1829,'_wp_page_template','template/template-onepage.php'),(10729,1830,'_elementor_edit_mode','builder'),(10730,1830,'_elementor_template_type','wp-page'),(10731,1830,'_elementor_version','3.1.1'),(10732,1830,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10733,1830,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\" pageLength=\\\"150\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10734,1830,'_wp_page_template','template/template-onepage.php'),(10775,1325,'_elementor_css','a:6:{s:4:\"time\";i:1619846104;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10736,1831,'_elementor_edit_mode','builder'),(10737,1831,'_elementor_template_type','wp-page'),(10738,1831,'_elementor_version','3.1.1'),(10739,1831,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10740,1831,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\" pageLength=\\\"150\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10741,1831,'_wp_page_template','template/template-onepage.php'),(12228,1279,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(10743,1832,'_elementor_edit_mode','builder'),(10744,1832,'_elementor_template_type','wp-page'),(10745,1832,'_elementor_version','3.1.1'),(10746,1832,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10747,1832,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\" datatables_page_length=\\\"150\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(10748,1832,'_wp_page_template','template/template-onepage.php'),(14954,101,'_elementor_css','a:6:{s:4:\"time\";i:1656030098;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(11012,1914,'_elementor_template_type','wp-page'),(11013,1914,'_elementor_version','3.1.1'),(11014,1914,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(11015,1914,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"64cf1d7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"635a435\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\" datatables_page_length=\\\"150\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14467,755,'_elementor_css','a:6:{s:4:\"time\";i:1651359758;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10752,1833,'_wp_attached_file','2021/04/78246493_2614369991981131_3987109451881512960_o-1.jpg'),(10753,1833,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:140;s:4:\"file\";s:61:\"2021/04/78246493_2614369991981131_3987109451881512960_o-1.jpg\";s:5:\"sizes\";a:1:{s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:53:\"78246493_2614369991981131_3987109451881512960_o-1.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(10754,1833,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6482;s:10:\"size_after\";i:6482;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6482;s:10:\"size_after\";i:6482;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(10755,1835,'_wp_attached_file','2021/04/LRD-Roster_041021-1.xlsx'),(10756,1836,'_wp_attached_file','2021/04/2021-Educational-Calendar-2.xlsx'),(10855,1885,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.5701341365667484950563448364846408367156982421875;s:5:\"bytes\";i:565612;s:11:\"size_before\";i:5351039;s:10:\"size_after\";i:4785427;s:4:\"time\";d:2.290000000000000479616346638067625463008880615234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:8877;s:11:\"size_before\";i:67925;s:10:\"size_after\";i:59048;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:60528;s:11:\"size_before\";i:517865;s:10:\"size_after\";i:457337;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:3440;s:11:\"size_before\";i:25234;s:10:\"size_after\";i:21794;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:457337;s:10:\"size_after\";i:457337;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:118070;s:11:\"size_before\";i:999444;s:10:\"size_after\";i:881374;s:4:\"time\";d:1.1100000000000000976996261670137755572795867919921875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:184442;s:11:\"size_before\";i:1586008;s:10:\"size_after\";i:1401566;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:58664;s:11:\"size_before\";i:539327;s:10:\"size_after\";i:480663;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:21637;s:11:\"size_before\";i:192631;s:10:\"size_after\";i:170994;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:32236;s:11:\"size_before\";i:291174;s:10:\"size_after\";i:258938;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:21036;s:11:\"size_before\";i:188591;s:10:\"size_after\";i:167555;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:25398;s:11:\"size_before\";i:217723;s:10:\"size_after\";i:192325;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1717;s:11:\"size_before\";i:13134;s:10:\"size_after\";i:11417;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:29567;s:11:\"size_before\";i:254646;s:10:\"size_after\";i:225079;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(11155,1963,'_wp_attached_file','2021/07/2021-Educational-Calendar.xlsx'),(11047,686,'_wp_old_date','2020-05-29'),(10858,1757,'_elementor_css','a:6:{s:4:\"time\";i:1623197680;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10861,1889,'_wp_attached_file','2021/02/Micheal-Farlow.jpg'),(10862,1889,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:449;s:4:\"file\";s:26:\"2021/02/Micheal-Farlow.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Micheal-Farlow-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:26:\"Micheal-Farlow-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Micheal-Farlow-449x444.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Micheal-Farlow-449x438.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Micheal-Farlow-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1623183740\";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\";}}'),(10863,1889,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.0562010657669045343709512962959706783294677734375;s:5:\"bytes\";i:25713;s:11:\"size_before\";i:283927;s:10:\"size_after\";i:258214;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:5495;s:11:\"size_before\";i:59510;s:10:\"size_after\";i:54015;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1854;s:11:\"size_before\";i:19691;s:10:\"size_after\";i:17837;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:8291;s:11:\"size_before\";i:94542;s:10:\"size_after\";i:86251;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9023;s:11:\"size_before\";i:99216;s:10:\"size_after\";i:90193;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1050;s:11:\"size_before\";i:10968;s:10:\"size_after\";i:9918;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(10866,1891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:461;s:4:\"file\";s:28:\"2021/02/Katherine_Lawing.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Katherine_Lawing-260x300.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Katherine_Lawing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:28:\"Katherine_Lawing-400x444.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:28:\"Katherine_Lawing-400x438.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"Katherine_Lawing-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(10867,1891,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.301437584648848400092902011238038539886474609375;s:5:\"bytes\";i:30290;s:11:\"size_before\";i:268019;s:10:\"size_after\";i:237729;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:4726;s:11:\"size_before\";i:49040;s:10:\"size_after\";i:44314;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1865;s:11:\"size_before\";i:17876;s:10:\"size_after\";i:16011;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.440000000000001278976924368180334568023681640625;s:5:\"bytes\";i:14902;s:11:\"size_before\";i:90662;s:10:\"size_after\";i:75760;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:7733;s:11:\"size_before\";i:100445;s:10:\"size_after\";i:92712;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1064;s:11:\"size_before\";i:9996;s:10:\"size_after\";i:8932;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(10869,1892,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10870,1892,'_edit_lock','1627853733:1'),(10871,1893,'_wp_attached_file','2021/06/Dawn_Wetherbee.jpeg'),(10872,1893,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:497;s:4:\"file\";s:27:\"2021/06/Dawn_Wetherbee.jpeg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Dawn_Wetherbee-272x300.jpeg\";s:5:\"width\";i:272;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Dawn_Wetherbee-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"Dawn_Wetherbee-450x444.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"Dawn_Wetherbee-450x438.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"Dawn_Wetherbee-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(10873,1893,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.4454680937542339069779018245753832161426544189453125;s:5:\"bytes\";i:1644;s:11:\"size_before\";i:369050;s:10:\"size_after\";i:367406;s:4:\"time\";d:0.210000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63887;s:10:\"size_after\";i:63887;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21384;s:10:\"size_after\";i:21384;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:136418;s:10:\"size_after\";i:136418;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:134746;s:10:\"size_after\";i:134746;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1644;s:11:\"size_before\";i:12615;s:10:\"size_after\";i:10971;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(10874,1892,'_thumbnail_id','1893'),(10875,1892,'_edit_last','1'),(10876,1892,'fave_agent_company','Lantern Realty and Development'),(10877,1892,'fave_agent_email','mrsdawnwetherbee@gmail.com'),(10878,1892,'fave_agent_visible','0'),(10879,1892,'fave_agent_position','Licensed Agent'),(10880,1892,'fave_agent_license','326663'),(10881,1892,'fave_agent_mobile','704-791-5689'),(10882,1892,'fave_agent_website','https://lantern-realty.com/'),(10883,1892,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11255,1892,'fave_agent_logo','28'),(10885,1892,'fave_agent_agencies','45'),(10886,1892,'_primary_term_agent_category','7'),(10887,1892,'rs_page_bg_color',''),(10888,1895,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10889,1895,'_edit_lock','1637540927:1'),(10890,1896,'_wp_attached_file','2021/06/Julie_Arader.jpg'),(10891,1896,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:140;s:4:\"file\";s:24:\"2021/06/Julie_Arader.jpg\";s:5:\"sizes\";a:1:{s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Julie_Arader-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(10892,1896,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8543;s:10:\"size_after\";i:8543;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8543;s:10:\"size_after\";i:8543;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(10893,1895,'_thumbnail_id','1896'),(10894,1895,'_edit_last','1'),(10895,1895,'fave_agent_company','Lantern Realty and Development'),(10896,1895,'fave_agent_email','juliethebroker@gmail.com'),(10897,1895,'fave_agent_visible','0'),(10898,1895,'fave_agent_position','Licensed Agent'),(10899,1895,'fave_agent_license','295527'),(10900,1895,'fave_agent_mobile','828-450-6004'),(10901,1895,'fave_agent_website','https://lantern-realty.com/'),(10902,1895,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11666,1895,'fave_agent_logo','28'),(10904,1895,'fave_agent_agencies','1598'),(10905,1895,'_primary_term_agent_category','22'),(10906,1895,'rs_page_bg_color',''),(10907,1898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10908,1898,'_edit_lock','1627853666:1'),(10909,1899,'_wp_attached_file','2021/06/Chelsea_Trexler.jpg'),(10910,1899,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2021/06/Chelsea_Trexler.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Chelsea_Trexler-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:27:\"Chelsea_Trexler-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"Chelsea_Trexler-500x444.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"Chelsea_Trexler-500x438.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"Chelsea_Trexler-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Chelsea_Trexler-496x496.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(10911,1899,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.67565427967153934840638385139754973351955413818359375;s:5:\"bytes\";i:4054;s:11:\"size_before\";i:600011;s:10:\"size_after\";i:595957;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:72134;s:10:\"size_after\";i:72134;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2725;s:11:\"size_before\";i:24436;s:10:\"size_after\";i:21711;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:165674;s:10:\"size_after\";i:165674;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:158934;s:10:\"size_after\";i:158934;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1329;s:11:\"size_before\";i:12330;s:10:\"size_after\";i:11001;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:166503;s:10:\"size_after\";i:166503;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(10912,1898,'_thumbnail_id','1899'),(10913,1898,'_edit_last','1'),(10914,1898,'fave_agent_company','Lantern Realty and Development'),(10915,1898,'fave_agent_email','ctrexler.realtor@gmail.com'),(10916,1898,'fave_agent_visible','0'),(10917,1898,'fave_agent_position','Licensed Agent'),(10918,1898,'fave_agent_license','327348'),(10919,1898,'fave_agent_mobile','704-310-7294'),(10920,1898,'fave_agent_website','https://lantern-realty.com/'),(10921,1898,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11252,1898,'fave_agent_logo','22'),(10923,1898,'fave_agent_agencies','759'),(10924,1898,'_primary_term_agent_category','13'),(10925,1898,'rs_page_bg_color',''),(10926,1901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10927,1901,'_edit_lock','1623200453:1'),(10928,1902,'_wp_attached_file','2021/06/Sandra_Bean.jpg'),(10929,1902,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:639;s:4:\"file\";s:23:\"2021/06/Sandra_Bean.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Sandra_Bean-235x300.jpg\";s:5:\"width\";i:235;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Sandra_Bean-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"Sandra_Bean-500x444.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"Sandra_Bean-500x564.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"Sandra_Bean-500x438.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"Sandra_Bean-469x600.jpg\";s:5:\"width\";i:469;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"Sandra_Bean-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Sandra_Bean-496x634.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:634;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(10930,1902,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.12845276433644736702177624465548433363437652587890625;s:5:\"bytes\";i:1481;s:11:\"size_before\";i:1152953;s:10:\"size_after\";i:1151472;s:4:\"time\";d:0.68000000000000004884981308350688777863979339599609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63538;s:10:\"size_after\";i:63538;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22297;s:10:\"size_after\";i:22297;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:182054;s:10:\"size_after\";i:182054;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:235548;s:10:\"size_after\";i:235548;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:182299;s:10:\"size_after\";i:182299;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:217428;s:10:\"size_after\";i:217428;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1481;s:11:\"size_before\";i:13032;s:10:\"size_after\";i:11551;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:236757;s:10:\"size_after\";i:236757;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(10931,1901,'_thumbnail_id','1902'),(10932,1901,'_edit_last','1'),(10933,1901,'fave_agent_company','Lantern Realty and Development'),(10934,1901,'fave_agent_email','sandrabean82@gmail.com'),(10935,1901,'fave_agent_visible','0'),(10936,1901,'fave_agent_position','Licensed Agent'),(10937,1901,'fave_agent_license','302663'),(10938,1901,'fave_agent_mobile','336-983-5064'),(10939,1901,'fave_agent_website','https://lantern-realty.com/'),(10940,1901,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(10941,1901,'fave_agent_logo','22'),(10942,1901,'fave_agent_agencies','757'),(10943,1901,'_primary_term_agent_category','7'),(10944,1901,'rs_page_bg_color',''),(10945,1904,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10946,1904,'_edit_lock','1623200635:1'),(10947,1905,'_wp_attached_file','2021/06/Katie_Abell.png'),(10948,1905,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:703;s:4:\"file\";s:23:\"2021/06/Katie_Abell.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Katie_Abell-213x300.png\";s:5:\"width\";i:213;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Katie_Abell-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"Katie_Abell-500x444.png\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"Katie_Abell-500x564.png\";s:5:\"width\";i:500;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"Katie_Abell-500x438.png\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"Katie_Abell-427x600.png\";s:5:\"width\";i:427;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"Katie_Abell-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Katie_Abell-496x697.png\";s:5:\"width\";i:496;s:6:\"height\";i:697;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(10949,1904,'_thumbnail_id','1905'),(10950,1905,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1775069;s:10:\"size_after\";i:1775069;s:4:\"time\";d:4.13999999999999968025576890795491635799407958984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:97234;s:10:\"size_after\";i:97234;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:36030;s:10:\"size_after\";i:36030;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:272011;s:10:\"size_after\";i:272011;s:4:\"time\";d:0.689999999999999946709294817992486059665679931640625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:355359;s:10:\"size_after\";i:355359;s:4:\"time\";d:0.979999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:267985;s:10:\"size_after\";i:267985;s:4:\"time\";d:0.57999999999999996003197111349436454474925994873046875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:319916;s:10:\"size_after\";i:319916;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17923;s:10:\"size_after\";i:17923;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:408611;s:10:\"size_after\";i:408611;s:4:\"time\";d:1.2600000000000000088817841970012523233890533447265625;}}}'),(10951,1904,'_edit_last','1'),(10952,1904,'fave_agent_company','Lantern Realty and Development'),(10953,1904,'fave_agent_email','kabellrealty@gmail.com'),(10954,1904,'fave_agent_visible','0'),(10955,1904,'fave_agent_position','Licensed Agent'),(10956,1904,'fave_agent_license','329520'),(10957,1904,'fave_agent_mobile','845-551--0429'),(10958,1904,'fave_agent_website','https://lantern-realty.com/'),(10959,1904,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(10960,1904,'fave_agent_logo','28'),(10961,1904,'fave_agent_agencies','45'),(10962,1904,'_primary_term_agent_category','10'),(10963,1904,'rs_page_bg_color',''),(10964,1907,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(10965,1907,'_edit_lock','1623200812:1'),(10966,1908,'_wp_attached_file','2021/06/Rochelle_Shanae_Ogburn.jpg'),(10967,1908,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:408;s:6:\"height\";i:476;s:4:\"file\";s:34:\"2021/06/Rochelle_Shanae_Ogburn.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Rochelle_Shanae_Ogburn-257x300.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Rochelle_Shanae_Ogburn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:34:\"Rochelle_Shanae_Ogburn-408x444.jpg\";s:5:\"width\";i:408;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:34:\"Rochelle_Shanae_Ogburn-408x438.jpg\";s:5:\"width\";i:408;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:33:\"Rochelle_Shanae_Ogburn-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(10968,1908,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.6418702336612167602680756317568011581897735595703125;s:5:\"bytes\";i:1632;s:11:\"size_before\";i:254257;s:10:\"size_after\";i:252625;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:52018;s:10:\"size_after\";i:52018;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19943;s:10:\"size_after\";i:19943;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79352;s:10:\"size_after\";i:79352;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:90171;s:10:\"size_after\";i:90171;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1632;s:11:\"size_before\";i:12773;s:10:\"size_after\";i:11141;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(10969,1907,'_thumbnail_id','1908'),(10970,1907,'_edit_last','1'),(10971,1907,'fave_agent_company','Lantern Realty and Development'),(10972,1907,'fave_agent_email','rochelle@theogburngroup.com'),(10973,1907,'fave_agent_visible','0'),(10974,1907,'fave_agent_position','Licensed Agent'),(10975,1907,'fave_agent_license','294287'),(10976,1907,'fave_agent_mobile','704-750-1848'),(10977,1907,'fave_agent_website','https://lantern-realty.com/'),(10978,1907,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(10979,1907,'fave_agent_logo','28'),(10980,1907,'fave_agent_agencies','45'),(10981,1907,'_primary_term_agent_category','7'),(10982,1907,'rs_page_bg_color',''),(10994,1911,'_elementor_css','a:6:{s:4:\"time\";i:1620054665;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(10995,1912,'_wp_page_template','template/template-onepage.php'),(10996,1912,'_elementor_edit_mode','builder'),(10997,1912,'_elementor_template_type','wp-page'),(10998,1912,'_elementor_version','3.0.11'),(10999,1912,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(11000,1912,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(11001,1912,'_elementor_css','a:6:{s:4:\"time\";i:1620054665;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(11002,1913,'_wp_page_template','template/template-onepage.php'),(11003,1913,'_elementor_edit_mode','builder'),(11004,1913,'_elementor_template_type','wp-page'),(11005,1913,'_elementor_version','3.0.11'),(11006,1913,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(11007,1913,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\" datatables_page_length=\\\"150\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(11008,1913,'_elementor_css','a:6:{s:4:\"time\";i:1620054665;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(11010,1175,'_elementor_css','a:6:{s:4:\"time\";i:1623202013;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(11016,1914,'_wp_page_template','template/template-onepage.php'),(11017,1914,'_elementor_css','a:6:{s:4:\"time\";i:1623197680;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(11023,1917,'_wp_attached_file','2021/06/head-shot-scaled.jpg'),(11024,1917,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2042;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2021/06/head-shot-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"head-shot-239x300.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"head-shot-817x1024.jpg\";s:5:\"width\";i:817;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"head-shot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"head-shot-768x963.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:963;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"head-shot-1225x1536.jpg\";s:5:\"width\";i:1225;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"head-shot-1633x2048.jpg\";s:5:\"width\";i:1633;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:22:\"head-shot-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"head-shot-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:21:\"head-shot-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"head-shot-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:21:\"head-shot-479x600.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"head-shot-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"head-shot-496x622.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"NIKON D4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1614955605\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"head-shot.jpg\";}'),(11025,1917,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.630474933534202364171505905687808990478515625;s:5:\"bytes\";i:606525;s:11:\"size_before\";i:6297976;s:10:\"size_after\";i:5691451;s:4:\"time\";d:2.910000000000000586197757002082653343677520751953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6459;s:11:\"size_before\";i:66188;s:10:\"size_after\";i:59729;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:58908;s:11:\"size_before\";i:605882;s:10:\"size_after\";i:546974;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2497;s:11:\"size_before\";i:23740;s:10:\"size_after\";i:21243;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:52076;s:11:\"size_before\";i:542079;s:10:\"size_after\";i:490003;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:117981;s:11:\"size_before\";i:1222671;s:10:\"size_after\";i:1104690;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:190664;s:11:\"size_before\";i:1987999;s:10:\"size_after\";i:1797335;s:4:\"time\";d:1.62999999999999989341858963598497211933135986328125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:61444;s:11:\"size_before\";i:629677;s:10:\"size_after\";i:568233;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:19961;s:11:\"size_before\";i:207675;s:10:\"size_after\";i:187714;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:32086;s:11:\"size_before\";i:325112;s:10:\"size_after\";i:293026;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:19253;s:11:\"size_before\";i:202089;s:10:\"size_after\";i:182836;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:21120;s:11:\"size_before\";i:228488;s:10:\"size_after\";i:207368;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1380;s:11:\"size_before\";i:12536;s:10:\"size_after\";i:11156;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:22696;s:11:\"size_before\";i:243840;s:10:\"size_after\";i:221144;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(11026,1918,'_wp_attached_file','2021/06/headshot.jpeg'),(11027,1918,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1105;s:6:\"height\";i:1105;s:4:\"file\";s:21:\"2021/06/headshot.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"headshot-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"headshot-1024x1024.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"headshot-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"headshot-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:22:\"headshot-1105x785.jpeg\";s:5:\"width\";i:1105;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"headshot-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:21:\"headshot-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"headshot-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:21:\"headshot-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"headshot-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"headshot-496x496.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 11 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1572111302\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.010989010989011\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(11028,1918,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3656239930302778162740651168860495090484619140625;s:5:\"bytes\";i:113398;s:11:\"size_before\";i:2597521;s:10:\"size_after\";i:2484123;s:4:\"time\";d:0.80999999999999994226840271949185989797115325927734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:74088;s:10:\"size_after\";i:74088;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:589696;s:10:\"size_after\";i:589696;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:3291;s:11:\"size_before\";i:26817;s:10:\"size_after\";i:23526;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:40637;s:11:\"size_before\";i:405070;s:10:\"size_after\";i:364433;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:399952;s:10:\"size_after\";i:399952;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:173917;s:10:\"size_after\";i:173917;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:265060;s:10:\"size_after\";i:265060;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:19672;s:11:\"size_before\";i:189891;s:10:\"size_after\";i:170219;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:27487;s:11:\"size_before\";i:266894;s:10:\"size_after\";i:239407;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1843;s:11:\"size_before\";i:14275;s:10:\"size_after\";i:12432;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:20468;s:11:\"size_before\";i:191861;s:10:\"size_after\";i:171393;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(11031,1920,'_wp_attached_file','2021/06/IMG_2205-4.jpg'),(11032,1920,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:206;s:6:\"height\";i:236;s:4:\"file\";s:22:\"2021/06/IMG_2205-4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_2205-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:21:\"IMG_2205-4-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1413570343\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.041666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(11033,1920,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.01209024504335953764666555798612534999847412109375;s:5:\"bytes\";i:1115;s:11:\"size_before\";i:27791;s:10:\"size_after\";i:26676;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17001;s:10:\"size_after\";i:17001;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1115;s:11:\"size_before\";i:10790;s:10:\"size_after\";i:9675;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(11036,1923,'_wp_attached_file','2021/06/Buffini-Flyer.pdf'),(11037,1924,'_wp_attached_file','2021/06/Buffini-Flyer-2.pdf'),(11049,688,'_wp_old_date','2020-05-29'),(11048,687,'_wp_old_date','2020-05-29'),(11050,689,'_wp_old_date','2020-05-29'),(11051,690,'_wp_old_date','2020-05-29'),(11052,691,'_wp_old_date','2020-05-29'),(11053,692,'_wp_old_date','2020-05-29'),(11054,693,'_wp_old_date','2020-05-29'),(11055,694,'_wp_old_date','2020-05-29'),(11056,695,'_wp_old_date','2020-05-29'),(11057,696,'_wp_old_date','2020-05-29'),(11058,697,'_wp_old_date','2020-05-29'),(11059,698,'_wp_old_date','2020-05-29'),(11060,699,'_wp_old_date','2020-05-29'),(11061,700,'_wp_old_date','2020-05-29'),(11062,701,'_wp_old_date','2020-05-29'),(11063,702,'_wp_old_date','2020-05-29'),(11064,703,'_wp_old_date','2020-05-29'),(11065,704,'_wp_old_date','2020-05-29'),(11066,705,'_wp_old_date','2020-05-29'),(11067,706,'_wp_old_date','2020-05-29'),(11068,707,'_wp_old_date','2020-05-29'),(11069,708,'_wp_old_date','2020-05-29'),(11070,709,'_wp_old_date','2020-05-29'),(11071,710,'_wp_old_date','2020-05-29'),(11072,711,'_wp_old_date','2020-05-29'),(11073,712,'_wp_old_date','2020-05-29'),(11074,713,'_wp_old_date','2020-05-29'),(11075,1653,'_wp_old_date','2021-02-24'),(11076,714,'_wp_old_date','2020-05-29'),(11077,716,'_wp_old_date','2020-05-29'),(11078,715,'_wp_old_date','2020-05-29'),(11079,1301,'_wp_old_date','2020-10-19'),(11080,4,'_wp_old_date','2018-08-20'),(11081,5,'_wp_old_date','2018-08-20'),(11082,150,'_wp_old_date','2018-08-24'),(11083,151,'_wp_old_date','2018-08-24'),(11084,6,'_wp_old_date','2018-08-20'),(11085,7,'_wp_old_date','2018-08-20'),(11086,206,'_wp_old_date','2018-08-24'),(11087,208,'_wp_old_date','2018-08-24'),(11088,211,'_wp_old_date','2018-08-24'),(11089,210,'_wp_old_date','2018-08-24'),(11090,209,'_wp_old_date','2018-08-24'),(11091,207,'_wp_old_date','2018-08-24'),(11092,156,'_wp_old_date','2018-08-24'),(11093,14,'_wp_old_date','2018-08-20'),(11094,166,'_wp_old_date','2018-08-24'),(11095,167,'_wp_old_date','2018-08-24'),(11096,247,'_wp_old_date','2018-08-25'),(11097,517,'_wp_old_date','2019-10-04'),(11098,535,'_wp_old_date','2019-11-04'),(11099,157,'_wp_old_date','2018-08-24'),(11100,15,'_wp_old_date','2018-08-20'),(11101,212,'_wp_old_date','2018-08-24'),(11102,214,'_wp_old_date','2018-08-24'),(11103,216,'_wp_old_date','2018-08-24'),(11104,218,'_wp_old_date','2018-08-24'),(11105,217,'_wp_old_date','2018-08-24'),(11106,215,'_wp_old_date','2018-08-24'),(11107,213,'_wp_old_date','2018-08-24'),(11108,518,'_wp_old_date','2019-10-04'),(11109,16,'_wp_old_date','2018-08-20'),(11110,149,'_wp_old_date','2018-08-24'),(11111,1929,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11112,1930,'_wp_attached_file','2021/06/Ryan-Ivory_ARC_Home.jpg'),(11113,1930,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:31:\"2021/06/Ryan-Ivory_ARC_Home.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Ryan-Ivory_ARC_Home-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Ryan-Ivory_ARC_Home-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Ryan-Ivory_ARC_Home-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Ryan-Ivory_ARC_Home-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:32:\"Ryan-Ivory_ARC_Home-1170x720.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:31:\"Ryan-Ivory_ARC_Home-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:31:\"Ryan-Ivory_ARC_Home-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:31:\"Ryan-Ivory_ARC_Home-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:32:\"Ryan-Ivory_ARC_Home-1067x600.jpg\";s:5:\"width\";i:1067;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:30:\"Ryan-Ivory_ARC_Home-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:31:\"Ryan-Ivory_ARC_Home-496x279.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(11114,1930,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.85901391456844322647157241590321063995361328125;s:5:\"bytes\";i:68381;s:11:\"size_before\";i:1407302;s:10:\"size_after\";i:1338921;s:4:\"time\";d:0.9800000000000002042810365310288034379482269287109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:31871;s:10:\"size_after\";i:31871;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:159115;s:10:\"size_after\";i:159115;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17248;s:10:\"size_after\";i:17248;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:24918;s:11:\"size_before\";i:154571;s:10:\"size_after\";i:129653;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:216105;s:10:\"size_after\";i:216105;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:131999;s:10:\"size_after\";i:131999;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:189137;s:10:\"size_after\";i:189137;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:26586;s:11:\"size_before\";i:158170;s:10:\"size_after\";i:131584;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:247316;s:10:\"size_after\";i:247316;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1677;s:11:\"size_before\";i:10810;s:10:\"size_after\";i:9133;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:15200;s:11:\"size_before\";i:90960;s:10:\"size_after\";i:75760;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(11115,1929,'_edit_last','1'),(11116,1929,'_thumbnail_id','1930'),(11117,1929,'_wp_page_template','default'),(11118,1929,'rs_page_bg_color',''),(11119,1929,'fave_partner_website','https://ryanivory.excellencebyarc.com/'),(11120,1929,'_edit_lock','1624534682:1'),(11121,1933,'_wp_attached_file','2021/06/Arc-WebBanner-Ryan_Ivory.mp4'),(11122,1933,'_wp_attachment_metadata','a:10:{s:7:\"bitrate\";i:481522;s:8:\"filesize\";i:1079612;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:18;s:16:\"length_formatted\";s:4:\"0:18\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:-2082844800;}'),(11123,508,'_oembed_9f0e4b4bb5a016df722813d49d3e6a13','<iframe title=\"Timelapse - Lighthouse (Oct 2012)\" src=\"https://player.vimeo.com/video/51589652?dnt=1&amp;app_id=122963\" width=\"1170\" height=\"658\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),(11124,508,'_oembed_time_9f0e4b4bb5a016df722813d49d3e6a13','1624535326'),(11126,1930,'wps_cleaner_media_use','media_image-16'),(11127,1930,'wps_cleaner_media_use','media_image-15'),(11128,1937,'_wp_attached_file','2021/06/headshot-1-e1627855253369.jpeg'),(11129,1937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2021/06/headshot-1-e1627855253369.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"headshot-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"headshot-1-1024x1024.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"headshot-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"headshot-1-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:24:\"headshot-1-1105x785.jpeg\";s:5:\"width\";i:1105;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"headshot-1-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"headshot-1-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"headshot-1-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"headshot-1-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"headshot-1-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"headshot-1-496x496.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 11 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1572111302\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.010989010989011\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(11130,1937,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.3656239930302778162740651168860495090484619140625;s:5:\"bytes\";i:113398;s:11:\"size_before\";i:2597521;s:10:\"size_after\";i:2484123;s:4:\"time\";d:1.0800000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:74088;s:10:\"size_after\";i:74088;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:589696;s:10:\"size_after\";i:589696;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:3291;s:11:\"size_before\";i:26817;s:10:\"size_after\";i:23526;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:40637;s:11:\"size_before\";i:405070;s:10:\"size_after\";i:364433;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:399952;s:10:\"size_after\";i:399952;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:173917;s:10:\"size_after\";i:173917;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:265060;s:10:\"size_after\";i:265060;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:19672;s:11:\"size_before\";i:189891;s:10:\"size_after\";i:170219;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:27487;s:11:\"size_before\";i:266894;s:10:\"size_after\";i:239407;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1843;s:11:\"size_before\";i:14275;s:10:\"size_after\";i:12432;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:20468;s:11:\"size_before\";i:191861;s:10:\"size_after\";i:171393;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(11131,1940,'_wp_attached_file','2021/07/2A4-T-FHA-VA-Financing-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf'),(11132,1941,'_wp_attached_file','2021/07/2A6-T-Loan-Assumption-Addendum-REV-7.2019-c.-7.2019-SAMPLE.pdf'),(11133,1942,'_wp_attached_file','2021/07/2A7-T-Buyer-Possession-Before-Closing-Agreement-REV-7.2019c.-7.2019-SAMPLE.pdf'),(11134,1943,'_wp_attached_file','2021/07/2A5-T-Seller-Financing-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf'),(11135,1944,'_wp_attached_file','2021/07/2A3-T-New-Construction-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf'),(11136,1945,'_wp_attached_file','2021/07/2A11-T-Additional-Provisions-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf'),(11137,1946,'_wp_attached_file','2021/07/2A8-T-Seller-Possession-After-Closing-Agreement-REV-7.2019c.-7.2019-SAMPLE.pdf'),(11138,1947,'_wp_attached_file','2021/07/2A13-T-Vacation-Rental-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf'),(11139,1948,'_wp_attached_file','2021/07/3-G-Guidelines-for-Completing-Additional-Signatures-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf'),(11140,1949,'_wp_attached_file','2021/07/3-T-Additional-Signatures-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf'),(11141,1950,'_wp_attached_file','2021/07/2A14-T-Short-Sale-Addendum-REV-7.2015-c.-7.2019-SAMPLE.pdf'),(11142,1951,'_wp_attached_file','2021/07/310-T-Due-Diligence-Request-and-Agreement-REV-7.2020-c.-7.2020-SAMPLE.pdf'),(11143,1952,'_wp_attached_file','2021/07/310G-Guidelines-for-Completing-Due-Diligence-Request-and-Agreement-Form-REV-7.2020-c.-7.2020-SAMPLE.pdf'),(11144,1953,'_wp_attached_file','2021/07/340-T-Response-to-Buyers-Offer-REV-7.2019c.-7.2019-SAMPLE.pdf'),(11145,1954,'_wp_attached_file','2021/07/581-T-Additional-Provisions-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf'),(11146,1955,'_wp_attached_file','2021/07/587-T-Notice-of-Offer-Rejection-REV-7.2020-c.-7.2020-SAMPLE.pdf'),(11147,1956,'_wp_attached_file','2021/07/583-T-Agreement-to-Amend-Contract-Notice-of-Assignment-REV-7.2020-c.-7.2020-SAMPLE.pdf'),(11148,1957,'_wp_attached_file','2021/07/588-T-Notice-of-Revocation-of-Offer-Adopted-7.2020-c.-7.2020-SAMPLE.pdf'),(11149,1958,'_wp_attached_file','2021/07/586-T-Notice-of-Termination-of-Contract-REV-7.2020-c.-7.2020-SAMPLE.pdf'),(11150,1959,'_wp_attached_file','2021/07/580L-T-Agreement-for-Purchase-and-Sale-of-Land-Adopted-7.2020-c.-7.2020-SAMPLE.pdf'),(11151,1960,'_wp_attached_file','2021/07/MOG_rec425.pdf'),(11152,1961,'_wp_attached_file','2021/07/corrected-580-T-Agreement-for-Purchase-and-Sale-of-Real-Property-REV-7.2020-c.-7.2020-SAMPLE.pdf'),(11156,1964,'_wp_attached_file','2021/07/Charlotte-hotsheet-7.1.211-1.pdf'),(11157,1965,'_wp_attached_file','2021/07/LRD-Roster_070421.xlsx'),(11162,1967,'_wp_attached_file','2021/07/from-boomtown.jpg'),(11163,1967,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2021/07/from-boomtown.jpg\";s:5:\"sizes\";a:1:{s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"from-boomtown-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(11164,1967,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10731;s:10:\"size_after\";i:10731;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10731;s:10:\"size_after\";i:10731;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(11174,1974,'_wp_attached_file','2021/07/2021-Educational-Calendar-1.xlsx'),(11173,1973,'_wp_attached_file','2021/07/LRD-Roster_070821.xlsx'),(11177,1975,'_wp_attached_file','2021/07/Me-and-baby.jpg'),(11178,1975,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2021/07/Me-and-baby.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Me-and-baby-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Me-and-baby-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:23:\"Me-and-baby-720x785.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"Me-and-baby-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"Me-and-baby-720x564.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"Me-and-baby-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"Me-and-baby-450x600.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"Me-and-baby-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Me-and-baby-496x661.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;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:{}}}'),(11179,1975,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.3957808443426993338931652033352293074131011962890625;s:5:\"bytes\";i:17462;s:11:\"size_before\";i:1251056;s:10:\"size_after\";i:1233594;s:4:\"time\";d:0.5700000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54983;s:10:\"size_after\";i:54983;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21614;s:10:\"size_after\";i:21614;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:262485;s:10:\"size_after\";i:262485;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:155402;s:10:\"size_after\";i:155402;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:199609;s:10:\"size_after\";i:199609;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:15816;s:11:\"size_before\";i:168213;s:10:\"size_after\";i:152397;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:178458;s:10:\"size_after\";i:178458;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1646;s:11:\"size_before\";i:13624;s:10:\"size_after\";i:11978;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:196668;s:10:\"size_after\";i:196668;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(11194,1980,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:477951;s:10:\"size_after\";i:477951;s:4:\"time\";d:1.0700000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:109437;s:10:\"size_after\";i:109437;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32235;s:10:\"size_after\";i:32235;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:161761;s:10:\"size_after\";i:161761;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:159956;s:10:\"size_after\";i:159956;s:4:\"time\";d:0.64000000000000001332267629550187848508358001708984375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14562;s:10:\"size_after\";i:14562;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(11192,1980,'_wp_attached_file','2021/07/Headshot-Cutout.png'),(11193,1980,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:408;s:6:\"height\";i:458;s:4:\"file\";s:27:\"2021/07/Headshot-Cutout.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Headshot-Cutout-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Headshot-Cutout-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"Headshot-Cutout-408x444.png\";s:5:\"width\";i:408;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"Headshot-Cutout-408x438.png\";s:5:\"width\";i:408;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"Headshot-Cutout-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11201,1983,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.67396558827221753062985953874886035919189453125;s:5:\"bytes\";i:603680;s:11:\"size_before\";i:5655630;s:10:\"size_after\";i:5051950;s:4:\"time\";d:3.049999999999999378275106209912337362766265869140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.75;s:5:\"bytes\";i:6284;s:11:\"size_before\";i:64426;s:10:\"size_after\";i:58142;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:61632;s:11:\"size_before\";i:583161;s:10:\"size_after\";i:521529;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2099;s:11:\"size_before\";i:20397;s:10:\"size_after\";i:18298;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:35308;s:11:\"size_before\";i:345857;s:10:\"size_after\";i:310549;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:132324;s:11:\"size_before\";i:1208843;s:10:\"size_after\";i:1076519;s:4:\"time\";d:1.060000000000000053290705182007513940334320068359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:215616;s:11:\"size_before\";i:1967750;s:10:\"size_after\";i:1752134;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:53792;s:11:\"size_before\";i:502675;s:10:\"size_after\";i:448883;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:16311;s:11:\"size_before\";i:162193;s:10:\"size_after\";i:145882;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:25821;s:11:\"size_before\";i:253156;s:10:\"size_after\";i:227335;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:15807;s:11:\"size_before\";i:158763;s:10:\"size_after\";i:142956;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:22063;s:11:\"size_before\";i:221729;s:10:\"size_after\";i:199666;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1097;s:11:\"size_before\";i:10821;s:10:\"size_after\";i:9724;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:15526;s:11:\"size_before\";i:155859;s:10:\"size_after\";i:140333;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(11231,2000,'_wp_attached_file','2021/07/Winning-In-A-Tight-Market-Flyer.pdf'),(11239,2007,'_wp_attached_file','2021/07/LRD-Roster_072621.xlsx'),(11242,2008,'_wp_attached_file','2021/07/FullSizeR002.jpg'),(11243,2008,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1106;s:6:\"height\";i:1009;s:4:\"file\";s:24:\"2021/07/FullSizeR002.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"FullSizeR002-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"FullSizeR002-1024x934.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:934;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"FullSizeR002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"FullSizeR002-768x701.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:701;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:25:\"FullSizeR002-1106x785.jpg\";s:5:\"width\";i:1106;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"FullSizeR002-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"FullSizeR002-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"FullSizeR002-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"FullSizeR002-658x600.jpg\";s:5:\"width\";i:658;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"FullSizeR002-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"FullSizeR002-496x452.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:452;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:{}}}'),(11209,1986,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.39330465383254331612761234282515943050384521484375;s:5:\"bytes\";i:93607;s:11:\"size_before\";i:2130674;s:10:\"size_after\";i:2037067;s:4:\"time\";d:1.0400000000000002575717417130363173782825469970703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44796;s:10:\"size_after\";i:44796;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:42997;s:11:\"size_before\";i:426067;s:10:\"size_after\";i:383070;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17322;s:10:\"size_after\";i:17322;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:383070;s:10:\"size_after\";i:383070;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:365294;s:10:\"size_after\";i:365294;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:142140;s:10:\"size_after\";i:142140;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:215899;s:10:\"size_after\";i:215899;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:15276;s:11:\"size_before\";i:154558;s:10:\"size_after\";i:139282;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:9;s:5:\"bytes\";i:15524;s:11:\"size_before\";i:172428;s:10:\"size_after\";i:156904;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:937;s:11:\"size_before\";i:10250;s:10:\"size_after\";i:9313;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:18873;s:11:\"size_before\";i:198850;s:10:\"size_after\";i:179977;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(11238,2006,'_wp_attached_file','2021/07/2021-Educational-Calendar-3.xlsx'),(11211,1989,'_wp_attached_file','2021/07/LRD-Roster_070821-1.xlsx'),(11212,1990,'_wp_attached_file','2021/07/2021-Educational-Calendar-2.xlsx'),(11244,2008,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.860788451805557741636221180669963359832763671875;s:5:\"bytes\";i:222501;s:11:\"size_before\";i:2256422;s:10:\"size_after\";i:2033921;s:4:\"time\";d:0.70999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57392;s:10:\"size_after\";i:57392;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:465150;s:10:\"size_after\";i:465150;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18428;s:10:\"size_after\";i:18428;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:75085;s:11:\"size_before\";i:359337;s:10:\"size_after\";i:284252;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:295083;s:10:\"size_after\";i:295083;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:156226;s:10:\"size_after\";i:156226;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:237893;s:10:\"size_after\";i:237893;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:43358;s:11:\"size_before\";i:194676;s:10:\"size_after\";i:151318;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:61330;s:11:\"size_before\";i:283214;s:10:\"size_after\";i:221884;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.9200000000000017053025658242404460906982421875;s:5:\"bytes\";i:2015;s:11:\"size_before\";i:11911;s:10:\"size_after\";i:9896;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:40713;s:11:\"size_before\";i:177112;s:10:\"size_after\";i:136399;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(11207,1986,'_wp_attached_file','2021/07/karie-try-1.jpg'),(11208,1986,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:1200;s:4:\"file\";s:23:\"2021/07/karie-try-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"karie-try-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"karie-try-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"karie-try-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:24:\"karie-try-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:23:\"karie-try-1-900x785.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"karie-try-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"karie-try-1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"karie-try-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"karie-try-1-450x600.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"karie-try-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"karie-try-1-496x661.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;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:{}}}'),(11258,1995,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:17:\"Me-and-baby-1.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:25:\"Me-and-baby-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:25:\"Me-and-baby-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-gallery-orig\";a:4:{s:4:\"file\";s:25:\"Me-and-baby-1-720x785.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-1-orig\";a:4:{s:4:\"file\";s:25:\"Me-and-baby-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-4-orig\";a:4:{s:4:\"file\";s:25:\"Me-and-baby-1-720x564.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-6-orig\";a:4:{s:4:\"file\";s:25:\"Me-and-baby-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"houzez-variable-gallery-orig\";a:4:{s:4:\"file\";s:25:\"Me-and-baby-1-450x600.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-map-info-orig\";a:4:{s:4:\"file\";s:24:\"Me-and-baby-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:25:\"Me-and-baby-1-496x661.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1627854125162\";a:3:{s:5:\"width\";i:720;s:6:\"height\";i:799;s:4:\"file\";s:32:\"Me-and-baby-1-e1627854109785.jpg\";}}'),(11403,2051,'_wp_attached_file','2021/08/IMG_4816-scaled.jpg'),(11404,2051,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2021/08/IMG_4816-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_4816-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_4816-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_4816-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"IMG_4816-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"IMG_4816-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"IMG_4816-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"IMG_4816-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"IMG_4816-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"IMG_4816-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"IMG_4816-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"IMG_4816-450x600.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"IMG_4816-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"IMG_4816-496x661.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 12 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1628603650\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_4816.jpg\";}'),(11256,2021,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11257,2021,'_edit_lock','1627854196:1'),(11224,1995,'_wp_attached_file','2021/07/Me-and-baby-1-e1627854125162.jpg'),(11225,1995,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:555;s:4:\"file\";s:40:\"2021/07/Me-and-baby-1-e1627854125162.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Me-and-baby-1-e1627854109785-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Me-and-baby-1-e1627854109785-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:40:\"Me-and-baby-1-e1627854109785-720x785.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:40:\"Me-and-baby-1-e1627854109785-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:40:\"Me-and-baby-1-e1627854109785-720x564.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:40:\"Me-and-baby-1-e1627854109785-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:40:\"Me-and-baby-1-e1627854109785-541x600.jpg\";s:5:\"width\";i:541;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:39:\"Me-and-baby-1-e1627854109785-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:40:\"Me-and-baby-1-e1627854109785-496x550.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:550;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:{}}}'),(11226,1995,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.3957808443426993338931652033352293074131011962890625;s:5:\"bytes\";i:17462;s:11:\"size_before\";i:1251056;s:10:\"size_after\";i:1233594;s:4:\"time\";d:1.0800000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54983;s:10:\"size_after\";i:54983;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21614;s:10:\"size_after\";i:21614;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:262485;s:10:\"size_after\";i:262485;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:155402;s:10:\"size_after\";i:155402;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:199609;s:10:\"size_after\";i:199609;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:15816;s:11:\"size_before\";i:168213;s:10:\"size_after\";i:152397;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:178458;s:10:\"size_after\";i:178458;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1646;s:11:\"size_before\";i:13624;s:10:\"size_after\";i:11978;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:196668;s:10:\"size_after\";i:196668;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(11259,2021,'_thumbnail_id','1995'),(11260,2021,'_edit_last','1'),(11261,2021,'fave_agent_company','Lantern Realty and Development'),(11262,2021,'fave_agent_email','dcannon06@gmail.com'),(11263,2021,'fave_agent_visible','0'),(11264,2021,'fave_agent_position','Licensed Agent'),(11265,2021,'fave_agent_license','NC 331557'),(11266,2021,'fave_agent_mobile','615-594-2492'),(11267,2021,'fave_agent_website','https://lantern-realty.com/'),(11268,2021,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11269,2021,'fave_agent_logo','28'),(11270,2021,'fave_agent_agencies','758'),(11271,2021,'_primary_term_agent_category','7'),(11272,2021,'rs_page_bg_color',''),(11273,2023,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11274,2023,'_edit_lock','1630720270:1'),(11275,2023,'_thumbnail_id','2072'),(11276,2023,'_edit_last','1'),(11277,2023,'fave_agent_company','Lantern Realty and Development'),(11278,2023,'fave_agent_email','kariesellsnc@gmail.com'),(11279,2023,'fave_agent_visible','0'),(11280,2023,'fave_agent_position','Licensed Agent'),(11281,2023,'fave_agent_license','NC 298676'),(11282,2023,'fave_agent_mobile','704-224-3105'),(11283,2023,'fave_agent_website','https://lantern-realty.com/'),(11284,2023,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11455,2023,'fave_agent_logo','28'),(11286,2023,'fave_agent_agencies','758'),(11287,2023,'_primary_term_agent_category','12'),(11288,2023,'rs_page_bg_color',''),(11289,2025,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11290,2025,'_edit_lock','1637541354:1'),(11291,1983,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:22:\"Joshua-Pic2-scaled.jpg\";}}'),(11292,2025,'_thumbnail_id','1983'),(11293,2025,'_edit_last','1'),(11294,2025,'fave_agent_company','Lantern Realty and Development'),(11295,2025,'fave_agent_email','Joshuagrealtor@gmail.com'),(11296,2025,'fave_agent_visible','0'),(11297,2025,'fave_agent_position','Licensed Agent'),(11298,2025,'fave_agent_license','NC 303886'),(11299,2025,'fave_agent_mobile','828-585-7285'),(11300,2025,'fave_agent_website','https://lantern-realty.com/'),(11301,2025,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11302,2025,'fave_agent_logo','28'),(11303,2025,'fave_agent_agencies','1598'),(11304,2025,'_primary_term_agent_category','7'),(11305,2025,'rs_page_bg_color',''),(11306,2027,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11307,2027,'_edit_lock','1627855306:1'),(11308,1937,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1105;s:6:\"height\";i:1105;s:4:\"file\";s:15:\"headshot-1.jpeg\";}}'),(11309,2027,'_thumbnail_id','1937'),(11310,2027,'_edit_last','1'),(11311,2027,'fave_agent_company','Lantern Realty and Development'),(11312,2027,'fave_agent_email','amber.ncrealty@gmail.com'),(11313,2027,'fave_agent_visible','0'),(11314,2027,'fave_agent_position','Licensed Agent'),(11315,2027,'fave_agent_license','NC 319019'),(11316,2027,'fave_agent_mobile','704-728-2612'),(11317,2027,'fave_agent_website','https://lantern-realty.com/'),(11318,2027,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11319,2027,'fave_agent_logo','28'),(11320,2027,'fave_agent_agencies','45'),(11321,2027,'_primary_term_agent_category','7'),(11322,2027,'rs_page_bg_color',''),(11323,2029,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11324,2029,'_edit_lock','1627856491:1'),(11325,2029,'_thumbnail_id','1920'),(11326,2029,'_edit_last','1'),(11327,2029,'fave_agent_company','Lantern Realty and Development'),(11328,2029,'fave_agent_email','doreenshaughnessy@gmail.com'),(11329,2029,'fave_agent_visible','0'),(11330,2029,'fave_agent_position','Licensed Agent'),(11331,2029,'fave_agent_mobile','828-337-6339'),(11332,2029,'fave_agent_website','https://lantern-realty.com/'),(11333,2029,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11334,2029,'fave_agent_logo','28'),(11335,2029,'fave_agent_agencies','1598'),(11336,2029,'_primary_term_agent_category','7'),(11337,2029,'rs_page_bg_color',''),(11338,2031,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11339,2031,'_edit_lock','1627856784:1'),(11340,2031,'_thumbnail_id','28'),(11341,2031,'_edit_last','1'),(11342,2031,'fave_agent_company','Lantern Realty and Development'),(11343,2031,'fave_agent_email','kathygrealty@gmail.com'),(11344,2031,'fave_agent_visible','0'),(11345,2031,'fave_agent_position','Licensed Agent'),(11346,2031,'fave_agent_license','NC 277672'),(11347,2031,'fave_agent_mobile','828-279-7053'),(11348,2031,'fave_agent_website','https://lantern-realty.com/'),(11349,2031,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11350,2031,'fave_agent_logo','28'),(11351,2031,'fave_agent_agencies','1598'),(11352,2031,'_primary_term_agent_category','4'),(11353,2031,'rs_page_bg_color',''),(11354,2033,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11355,2033,'_edit_lock','1627857111:1'),(11356,2033,'_thumbnail_id','1967'),(11357,2033,'_edit_last','1'),(11358,2033,'fave_agent_company','Lantern Realty and Development'),(11359,2033,'fave_agent_email','ClaireSonnierRealtor@gmail.com'),(11360,2033,'fave_agent_visible','0'),(11361,2033,'fave_agent_position','Licensed Agent'),(11362,2033,'fave_agent_license','NC 301435'),(11363,2033,'fave_agent_mobile','828-582-3866'),(11364,2033,'fave_agent_website','https://lantern-realty.com/'),(11365,2033,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11366,2033,'fave_agent_logo','28'),(11367,2033,'fave_agent_agencies','1598'),(11368,2033,'_primary_term_agent_category','22'),(11369,2033,'rs_page_bg_color',''),(11370,2035,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11371,2035,'_edit_lock','1656031568:1'),(11372,2035,'_thumbnail_id','2653'),(11373,2035,'_edit_last','1'),(11374,2035,'fave_agent_company','Lantern Realty and Development'),(11375,2035,'fave_agent_email','DawnFisher.NCRealtor@gmail.com'),(11376,2035,'fave_agent_visible','0'),(11377,2035,'fave_agent_position','Licensed Agent'),(11378,2035,'fave_agent_license','NC 332120'),(11379,2035,'fave_agent_mobile','727-452-2245'),(11380,2035,'fave_agent_website','https://lantern-realty.com/'),(11381,2035,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(15006,2035,'fave_agent_logo','28'),(11383,2035,'fave_agent_agencies','758'),(11384,2035,'_primary_term_agent_category','7'),(11385,2035,'rs_page_bg_color',''),(11386,2038,'_wp_attached_file','2021/08/2021-Educational-Calendar.xlsx'),(11387,2039,'_wp_attached_file','2021/08/LRD-Roster_072621.xlsx'),(11392,2041,'_wp_attached_file','2021/08/real-estate-pic.jpeg'),(11393,2041,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:941;s:6:\"height\";i:1625;s:4:\"file\";s:28:\"2021/08/real-estate-pic.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"real-estate-pic-174x300.jpeg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"real-estate-pic-593x1024.jpeg\";s:5:\"width\";i:593;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"real-estate-pic-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"real-estate-pic-768x1326.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1326;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"real-estate-pic-889x1536.jpeg\";s:5:\"width\";i:889;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:28:\"real-estate-pic-941x785.jpeg\";s:5:\"width\";i:941;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:28:\"real-estate-pic-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:28:\"real-estate-pic-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:28:\"real-estate-pic-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:28:\"real-estate-pic-347x600.jpeg\";s:5:\"width\";i:347;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"real-estate-pic-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"real-estate-pic-496x857.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:857;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:{}}}'),(11394,2041,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.41131700972669005267334796371869742870330810546875;s:5:\"bytes\";i:41582;s:11:\"size_before\";i:2946326;s:10:\"size_after\";i:2904744;s:4:\"time\";d:2.050000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:38213;s:10:\"size_after\";i:38213;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:352514;s:10:\"size_after\";i:352514;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19009;s:10:\"size_after\";i:19009;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:534852;s:10:\"size_after\";i:534852;s:4:\"time\";d:0.5;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:670438;s:10:\"size_after\";i:670438;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:340427;s:10:\"size_after\";i:340427;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:156397;s:10:\"size_after\";i:156397;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:232912;s:10:\"size_after\";i:232912;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:12364;s:11:\"size_before\";i:166070;s:10:\"size_after\";i:153706;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9841;s:11:\"size_before\";i:146671;s:10:\"size_after\";i:136830;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1164;s:11:\"size_before\";i:11468;s:10:\"size_after\";i:10304;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:18213;s:11:\"size_before\";i:277355;s:10:\"size_after\";i:259142;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(11405,2051,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.5109120680385164092740524210967123508453369140625;s:5:\"bytes\";i:622668;s:11:\"size_before\";i:6546880;s:10:\"size_after\";i:5924212;s:4:\"time\";d:3.0999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:8779;s:11:\"size_before\";i:68500;s:10:\"size_after\";i:59721;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:68812;s:11:\"size_before\";i:639340;s:10:\"size_after\";i:570528;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:3286;s:11:\"size_before\";i:25340;s:10:\"size_after\";i:22054;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:570528;s:10:\"size_after\";i:570528;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:127518;s:11:\"size_before\";i:1247779;s:10:\"size_after\";i:1120261;s:4:\"time\";d:1.4899999999999999911182158029987476766109466552734375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:197780;s:11:\"size_before\";i:1970343;s:10:\"size_after\";i:1772563;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:63324;s:11:\"size_before\";i:645560;s:10:\"size_after\";i:582236;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:25389;s:11:\"size_before\";i:233976;s:10:\"size_after\";i:208587;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:36563;s:11:\"size_before\";i:354733;s:10:\"size_after\";i:318170;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:24697;s:11:\"size_before\";i:228186;s:10:\"size_after\";i:203489;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:29798;s:11:\"size_before\";i:250974;s:10:\"size_after\";i:221176;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1672;s:11:\"size_before\";i:13330;s:10:\"size_after\";i:11658;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.75;s:5:\"bytes\";i:35050;s:11:\"size_before\";i:298291;s:10:\"size_after\";i:263241;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(11409,2054,'_wp_attached_file','2021/08/pic-c-scaled.jpg'),(11410,2054,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:24:\"2021/08/pic-c-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"pic-c-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"pic-c-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"pic-c-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:18:\"pic-c-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"pic-c-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:19:\"pic-c-1366x2048.jpg\";s:5:\"width\";i:1366;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:18:\"pic-c-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:17:\"pic-c-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:17:\"pic-c-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:17:\"pic-c-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:17:\"pic-c-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:16:\"pic-c-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"pic-c-496x744.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:24:\"LIZ MCDANIEL\rPHOTOGRAPHY\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1523972942\";s:9:\"copyright\";s:20:\"ALL RIGHTS \rRESERVED\";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:{}}s:14:\"original_image\";s:9:\"pic-c.jpg\";}'),(11411,2054,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.1663735558843573159037987352348864078521728515625;s:5:\"bytes\";i:378400;s:11:\"size_before\";i:4128132;s:10:\"size_after\";i:3749732;s:4:\"time\";d:1.61000000000000031974423109204508364200592041015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:3461;s:11:\"size_before\";i:40874;s:10:\"size_after\";i:37413;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:32221;s:11:\"size_before\";i:362161;s:10:\"size_after\";i:329940;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1689;s:11:\"size_before\";i:18817;s:10:\"size_after\";i:17128;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:38063;s:11:\"size_before\";i:437952;s:10:\"size_after\";i:399889;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:60196;s:11:\"size_before\";i:693456;s:10:\"size_after\";i:633260;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:121375;s:11:\"size_before\";i:1168581;s:10:\"size_after\";i:1047206;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:44331;s:11:\"size_before\";i:470972;s:10:\"size_after\";i:426641;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:13757;s:11:\"size_before\";i:164843;s:10:\"size_after\";i:151086;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:21278;s:11:\"size_before\";i:251759;s:10:\"size_after\";i:230481;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:12038;s:11:\"size_before\";i:160125;s:10:\"size_after\";i:148087;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:11672;s:11:\"size_before\";i:140907;s:10:\"size_after\";i:129235;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:980;s:11:\"size_before\";i:10395;s:10:\"size_after\";i:9415;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:17339;s:11:\"size_before\";i:207290;s:10:\"size_after\";i:189951;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(11412,2055,'_wp_attached_file','2021/08/me-10.21.jpg'),(11413,2055,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1072;s:6:\"height\";i:1403;s:4:\"file\";s:20:\"2021/08/me-10.21.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"me-10.21-229x300.jpg\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"me-10.21-782x1024.jpg\";s:5:\"width\";i:782;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"me-10.21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"me-10.21-768x1005.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1005;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"me-10.21-1072x785.jpg\";s:5:\"width\";i:1072;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"me-10.21-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"me-10.21-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"me-10.21-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"me-10.21-458x600.jpg\";s:5:\"width\";i:458;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"me-10.21-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"me-10.21-496x649.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:649;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1536847990\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"450\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(11414,2055,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.87252374614703764876821878715418279170989990234375;s:5:\"bytes\";i:87203;s:11:\"size_before\";i:2251839;s:10:\"size_after\";i:2164636;s:4:\"time\";d:0.98000000000000009325873406851314939558506011962890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:47930;s:10:\"size_after\";i:47930;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:401987;s:10:\"size_after\";i:401987;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19222;s:10:\"size_after\";i:19222;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:38751;s:11:\"size_before\";i:429226;s:10:\"size_after\";i:390475;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:401190;s:10:\"size_after\";i:401190;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:155539;s:10:\"size_after\";i:155539;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:232206;s:10:\"size_after\";i:232206;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14978;s:11:\"size_before\";i:167363;s:10:\"size_after\";i:152385;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:14875;s:11:\"size_before\";i:179733;s:10:\"size_after\";i:164858;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1173;s:11:\"size_before\";i:11628;s:10:\"size_after\";i:10455;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:17426;s:11:\"size_before\";i:205815;s:10:\"size_after\";i:188389;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(11415,2056,'_wp_attached_file','2021/08/real-estate-pic-1-e1630721410478.jpeg'),(11416,2056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:519;s:4:\"file\";s:45:\"2021/08/real-estate-pic-1-e1630721410478.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"real-estate-pic-1-e1630721380450-231x300.jpeg\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"real-estate-pic-1-e1630721380450-789x1024.jpeg\";s:5:\"width\";i:789;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"real-estate-pic-1-e1630721380450-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"real-estate-pic-1-e1630721380450-768x996.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:996;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"real-estate-pic-1-889x1536.jpeg\";s:5:\"width\";i:889;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:45:\"real-estate-pic-1-e1630721380450-942x785.jpeg\";s:5:\"width\";i:942;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:45:\"real-estate-pic-1-e1630721380450-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:45:\"real-estate-pic-1-e1630721380450-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:45:\"real-estate-pic-1-e1630721380450-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:45:\"real-estate-pic-1-e1630721380450-463x600.jpeg\";s:5:\"width\";i:463;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:44:\"real-estate-pic-1-e1630721380450-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:45:\"real-estate-pic-1-e1630721380450-496x643.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:643;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:{}}}'),(11417,2056,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.41131700972669005267334796371869742870330810546875;s:5:\"bytes\";i:41582;s:11:\"size_before\";i:2946326;s:10:\"size_after\";i:2904744;s:4:\"time\";d:2;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:38213;s:10:\"size_after\";i:38213;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:352514;s:10:\"size_after\";i:352514;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19009;s:10:\"size_after\";i:19009;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:534852;s:10:\"size_after\";i:534852;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:670438;s:10:\"size_after\";i:670438;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:340427;s:10:\"size_after\";i:340427;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:156397;s:10:\"size_after\";i:156397;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:232912;s:10:\"size_after\";i:232912;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:12364;s:11:\"size_before\";i:166070;s:10:\"size_after\";i:153706;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9841;s:11:\"size_before\";i:146671;s:10:\"size_after\";i:136830;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1164;s:11:\"size_before\";i:11468;s:10:\"size_after\";i:10304;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:18213;s:11:\"size_before\";i:277355;s:10:\"size_after\";i:259142;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}}}'),(11418,2057,'_wp_attached_file','2021/08/IMG_4816-1-scaled.jpg'),(11419,2057,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/08/IMG_4816-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_4816-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"IMG_4816-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_4816-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:23:\"IMG_4816-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"IMG_4816-1-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"IMG_4816-1-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:23:\"IMG_4816-1-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:22:\"IMG_4816-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:22:\"IMG_4816-1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:22:\"IMG_4816-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:22:\"IMG_4816-1-450x600.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:21:\"IMG_4816-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"IMG_4816-1-496x661.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 12 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1628603650\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_4816-1.jpg\";}'),(11420,2057,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.5109120680385164092740524210967123508453369140625;s:5:\"bytes\";i:622668;s:11:\"size_before\";i:6546880;s:10:\"size_after\";i:5924212;s:4:\"time\";d:3.0800000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:8779;s:11:\"size_before\";i:68500;s:10:\"size_after\";i:59721;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:68812;s:11:\"size_before\";i:639340;s:10:\"size_after\";i:570528;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:3286;s:11:\"size_before\";i:25340;s:10:\"size_after\";i:22054;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:570528;s:10:\"size_after\";i:570528;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:127518;s:11:\"size_before\";i:1247779;s:10:\"size_after\";i:1120261;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:197780;s:11:\"size_before\";i:1970343;s:10:\"size_after\";i:1772563;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:63324;s:11:\"size_before\";i:645560;s:10:\"size_after\";i:582236;s:4:\"time\";d:1.229999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:25389;s:11:\"size_before\";i:233976;s:10:\"size_after\";i:208587;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:36563;s:11:\"size_before\";i:354733;s:10:\"size_after\";i:318170;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:24697;s:11:\"size_before\";i:228186;s:10:\"size_after\";i:203489;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:29798;s:11:\"size_before\";i:250974;s:10:\"size_after\";i:221176;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1672;s:11:\"size_before\";i:13330;s:10:\"size_after\";i:11658;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.75;s:5:\"bytes\";i:35050;s:11:\"size_before\";i:298291;s:10:\"size_after\";i:263241;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(11421,2059,'_wp_attached_file','2021/08/2021-Educational-Calendar-1.xlsx'),(11422,2060,'_wp_attached_file','2021/08/LRD-Roster_080621.xlsx'),(11425,2062,'_wp_attached_file','2021/08/2021-Educational-Calendar-2.xlsx'),(11428,2063,'_wp_attached_file','2021/08/me-10.21-1-e1630721221223.jpg'),(11429,2063,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:467;s:4:\"file\";s:37:\"2021/08/me-10.21-1-e1630721221223.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"me-10.21-1-e1630721198355-257x300.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"me-10.21-1-e1630721198355-878x1024.jpg\";s:5:\"width\";i:878;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"me-10.21-1-e1630721198355-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:37:\"me-10.21-1-e1630721198355-768x896.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:38:\"me-10.21-1-e1630721198355-1073x785.jpg\";s:5:\"width\";i:1073;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:37:\"me-10.21-1-e1630721198355-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:37:\"me-10.21-1-e1630721198355-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:37:\"me-10.21-1-e1630721198355-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:37:\"me-10.21-1-e1630721198355-514x600.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:36:\"me-10.21-1-e1630721198355-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:37:\"me-10.21-1-e1630721198355-496x579.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1536847990\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"450\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(11430,2065,'_wp_attached_file','2021/08/2021-Educational-Calendar-3.xlsx'),(11431,2066,'_wp_attached_file','2021/08/LRD-Roster_080621-1.xlsx'),(11434,2067,'_wp_attached_file','2021/08/Cecilia-Profile-Picture.jpg'),(11435,2067,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:130;s:6:\"height\";i:180;s:4:\"file\";s:35:\"2021/08/Cecilia-Profile-Picture.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Cecilia-Profile-Picture-130x150.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:34:\"Cecilia-Profile-Picture-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(11436,2067,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.823465151846187293216416946961544454097747802734375;s:5:\"bytes\";i:875;s:11:\"size_before\";i:22885;s:10:\"size_after\";i:22010;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13267;s:10:\"size_after\";i:13267;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:875;s:11:\"size_before\";i:9618;s:10:\"size_after\";i:8743;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(11437,2068,'_wp_attached_file','2021/08/WEB-3-e1630720894628.jpg'),(11438,2068,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:313;s:4:\"file\";s:32:\"2021/08/WEB-3-e1630720894628.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"WEB-3-e1630720870122-300x235.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"WEB-3-e1630720870122-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"WEB-3-e1630720870122-768x601.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:32:\"WEB-3-e1630720870122-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:32:\"WEB-3-e1630720870122-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:32:\"WEB-3-e1630720870122-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:32:\"WEB-3-e1630720870122-766x600.jpg\";s:5:\"width\";i:766;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:31:\"WEB-3-e1630720870122-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:32:\"WEB-3-e1630720870122-496x388.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:388;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:12:\"Jose Miranda\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1581634518\";s:9:\"copyright\";s:19:\"All Rights Reserved\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(11439,2068,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.350670926271700711396306360256858170032501220703125;s:5:\"bytes\";i:24436;s:11:\"size_before\";i:1039533;s:10:\"size_after\";i:1015097;s:4:\"time\";d:1.2700000000000002398081733190338127315044403076171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:35972;s:10:\"size_after\";i:35972;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16676;s:10:\"size_after\";i:16676;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:174952;s:10:\"size_after\";i:174952;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:130427;s:10:\"size_after\";i:130427;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:196196;s:10:\"size_after\";i:196196;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14247;s:11:\"size_before\";i:143144;s:10:\"size_after\";i:128897;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:239185;s:10:\"size_after\";i:239185;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1121;s:11:\"size_before\";i:10595;s:10:\"size_after\";i:9474;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:9068;s:11:\"size_before\";i:92386;s:10:\"size_after\";i:83318;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(11442,2070,'_wp_attached_file','2021/09/thumbnail-1-e1630720699169.jpeg'),(11443,2070,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:461;s:4:\"file\";s:39:\"2021/09/thumbnail-1-e1630720699169.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"thumbnail-1-e1630720664685-260x300.jpeg\";s:5:\"width\";i:260;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"thumbnail-1-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"thumbnail-1-e1630720664685-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"thumbnail-1-e1630720664685-768x886.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:886;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:39:\"thumbnail-1-e1630720664685-810x785.jpeg\";s:5:\"width\";i:810;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:39:\"thumbnail-1-e1630720664685-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:39:\"thumbnail-1-e1630720664685-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:39:\"thumbnail-1-e1630720664685-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:39:\"thumbnail-1-e1630720664685-520x600.jpeg\";s:5:\"width\";i:520;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:38:\"thumbnail-1-e1630720664685-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:39:\"thumbnail-1-e1630720664685-496x572.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:572;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:{}}}'),(11444,2070,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4324671589108550762148297508247196674346923828125;s:5:\"bytes\";i:154491;s:11:\"size_before\";i:2843846;s:10:\"size_after\";i:2689355;s:4:\"time\";d:2.32999999999999918287585387588478624820709228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:60391;s:10:\"size_after\";i:60391;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:66278;s:11:\"size_before\";i:580121;s:10:\"size_after\";i:513843;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22354;s:10:\"size_after\";i:22354;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:513843;s:10:\"size_after\";i:513843;s:4:\"time\";d:0.689999999999999946709294817992486059665679931640625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:423433;s:10:\"size_after\";i:423433;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:196859;s:10:\"size_after\";i:196859;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:289953;s:10:\"size_after\";i:289953;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:24064;s:11:\"size_before\";i:216480;s:10:\"size_after\";i:192416;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:28802;s:11:\"size_before\";i:241973;s:10:\"size_after\";i:213171;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1708;s:11:\"size_before\";i:13523;s:10:\"size_after\";i:11815;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:33639;s:11:\"size_before\";i:284916;s:10:\"size_after\";i:251277;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(11446,2072,'_wp_attached_file','2021/08/Karie_Arem.jpg'),(11447,2072,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:457;s:6:\"height\";i:520;s:4:\"file\";s:22:\"2021/08/Karie_Arem.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Karie_Arem-264x300.jpg\";s:5:\"width\";i:264;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Karie_Arem-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:22:\"Karie_Arem-457x444.jpg\";s:5:\"width\";i:457;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:22:\"Karie_Arem-457x438.jpg\";s:5:\"width\";i:457;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:21:\"Karie_Arem-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:3:\"4.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3500\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1628946030\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";}}'),(11448,2072,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.532263097673450147340190596878528594970703125;s:5:\"bytes\";i:41238;s:11:\"size_before\";i:432615;s:10:\"size_after\";i:391377;s:4:\"time\";d:0.210000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7463;s:11:\"size_before\";i:72322;s:10:\"size_after\";i:64859;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2935;s:11:\"size_before\";i:24994;s:10:\"size_after\";i:22059;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:14770;s:11:\"size_before\";i:163425;s:10:\"size_after\";i:148655;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:14452;s:11:\"size_before\";i:158677;s:10:\"size_after\";i:144225;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1618;s:11:\"size_before\";i:13197;s:10:\"size_after\";i:11579;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(11451,481,'fave_agent_visible','0'),(11457,2077,'_edit_lock','1630720753:1'),(11458,2070,'_wp_attachment_backup_sizes','a:14:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:810;s:6:\"height\";i:1080;s:4:\"file\";s:16:\"thumbnail-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:24:\"thumbnail-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:24:\"thumbnail-1-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:25:\"thumbnail-1-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:25:\"thumbnail-1-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-gallery-orig\";a:4:{s:4:\"file\";s:24:\"thumbnail-1-810x785.jpeg\";s:5:\"width\";i:810;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-1-orig\";a:4:{s:4:\"file\";s:24:\"thumbnail-1-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-4-orig\";a:4:{s:4:\"file\";s:24:\"thumbnail-1-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-6-orig\";a:4:{s:4:\"file\";s:24:\"thumbnail-1-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"houzez-variable-gallery-orig\";a:4:{s:4:\"file\";s:24:\"thumbnail-1-450x600.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-map-info-orig\";a:4:{s:4:\"file\";s:23:\"thumbnail-1-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:24:\"thumbnail-1-496x661.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1630720690735\";a:3:{s:5:\"width\";i:810;s:6:\"height\";i:934;s:4:\"file\";s:31:\"thumbnail-1-e1630720664685.jpeg\";}s:18:\"full-1630720699169\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:461;s:4:\"file\";s:31:\"thumbnail-1-e1630720690735.jpeg\";}}'),(11459,2077,'_thumbnail_id','2070'),(11460,2077,'_edit_last','1'),(11461,2077,'fave_agent_company','Lantern Realty and Development'),(11462,2077,'fave_agent_email','ikenrick990@gmail.com'),(11463,2077,'fave_agent_visible','0'),(11464,2077,'fave_agent_position','Licensed Agent'),(11465,2077,'fave_agent_license','264347'),(11466,2077,'fave_agent_mobile','828-398-8700'),(11467,2077,'fave_agent_website','https://lantern-realty.com/'),(11468,2077,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11469,2077,'fave_agent_logo','28'),(11470,2077,'fave_agent_agencies','1598'),(11471,2077,'_primary_term_agent_category','7'),(11472,2077,'rs_page_bg_color',''),(11473,2079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11474,2079,'_edit_lock','1630720936:1'),(11475,2068,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:643;s:4:\"file\";s:9:\"WEB-3.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:17:\"WEB-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:17:\"WEB-3-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:17:\"WEB-3-768x494.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:494;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-1-orig\";a:4:{s:4:\"file\";s:17:\"WEB-3-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-4-orig\";a:4:{s:4:\"file\";s:17:\"WEB-3-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-6-orig\";a:4:{s:4:\"file\";s:17:\"WEB-3-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"houzez-variable-gallery-orig\";a:4:{s:4:\"file\";s:17:\"WEB-3-933x600.jpg\";s:5:\"width\";i:933;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-map-info-orig\";a:4:{s:4:\"file\";s:16:\"WEB-3-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:17:\"WEB-3-496x319.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1630720894628\";a:3:{s:5:\"width\";i:820;s:6:\"height\";i:642;s:4:\"file\";s:24:\"WEB-3-e1630720870122.jpg\";}}'),(11476,2079,'_thumbnail_id','2068'),(11477,2079,'_edit_last','1'),(11478,2079,'fave_agent_company','Lantern Realty and Development'),(11479,2079,'fave_agent_email','casey.maness@gmail.com'),(11480,2079,'fave_agent_visible','0'),(11481,2079,'fave_agent_position','Licensed Agent'),(11482,2079,'fave_agent_license','NC 318253'),(11483,2079,'fave_agent_mobile','828-782-0223'),(11484,2079,'fave_agent_website','https://lantern-realty.com/'),(11485,2079,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11486,2079,'fave_agent_logo','28'),(11487,2079,'fave_agent_agencies','1598'),(11488,2079,'_primary_term_agent_category','22'),(11489,2079,'rs_page_bg_color',''),(11551,2099,'_wp_attached_file','2021/09/2021-Educational-Calendar-1.xlsx'),(11550,2098,'_wp_attached_file','2021/09/LRD-Roster_083021-1.xlsx'),(11492,2082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11493,2082,'_edit_lock','1630721060:1'),(11494,2082,'_thumbnail_id','2067'),(11495,2082,'_edit_last','1'),(11496,2082,'fave_agent_company','Lantern Realty and Development'),(11497,2082,'fave_agent_email','cferrarihomes@gmail.com'),(11498,2082,'fave_agent_visible','0'),(11499,2082,'fave_agent_position','Licensed Agent'),(11500,2082,'fave_agent_license','NC 222282'),(11501,2082,'fave_agent_mobile','704-728-2492'),(11502,2082,'fave_agent_website','https://lantern-realty.com/'),(11503,2082,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11504,2082,'fave_agent_logo','28'),(11505,2082,'fave_agent_agencies','45'),(11506,2082,'_primary_term_agent_category','7'),(11507,2082,'rs_page_bg_color',''),(11508,2084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11509,2084,'_edit_lock','1630721263:1'),(11510,2063,'_wp_attachment_backup_sizes','a:13:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1072;s:6:\"height\";i:1403;s:4:\"file\";s:14:\"me-10.21-1.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:22:\"me-10.21-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:22:\"me-10.21-1-229x300.jpg\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:23:\"me-10.21-1-768x1005.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1005;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:23:\"me-10.21-1-782x1024.jpg\";s:5:\"width\";i:782;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-gallery-orig\";a:4:{s:4:\"file\";s:23:\"me-10.21-1-1072x785.jpg\";s:5:\"width\";i:1072;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-1-orig\";a:4:{s:4:\"file\";s:22:\"me-10.21-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-4-orig\";a:4:{s:4:\"file\";s:22:\"me-10.21-1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-6-orig\";a:4:{s:4:\"file\";s:22:\"me-10.21-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"houzez-variable-gallery-orig\";a:4:{s:4:\"file\";s:22:\"me-10.21-1-458x600.jpg\";s:5:\"width\";i:458;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-map-info-orig\";a:4:{s:4:\"file\";s:21:\"me-10.21-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:22:\"me-10.21-1-496x649.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:649;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1630721221223\";a:3:{s:5:\"width\";i:1073;s:6:\"height\";i:1252;s:4:\"file\";s:29:\"me-10.21-1-e1630721198355.jpg\";}}'),(11511,2084,'_thumbnail_id','2063'),(11512,2084,'_edit_last','1'),(11513,2084,'fave_agent_company','Lantern Realty and Development'),(11514,2084,'fave_agent_email','jenstoll88@gmail.com'),(11515,2084,'fave_agent_visible','0'),(11516,2084,'fave_agent_position','Licensed Agent'),(11517,2084,'fave_agent_license','NC 303092'),(11518,2084,'fave_agent_mobile','828-808-8842'),(11519,2084,'fave_agent_website','https://lantern-realty.com/'),(11520,2084,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11521,2084,'fave_agent_logo','28'),(11522,2084,'fave_agent_agencies','1598'),(11523,2084,'_primary_term_agent_category','22'),(11524,2084,'rs_page_bg_color',''),(11525,2086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11526,2086,'_edit_lock','1630721444:1'),(11527,2056,'_wp_attachment_backup_sizes','a:14:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:941;s:6:\"height\";i:1625;s:4:\"file\";s:22:\"real-estate-pic-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:30:\"real-estate-pic-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:30:\"real-estate-pic-1-174x300.jpeg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:31:\"real-estate-pic-1-768x1326.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1326;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:31:\"real-estate-pic-1-593x1024.jpeg\";s:5:\"width\";i:593;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:31:\"real-estate-pic-1-889x1536.jpeg\";s:5:\"width\";i:889;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-gallery-orig\";a:4:{s:4:\"file\";s:30:\"real-estate-pic-1-941x785.jpeg\";s:5:\"width\";i:941;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-1-orig\";a:4:{s:4:\"file\";s:30:\"real-estate-pic-1-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-4-orig\";a:4:{s:4:\"file\";s:30:\"real-estate-pic-1-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-6-orig\";a:4:{s:4:\"file\";s:30:\"real-estate-pic-1-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"houzez-variable-gallery-orig\";a:4:{s:4:\"file\";s:30:\"real-estate-pic-1-347x600.jpeg\";s:5:\"width\";i:347;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-map-info-orig\";a:4:{s:4:\"file\";s:29:\"real-estate-pic-1-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:30:\"real-estate-pic-1-496x857.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:857;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1630721410478\";a:3:{s:5:\"width\";i:942;s:6:\"height\";i:1222;s:4:\"file\";s:37:\"real-estate-pic-1-e1630721380450.jpeg\";}}'),(11528,2086,'_thumbnail_id','2056'),(11529,2086,'_edit_last','1'),(11530,2086,'fave_agent_company','Lantern Realty and Development'),(11531,2086,'fave_agent_email','mistymlularoe@yahoo.com'),(11532,2086,'fave_agent_visible','0'),(11533,2086,'fave_agent_position','Licensed Agent'),(11534,2086,'fave_agent_license','NC 329874'),(11535,2086,'fave_agent_mobile','704-224-7380'),(11536,2086,'fave_agent_website','https://lantern-realty.com/'),(11537,2086,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11538,2086,'fave_agent_logo','28'),(11539,2086,'fave_agent_agencies','45'),(11540,2086,'_primary_term_agent_category','7'),(11541,2086,'rs_page_bg_color',''),(11542,2089,'_wp_attached_file','2021/09/2021-Educational-Calendar.xlsx'),(11543,2090,'_wp_attached_file','2021/09/LRD-Roster_083021.xlsx'),(11556,2102,'_wp_attached_file','2021/09/LRD-Roster_092321.xlsx'),(11557,2103,'_wp_attached_file','2021/09/2021-Educational-Calendar-2.xlsx'),(11565,2108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:44:\"2021/09/DSC2804-79-scaled-e1637541944931.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"DSC2804-79-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"DSC2804-79-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"DSC2804-79-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:22:\"DSC2804-79-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"DSC2804-79-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"DSC2804-79-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:23:\"DSC2804-79-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:22:\"DSC2804-79-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:22:\"DSC2804-79-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:22:\"DSC2804-79-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:22:\"DSC2804-79-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:21:\"DSC2804-79-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"DSC2804-79-496x331.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:16:\"Stephanie Morgan\";s:6:\"camera\";s:11:\"NIKON D7100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603033639\";s:9:\"copyright\";s:47:\"Image may not be used, distributed, or altered.\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"DSC2804-79.jpg\";}'),(11564,2108,'_wp_attached_file','2021/09/DSC2804-79-scaled-e1637541944931.jpg'),(11566,2108,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.277916533876993554486034554429352283477783203125;s:5:\"bytes\";i:485981;s:11:\"size_before\";i:5870813;s:10:\"size_after\";i:5384832;s:4:\"time\";d:1.6200000000000003286260152890463359653949737548828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:5620;s:11:\"size_before\";i:54986;s:10:\"size_after\";i:49366;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:44790;s:11:\"size_before\";i:508338;s:10:\"size_after\";i:463548;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:2508;s:11:\"size_before\";i:23881;s:10:\"size_after\";i:21373;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:27153;s:11:\"size_before\";i:292475;s:10:\"size_after\";i:265322;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:87567;s:11:\"size_before\";i:1099963;s:10:\"size_after\";i:1012396;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:143054;s:11:\"size_before\";i:1953356;s:10:\"size_after\";i:1810302;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:56520;s:11:\"size_before\";i:660640;s:10:\"size_after\";i:604120;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:19278;s:11:\"size_before\";i:205891;s:10:\"size_after\";i:186613;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:29657;s:11:\"size_before\";i:324977;s:10:\"size_after\";i:295320;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:18958;s:11:\"size_before\";i:201298;s:10:\"size_after\";i:182340;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:36139;s:11:\"size_before\";i:398050;s:10:\"size_after\";i:361911;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1529;s:11:\"size_before\";i:13355;s:10:\"size_after\";i:11826;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:13208;s:11:\"size_before\";i:133603;s:10:\"size_after\";i:120395;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(11567,2109,'_wp_attached_file','2021/10/head-shot.jpg'),(11568,2109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:280;s:4:\"file\";s:21:\"2021/10/head-shot.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"head-shot-300x263.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"head-shot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"head-shot-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(11569,2109,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.40125505141768247341360620339401066303253173828125;s:5:\"bytes\";i:853;s:11:\"size_before\";i:60874;s:10:\"size_after\";i:60021;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37391;s:10:\"size_after\";i:37391;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14562;s:10:\"size_after\";i:14562;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:853;s:11:\"size_before\";i:8921;s:10:\"size_after\";i:8068;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(11570,2111,'_wp_attached_file','2021/10/LRD-Roster_092321.xlsx'),(11571,2112,'_wp_attached_file','2021/10/2021-Educational-Calendar.xlsx'),(11574,2113,'_wp_attached_file','2021/10/new-profile-pic-e1637540717716.jpg'),(11575,2113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:497;s:4:\"file\";s:42:\"2021/10/new-profile-pic-e1637540717716.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"new-profile-pic-e1637540685341-300x298.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"new-profile-pic-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"new-profile-pic-e1637540685341-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:\"new-profile-pic-e1637540685341-768x763.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:763;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:43:\"new-profile-pic-e1637540685341-1013x785.jpg\";s:5:\"width\";i:1013;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:42:\"new-profile-pic-e1637540685341-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:42:\"new-profile-pic-e1637540685341-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:42:\"new-profile-pic-e1637540685341-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:42:\"new-profile-pic-e1637540685341-604x600.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:41:\"new-profile-pic-e1637540685341-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:42:\"new-profile-pic-e1637540685341-496x493.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:493;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:{}}}'),(11576,2113,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.5294533236166198975070074084214866161346435546875;s:5:\"bytes\";i:81421;s:11:\"size_before\";i:1797590;s:10:\"size_after\";i:1716169;s:4:\"time\";d:0.5900000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:36331;s:10:\"size_after\";i:36331;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:298716;s:10:\"size_after\";i:298716;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17304;s:10:\"size_after\";i:17304;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:21455;s:11:\"size_before\";i:198650;s:10:\"size_after\";i:177195;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:382545;s:10:\"size_after\";i:382545;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:132904;s:10:\"size_after\";i:132904;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:203932;s:10:\"size_after\";i:203932;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:16973;s:11:\"size_before\";i:147349;s:10:\"size_after\";i:130376;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:30413;s:11:\"size_before\";i:271808;s:10:\"size_after\";i:241395;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1294;s:11:\"size_before\";i:10759;s:10:\"size_after\";i:9465;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:11286;s:11:\"size_before\";i:97292;s:10:\"size_after\";i:86006;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(11585,2119,'_wp_attached_file','2021/10/2021-Educational-Calendar-1.xlsx'),(11592,2122,'_wp_attached_file','2021/10/file1662-e1637542172910.jpeg'),(11593,2122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:36:\"2021/10/file1662-e1637542172910.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"file1662-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"file1662-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"file1662-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"file1662-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"file1662-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:22:\"file1662-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"file1662-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:21:\"file1662-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"file1662-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:21:\"file1662-800x600.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"file1662-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"file1662-496x372.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone XS Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1556985836\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11594,2122,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.40420449567557792391880866489373147487640380859375;s:5:\"bytes\";i:90068;s:11:\"size_before\";i:2645787;s:10:\"size_after\";i:2555719;s:4:\"time\";d:1.109999999999999875655021241982467472553253173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34843;s:10:\"size_after\";i:34843;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:357253;s:10:\"size_after\";i:357253;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15075;s:10:\"size_after\";i:15075;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:23291;s:11:\"size_before\";i:228279;s:10:\"size_after\";i:204988;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:757905;s:10:\"size_after\";i:757905;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:421105;s:10:\"size_after\";i:421105;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:15175;s:11:\"size_before\";i:139576;s:10:\"size_after\";i:124401;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:200225;s:10:\"size_after\";i:200225;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:14714;s:11:\"size_before\";i:135877;s:10:\"size_after\";i:121163;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:24689;s:11:\"size_before\";i:247111;s:10:\"size_after\";i:222422;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1064;s:11:\"size_before\";i:8465;s:10:\"size_after\";i:7401;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:11135;s:11:\"size_before\";i:100073;s:10:\"size_after\";i:88938;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(11595,2123,'_wp_attached_file','2021/10/head-shot-1.jpg'),(11596,2123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:280;s:4:\"file\";s:23:\"2021/10/head-shot-1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"head-shot-1-300x263.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"head-shot-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"head-shot-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(11597,2123,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.40125505141768247341360620339401066303253173828125;s:5:\"bytes\";i:853;s:11:\"size_before\";i:60874;s:10:\"size_after\";i:60021;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37391;s:10:\"size_after\";i:37391;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14562;s:10:\"size_after\";i:14562;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:853;s:11:\"size_before\";i:8921;s:10:\"size_after\";i:8068;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(11600,2125,'_wp_attached_file','2021/10/87ABBC44-7835-4A60-A044-F18C0469CA0D.jpeg'),(11601,2125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1874;s:6:\"height\";i:2229;s:4:\"file\";s:49:\"2021/10/87ABBC44-7835-4A60-A044-F18C0469CA0D.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-252x300.jpeg\";s:5:\"width\";i:252;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-861x1024.jpeg\";s:5:\"width\";i:861;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-768x913.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:913;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-1291x1536.jpeg\";s:5:\"width\";i:1291;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-1722x2048.jpeg\";s:5:\"width\";i:1722;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-504x600.jpeg\";s:5:\"width\";i:504;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"87ABBC44-7835-4A60-A044-F18C0469CA0D-496x590.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:590;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:{}}}'),(11602,2125,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.946946979215104622795706745819188654422760009765625;s:5:\"bytes\";i:96635;s:11:\"size_before\";i:4963412;s:10:\"size_after\";i:4866777;s:4:\"time\";d:1.4500000000000003996802888650563545525074005126953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44252;s:10:\"size_after\";i:44252;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:466017;s:10:\"size_after\";i:466017;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15193;s:10:\"size_after\";i:15193;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:44967;s:11:\"size_before\";i:419144;s:10:\"size_after\";i:374177;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1010799;s:10:\"size_after\";i:1010799;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1713545;s:10:\"size_after\";i:1713545;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:423422;s:10:\"size_after\";i:423422;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:136727;s:10:\"size_after\";i:136727;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:216752;s:10:\"size_after\";i:216752;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:15052;s:11:\"size_before\";i:148537;s:10:\"size_after\";i:133485;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:18149;s:11:\"size_before\";i:182685;s:10:\"size_after\";i:164536;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:940;s:11:\"size_before\";i:9384;s:10:\"size_after\";i:8444;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:17527;s:11:\"size_before\";i:176955;s:10:\"size_after\";i:159428;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(11603,2126,'_wp_attached_file','2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-e1637542428637.jpeg'),(11604,2126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:595;s:4:\"file\";s:64:\"2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-e1637542428637.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"3E99A0E8-6277-4155-8911-0005466BBA00-252x300.jpeg\";s:5:\"width\";i:252;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"3E99A0E8-6277-4155-8911-0005466BBA00-861x1024.jpeg\";s:5:\"width\";i:861;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"3E99A0E8-6277-4155-8911-0005466BBA00-768x913.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:913;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"3E99A0E8-6277-4155-8911-0005466BBA00-1291x1536.jpeg\";s:5:\"width\";i:1291;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"3E99A0E8-6277-4155-8911-0005466BBA00-1722x2048.jpeg\";s:5:\"width\";i:1722;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"3E99A0E8-6277-4155-8911-0005466BBA00-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"3E99A0E8-6277-4155-8911-0005466BBA00-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"3E99A0E8-6277-4155-8911-0005466BBA00-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"3E99A0E8-6277-4155-8911-0005466BBA00-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"3E99A0E8-6277-4155-8911-0005466BBA00-504x600.jpeg\";s:5:\"width\";i:504;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"3E99A0E8-6277-4155-8911-0005466BBA00-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"3E99A0E8-6277-4155-8911-0005466BBA00-496x590.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:590;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:{}}}'),(11605,2126,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.946946979215104622795706745819188654422760009765625;s:5:\"bytes\";i:96635;s:11:\"size_before\";i:4963412;s:10:\"size_after\";i:4866777;s:4:\"time\";d:1.2500000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44252;s:10:\"size_after\";i:44252;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:466017;s:10:\"size_after\";i:466017;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15193;s:10:\"size_after\";i:15193;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:44967;s:11:\"size_before\";i:419144;s:10:\"size_after\";i:374177;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1010799;s:10:\"size_after\";i:1010799;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1713545;s:10:\"size_after\";i:1713545;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:423422;s:10:\"size_after\";i:423422;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:136727;s:10:\"size_after\";i:136727;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:216752;s:10:\"size_after\";i:216752;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:15052;s:11:\"size_before\";i:148537;s:10:\"size_after\";i:133485;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:18149;s:11:\"size_before\";i:182685;s:10:\"size_after\";i:164536;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:940;s:11:\"size_before\";i:9384;s:10:\"size_after\";i:8444;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:17527;s:11:\"size_before\";i:176955;s:10:\"size_after\";i:159428;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(11610,2131,'_wp_attached_file','2021/10/1.jpg'),(11611,2131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1545;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/10/1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"1-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"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:13:\"1-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"1-1187x1536.jpg\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:14:\"1-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:13:\"1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:13:\"1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:13:\"1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:13:\"1-464x600.jpg\";s:5:\"width\";i:464;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:12:\"1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:13:\"1-496x642.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:642;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:{}}}'),(11612,2131,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2344704385633971099878181121312081813812255859375;s:5:\"bytes\";i:165525;s:11:\"size_before\";i:3162211;s:10:\"size_after\";i:2996686;s:4:\"time\";d:1.7400000000000004352074256530613638460636138916015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:50840;s:10:\"size_after\";i:50840;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:389545;s:10:\"size_after\";i:389545;s:4:\"time\";d:0.65000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18899;s:10:\"size_after\";i:18899;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:70798;s:11:\"size_before\";i:453809;s:10:\"size_after\";i:383011;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:790391;s:10:\"size_after\";i:790391;s:4:\"time\";d:0.5100000000000000088817841970012523233890533447265625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:432333;s:10:\"size_after\";i:432333;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:162606;s:10:\"size_after\";i:162606;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:245735;s:10:\"size_after\";i:245735;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:27195;s:11:\"size_before\";i:183666;s:10:\"size_after\";i:156471;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:29357;s:11:\"size_before\";i:195346;s:10:\"size_after\";i:165989;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1480;s:11:\"size_before\";i:12765;s:10:\"size_after\";i:11285;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:36695;s:11:\"size_before\";i:226276;s:10:\"size_after\";i:189581;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(11613,2132,'_wp_attached_file','2021/10/2.jpg'),(11614,2132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1545;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/10/2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"2-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-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:13:\"2-768x994.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"2-1187x1536.jpg\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:14:\"2-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:13:\"2-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:13:\"2-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:13:\"2-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:13:\"2-464x600.jpg\";s:5:\"width\";i:464;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:12:\"2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:13:\"2-496x642.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:642;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:{}}}'),(11615,2132,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.212385038590664265711893676780164241790771484375;s:5:\"bytes\";i:181064;s:11:\"size_before\";i:2914565;s:10:\"size_after\";i:2733501;s:4:\"time\";d:1.6500000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:47564;s:10:\"size_after\";i:47564;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:369303;s:10:\"size_after\";i:369303;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19178;s:10:\"size_after\";i:19178;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:77402;s:11:\"size_before\";i:438147;s:10:\"size_after\";i:360745;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:740222;s:10:\"size_after\";i:740222;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:373534;s:10:\"size_after\";i:373534;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140074;s:10:\"size_after\";i:140074;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:204992;s:10:\"size_after\";i:204992;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:27589;s:11:\"size_before\";i:159052;s:10:\"size_after\";i:131463;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.760000000000001563194018672220408916473388671875;s:5:\"bytes\";i:33654;s:11:\"size_before\";i:189529;s:10:\"size_after\";i:155875;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1756;s:11:\"size_before\";i:11887;s:10:\"size_after\";i:10131;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:40663;s:11:\"size_before\";i:221083;s:10:\"size_after\";i:180420;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(11620,2134,'_wp_attached_file','2021/10/Jamie-medium-pic.jpg'),(11621,2134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:509;s:6:\"height\";i:640;s:4:\"file\";s:28:\"2021/10/Jamie-medium-pic.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Jamie-medium-pic-239x300.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Jamie-medium-pic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:28:\"Jamie-medium-pic-509x444.jpg\";s:5:\"width\";i:509;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:28:\"Jamie-medium-pic-509x564.jpg\";s:5:\"width\";i:509;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:28:\"Jamie-medium-pic-509x438.jpg\";s:5:\"width\";i:509;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:28:\"Jamie-medium-pic-477x600.jpg\";s:5:\"width\";i:477;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"Jamie-medium-pic-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Jamie-medium-pic-496x624.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:624;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 11\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1635442276\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.71\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(11622,2134,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.1267269383461251675004888284092885442078113555908203125;s:5:\"bytes\";i:1507;s:11:\"size_before\";i:1189171;s:10:\"size_after\";i:1187664;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:68512;s:10:\"size_after\";i:68512;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23675;s:10:\"size_after\";i:23675;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:187444;s:10:\"size_after\";i:187444;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:239820;s:10:\"size_after\";i:239820;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:186535;s:10:\"size_after\";i:186535;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:228828;s:10:\"size_after\";i:228828;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1507;s:11:\"size_before\";i:13508;s:10:\"size_after\";i:12001;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:240849;s:10:\"size_after\";i:240849;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(11623,2135,'_wp_attached_file','2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-scaled-e1637542585252.jpeg'),(11624,2135,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:71:\"2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-scaled-e1637542585252.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"3F16EC84-96CD-4CBF-8074-153E48832C84-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"3F16EC84-96CD-4CBF-8074-153E48832C84-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"3F16EC84-96CD-4CBF-8074-153E48832C84-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"3F16EC84-96CD-4CBF-8074-153E48832C84-1152x1536.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"3F16EC84-96CD-4CBF-8074-153E48832C84-1536x2048.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"3F16EC84-96CD-4CBF-8074-153E48832C84-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"3F16EC84-96CD-4CBF-8074-153E48832C84-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"3F16EC84-96CD-4CBF-8074-153E48832C84-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"3F16EC84-96CD-4CBF-8074-153E48832C84-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"3F16EC84-96CD-4CBF-8074-153E48832C84-450x600.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"3F16EC84-96CD-4CBF-8074-153E48832C84-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"3F16EC84-96CD-4CBF-8074-153E48832C84-496x661.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:661;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:{}}s:14:\"original_image\";s:41:\"3F16EC84-96CD-4CBF-8074-153E48832C84.jpeg\";}'),(11625,2135,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.349566151550373405143545824103057384490966796875;s:5:\"bytes\";i:1050784;s:11:\"size_before\";i:7871297;s:10:\"size_after\";i:6820513;s:4:\"time\";d:1.6500000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12967;s:11:\"size_before\";i:84850;s:10:\"size_after\";i:71883;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:110804;s:11:\"size_before\";i:744351;s:10:\"size_after\";i:633547;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4866;s:11:\"size_before\";i:30328;s:10:\"size_after\";i:25462;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:633547;s:10:\"size_after\";i:633547;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:212292;s:11:\"size_before\";i:1481755;s:10:\"size_after\";i:1269463;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5;s:5:\"bytes\";i:324498;s:11:\"size_before\";i:2403986;s:10:\"size_after\";i:2079488;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:127248;s:11:\"size_before\";i:832105;s:10:\"size_after\";i:704857;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.129999999999999005240169935859739780426025390625;s:5:\"bytes\";i:45751;s:11:\"size_before\";i:283639;s:10:\"size_after\";i:237888;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:70116;s:11:\"size_before\";i:435552;s:10:\"size_after\";i:365436;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:44605;s:11:\"size_before\";i:276726;s:10:\"size_after\";i:232121;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:43407;s:11:\"size_before\";i:297887;s:10:\"size_after\";i:254480;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2525;s:11:\"size_before\";i:15631;s:10:\"size_after\";i:13106;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:51705;s:11:\"size_before\";i:350940;s:10:\"size_after\";i:299235;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(11626,2137,'_wp_attached_file','2021/11/1.png'),(11627,2137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1545;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/11/1.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"1-791x1024.png\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"1-768x994.png\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"1-1187x1536.png\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:14:\"1-1170x785.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:13:\"1-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:13:\"1-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:13:\"1-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:13:\"1-464x600.png\";s:5:\"width\";i:464;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:12:\"1-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:13:\"1-496x642.png\";s:5:\"width\";i:496;s:6:\"height\";i:642;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11628,2137,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.98010700843002462878672531587653793394565582275390625;s:5:\"bytes\";i:50412;s:11:\"size_before\";i:5143520;s:10:\"size_after\";i:5093108;s:4:\"time\";d:19.55999999999999516830939683131873607635498046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63048;s:10:\"size_after\";i:63048;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:649708;s:10:\"size_after\";i:649708;s:4:\"time\";d:2.979999999999999982236431605997495353221893310546875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26301;s:10:\"size_after\";i:26301;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:568565;s:10:\"size_after\";i:568565;s:4:\"time\";d:1.3899999999999999023003738329862244427204132080078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1408570;s:10:\"size_after\";i:1408570;s:4:\"time\";d:4.78000000000000024868995751603506505489349365234375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:786514;s:10:\"size_after\";i:786514;s:4:\"time\";d:5.7400000000000002131628207280300557613372802734375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:303379;s:10:\"size_after\";i:303379;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:471790;s:10:\"size_after\";i:471790;s:4:\"time\";d:0.9699999999999999733546474089962430298328399658203125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:295941;s:10:\"size_after\";i:295941;s:4:\"time\";d:1.399999999999999911182158029987476766109466552734375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:26133;s:11:\"size_before\";i:242382;s:10:\"size_after\";i:216249;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.11999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:19;s:11:\"size_before\";i:15510;s:10:\"size_after\";i:15491;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:24260;s:11:\"size_before\";i:311812;s:10:\"size_after\";i:287552;s:4:\"time\";d:1.1100000000000000976996261670137755572795867919921875;}}}'),(11629,2138,'_wp_attached_file','2021/11/2.png'),(11630,2138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1545;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/11/2.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"2-791x1024.png\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"2-768x994.png\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"2-1187x1536.png\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:14:\"2-1170x785.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:13:\"2-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:13:\"2-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:13:\"2-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:13:\"2-464x600.png\";s:5:\"width\";i:464;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:12:\"2-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:13:\"2-496x642.png\";s:5:\"width\";i:496;s:6:\"height\";i:642;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11631,2138,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.803831328337583528309551184065639972686767578125;s:5:\"bytes\";i:409828;s:11:\"size_before\";i:3793358;s:10:\"size_after\";i:3383530;s:4:\"time\";d:19.220000000000002415845301584340631961822509765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43748;s:10:\"size_after\";i:43748;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:457155;s:10:\"size_after\";i:457155;s:4:\"time\";d:2.45000000000000017763568394002504646778106689453125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18470;s:10:\"size_after\";i:18470;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:139888;s:11:\"size_before\";i:502330;s:10:\"size_after\";i:362442;s:4:\"time\";d:2.12000000000000010658141036401502788066864013671875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:978486;s:10:\"size_after\";i:978486;s:4:\"time\";d:6.45000000000000017763568394002504646778106689453125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:500594;s:10:\"size_after\";i:500594;s:4:\"time\";d:1.70999999999999996447286321199499070644378662109375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:188063;s:10:\"size_after\";i:188063;s:4:\"time\";d:2.0099999999999997868371792719699442386627197265625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:295460;s:10:\"size_after\";i:295460;s:4:\"time\";d:1.3200000000000000621724893790087662637233734130859375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:60714;s:11:\"size_before\";i:240063;s:10:\"size_after\";i:179349;s:4:\"time\";d:1.350000000000000088817841970012523233890533447265625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.5499999999999971578290569595992565155029296875;s:5:\"bytes\";i:103821;s:11:\"size_before\";i:243979;s:10:\"size_after\";i:140158;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1748;s:11:\"size_before\";i:11770;s:10:\"size_after\";i:10022;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.090000000000003410605131648480892181396484375;s:5:\"bytes\";i:103657;s:11:\"size_before\";i:313240;s:10:\"size_after\";i:209583;s:4:\"time\";d:1.2600000000000000088817841970012523233890533447265625;}}}'),(11639,2146,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11640,2147,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11641,2148,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11642,2149,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11643,2151,'_wp_attached_file','2021/11/1-1.png'),(11644,2151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1545;s:6:\"height\";i:2000;s:4:\"file\";s:15:\"2021/11/1-1.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-1-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"1-1-791x1024.png\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"1-1-768x994.png\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"1-1-1187x1536.png\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:16:\"1-1-1170x785.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:15:\"1-1-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:15:\"1-1-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:15:\"1-1-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:15:\"1-1-464x600.png\";s:5:\"width\";i:464;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:14:\"1-1-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:15:\"1-1-496x642.png\";s:5:\"width\";i:496;s:6:\"height\";i:642;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11645,2151,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.90110992324000072084544399331207387149333953857421875;s:5:\"bytes\";i:46645;s:11:\"size_before\";i:5176394;s:10:\"size_after\";i:5129749;s:4:\"time\";d:18.100000000000004973799150320701301097869873046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:66746;s:10:\"size_after\";i:66746;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:666509;s:10:\"size_after\";i:666509;s:4:\"time\";d:3.5;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27287;s:10:\"size_after\";i:27287;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:580793;s:10:\"size_after\";i:580793;s:4:\"time\";d:2.20000000000000017763568394002504646778106689453125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1430020;s:10:\"size_after\";i:1430020;s:4:\"time\";d:5.910000000000000142108547152020037174224853515625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:760262;s:10:\"size_after\";i:760262;s:4:\"time\";d:1.75;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:300188;s:10:\"size_after\";i:300188;s:4:\"time\";d:0.5;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:463670;s:10:\"size_after\";i:463670;s:4:\"time\";d:1.6799999999999999378275106209912337362766265869140625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:293297;s:10:\"size_after\";i:293297;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:24309;s:11:\"size_before\";i:251045;s:10:\"size_after\";i:226736;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.190000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:29;s:11:\"size_before\";i:15545;s:10:\"size_after\";i:15516;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:22307;s:11:\"size_before\";i:321032;s:10:\"size_after\";i:298725;s:4:\"time\";d:1.12000000000000010658141036401502788066864013671875;}}}'),(11646,2152,'_wp_attached_file','2021/11/2-1.png'),(11647,2152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1545;s:6:\"height\";i:2000;s:4:\"file\";s:15:\"2021/11/2-1.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-1-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"2-1-791x1024.png\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"2-1-768x994.png\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"2-1-1187x1536.png\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:16:\"2-1-1170x785.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:15:\"2-1-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:15:\"2-1-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:15:\"2-1-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:15:\"2-1-464x600.png\";s:5:\"width\";i:464;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:14:\"2-1-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:15:\"2-1-496x642.png\";s:5:\"width\";i:496;s:6:\"height\";i:642;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11648,2152,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.071926954499314632585083018057048320770263671875;s:5:\"bytes\";i:368215;s:11:\"size_before\";i:4058840;s:10:\"size_after\";i:3690625;s:4:\"time\";d:28.389999999999997015720509807579219341278076171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:49899;s:10:\"size_after\";i:49899;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:497130;s:10:\"size_after\";i:497130;s:4:\"time\";d:3.060000000000000053290705182007513940334320068359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20990;s:10:\"size_after\";i:20990;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:132455;s:11:\"size_before\";i:538583;s:10:\"size_after\";i:406128;s:4:\"time\";d:2.270000000000000017763568394002504646778106689453125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1054905;s:10:\"size_after\";i:1054905;s:4:\"time\";d:8.96000000000000085265128291212022304534912109375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:546625;s:10:\"size_after\";i:546625;s:4:\"time\";d:1.7800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:204271;s:10:\"size_after\";i:204271;s:4:\"time\";d:5.4199999999999999289457264239899814128875732421875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:318910;s:10:\"size_after\";i:318910;s:4:\"time\";d:1.45999999999999996447286321199499070644378662109375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.129999999999999005240169935859739780426025390625;s:5:\"bytes\";i:52141;s:11:\"size_before\";i:246757;s:10:\"size_after\";i:194616;s:4:\"time\";d:0.90000000000000002220446049250313080847263336181640625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.25999999999999801048033987171947956085205078125;s:5:\"bytes\";i:92967;s:11:\"size_before\";i:249533;s:10:\"size_after\";i:156566;s:4:\"time\";d:1.1999999999999999555910790149937383830547332763671875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1140;s:11:\"size_before\";i:12335;s:10:\"size_after\";i:11195;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:89512;s:11:\"size_before\";i:318902;s:10:\"size_after\";i:229390;s:4:\"time\";d:3.140000000000000124344978758017532527446746826171875;}}}'),(11659,2156,'_wp_attached_file','2021/11/MY-Profile-Photo-1-scaled-e1637542750577.jpg'),(11660,2156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:609;s:4:\"file\";s:52:\"2021/11/MY-Profile-Photo-1-scaled-e1637542750577.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"MY-Profile-Photo-1-296x300.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"MY-Profile-Photo-1-1009x1024.jpg\";s:5:\"width\";i:1009;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"MY-Profile-Photo-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:30:\"MY-Profile-Photo-1-768x779.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:779;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"MY-Profile-Photo-1-1514x1536.jpg\";s:5:\"width\";i:1514;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"MY-Profile-Photo-1-2019x2048.jpg\";s:5:\"width\";i:2019;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:31:\"MY-Profile-Photo-1-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:30:\"MY-Profile-Photo-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:30:\"MY-Profile-Photo-1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:30:\"MY-Profile-Photo-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:30:\"MY-Profile-Photo-1-591x600.jpg\";s:5:\"width\";i:591;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:29:\"MY-Profile-Photo-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:30:\"MY-Profile-Photo-1-496x503.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:503;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS Rebel T6i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1605056039\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"41\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"MY-Profile-Photo-1.jpg\";}'),(11658,2155,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.2414415587419025399640304385684430599212646484375;s:5:\"bytes\";i:691315;s:11:\"size_before\";i:7480597;s:10:\"size_after\";i:6789282;s:4:\"time\";d:1.62000000000000010658141036401502788066864013671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:9086;s:11:\"size_before\";i:83678;s:10:\"size_after\";i:74592;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:66289;s:11:\"size_before\";i:763873;s:10:\"size_after\";i:697584;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2825;s:11:\"size_before\";i:23947;s:10:\"size_after\";i:21122;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:41422;s:11:\"size_before\";i:468460;s:10:\"size_after\";i:427038;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:141128;s:11:\"size_before\";i:1572559;s:10:\"size_after\";i:1431431;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:247710;s:11:\"size_before\";i:2600150;s:10:\"size_after\";i:2352440;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:59405;s:11:\"size_before\";i:669770;s:10:\"size_after\";i:610365;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:21141;s:11:\"size_before\";i:220908;s:10:\"size_after\";i:199767;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:30797;s:11:\"size_before\";i:341973;s:10:\"size_after\";i:311176;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:20953;s:11:\"size_before\";i:216093;s:10:\"size_after\";i:195140;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:27595;s:11:\"size_before\";i:293055;s:10:\"size_after\";i:265460;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1511;s:11:\"size_before\";i:12580;s:10:\"size_after\";i:11069;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:21453;s:11:\"size_before\";i:213551;s:10:\"size_after\";i:192098;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(11656,2155,'_wp_attached_file','2021/11/MY-Profile-Photo-scaled.jpg'),(11657,2155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2524;s:6:\"height\";i:2560;s:4:\"file\";s:35:\"2021/11/MY-Profile-Photo-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"MY-Profile-Photo-296x300.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"MY-Profile-Photo-1009x1024.jpg\";s:5:\"width\";i:1009;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"MY-Profile-Photo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"MY-Profile-Photo-768x779.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:779;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"MY-Profile-Photo-1514x1536.jpg\";s:5:\"width\";i:1514;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:30:\"MY-Profile-Photo-2019x2048.jpg\";s:5:\"width\";i:2019;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:29:\"MY-Profile-Photo-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:28:\"MY-Profile-Photo-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:28:\"MY-Profile-Photo-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:28:\"MY-Profile-Photo-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:28:\"MY-Profile-Photo-591x600.jpg\";s:5:\"width\";i:591;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"MY-Profile-Photo-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"MY-Profile-Photo-496x503.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:503;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS Rebel T6i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1605056039\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"41\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"MY-Profile-Photo.jpg\";}'),(11661,2156,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.2414415587419025399640304385684430599212646484375;s:5:\"bytes\";i:691315;s:11:\"size_before\";i:7480597;s:10:\"size_after\";i:6789282;s:4:\"time\";d:2.54999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:9086;s:11:\"size_before\";i:83678;s:10:\"size_after\";i:74592;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:66289;s:11:\"size_before\";i:763873;s:10:\"size_after\";i:697584;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2825;s:11:\"size_before\";i:23947;s:10:\"size_after\";i:21122;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:41422;s:11:\"size_before\";i:468460;s:10:\"size_after\";i:427038;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:141128;s:11:\"size_before\";i:1572559;s:10:\"size_after\";i:1431431;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:247710;s:11:\"size_before\";i:2600150;s:10:\"size_after\";i:2352440;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:59405;s:11:\"size_before\";i:669770;s:10:\"size_after\";i:610365;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:21141;s:11:\"size_before\";i:220908;s:10:\"size_after\";i:199767;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:30797;s:11:\"size_before\";i:341973;s:10:\"size_after\";i:311176;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:20953;s:11:\"size_before\";i:216093;s:10:\"size_after\";i:195140;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:27595;s:11:\"size_before\";i:293055;s:10:\"size_after\";i:265460;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1511;s:11:\"size_before\";i:12580;s:10:\"size_after\";i:11069;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:21453;s:11:\"size_before\";i:213551;s:10:\"size_after\";i:192098;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(11798,2195,'_wp_attached_file','2021/12/bb-59-scaled.jpg'),(11663,2113,'_wp_attachment_backup_sizes','a:13:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1513;s:6:\"height\";i:1008;s:4:\"file\";s:19:\"new-profile-pic.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:27:\"new-profile-pic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:27:\"new-profile-pic-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:27:\"new-profile-pic-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:28:\"new-profile-pic-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-gallery-orig\";a:4:{s:4:\"file\";s:28:\"new-profile-pic-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-1-orig\";a:4:{s:4:\"file\";s:27:\"new-profile-pic-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-4-orig\";a:4:{s:4:\"file\";s:27:\"new-profile-pic-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-6-orig\";a:4:{s:4:\"file\";s:27:\"new-profile-pic-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"houzez-variable-gallery-orig\";a:4:{s:4:\"file\";s:27:\"new-profile-pic-901x600.jpg\";s:5:\"width\";i:901;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-map-info-orig\";a:4:{s:4:\"file\";s:26:\"new-profile-pic-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:27:\"new-profile-pic-496x330.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1637540717716\";a:3:{s:5:\"width\";i:1013;s:6:\"height\";i:1006;s:4:\"file\";s:34:\"new-profile-pic-e1637540685341.jpg\";}}'),(11664,383,'fave_agent_visible','0'),(11668,2163,'_edit_lock','1637541993:1'),(11669,2108,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:21:\"DSC2804-79-scaled.jpg\";}}'),(11670,2163,'_thumbnail_id','2108'),(11671,2163,'_edit_last','1'),(11672,2163,'fave_agent_company','Lantern Realty and Development'),(11673,2163,'fave_agent_email','smorgan.carolinas.realty@gmail.com'),(11674,2163,'fave_agent_visible','0'),(11675,2163,'fave_agent_position','Licensed Agent'),(11676,2163,'fave_agent_license','NC 304830'),(11677,2163,'fave_agent_mobile','980-432-3290'),(11678,2163,'fave_agent_website','https://lantern-realty.com/'),(11679,2163,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11680,2163,'fave_agent_logo','28'),(11681,2163,'fave_agent_agencies','45'),(11682,2163,'_primary_term_agent_category','10'),(11683,2163,'rs_page_bg_color',''),(11684,2165,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11685,2165,'_edit_lock','1637542213:1'),(11686,2122,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2049;s:6:\"height\";i:1537;s:4:\"file\";s:13:\"file1662.jpeg\";}}'),(11687,2165,'_thumbnail_id','2122'),(11688,2165,'_edit_last','1'),(11689,2165,'fave_agent_company','Lantern Realty and Development'),(11690,2165,'fave_agent_email','evehernandez79@outlook.com'),(11691,2165,'fave_agent_visible','0'),(11692,2165,'fave_agent_position','Licensed Agent'),(11693,2165,'fave_agent_license','NC 311627'),(11694,2165,'fave_agent_mobile','980-339-6480'),(11695,2165,'fave_agent_website','https://lantern-realty.com/'),(11696,2165,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11697,2165,'fave_agent_logo','28'),(11698,2165,'fave_agent_agencies','45'),(11699,2165,'_primary_term_agent_category','7'),(11700,2165,'rs_page_bg_color',''),(11701,2167,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11702,2167,'_edit_lock','1637542325:1'),(11703,2167,'_thumbnail_id','2123'),(11704,2167,'_edit_last','1'),(11705,2167,'fave_agent_company','Lantern Realty and Development'),(11706,2167,'fave_agent_email','lleath007@gmail.com'),(11707,2167,'fave_agent_visible','0'),(11708,2167,'fave_agent_position','Licensed Agent'),(11709,2167,'fave_agent_mobile','980-355-2377'),(11710,2167,'fave_agent_website','https://lantern-realty.com/'),(11711,2167,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11712,2167,'fave_agent_logo','28'),(11713,2167,'fave_agent_agencies','45'),(11714,2167,'_primary_term_agent_category','7'),(11715,2167,'rs_page_bg_color',''),(11716,2169,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11717,2169,'_edit_lock','1637542456:1'),(11718,2126,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1874;s:6:\"height\";i:2229;s:4:\"file\";s:41:\"3E99A0E8-6277-4155-8911-0005466BBA00.jpeg\";}}'),(11719,2169,'_thumbnail_id','2126'),(11720,2169,'_edit_last','1'),(11721,2169,'fave_agent_company','Lantern Realty and Development'),(11722,2169,'fave_agent_email','tansproperties@outlook.com'),(11723,2169,'fave_agent_visible','0'),(11724,2169,'fave_agent_position','Licensed Agent'),(11725,2169,'fave_agent_license','NC 328889'),(11726,2169,'fave_agent_mobile','704-245-3374'),(11727,2169,'fave_agent_website','https://lantern-realty.com/'),(11728,2169,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11729,2169,'fave_agent_logo','28'),(11730,2169,'fave_agent_agencies','45'),(11731,2169,'_primary_term_agent_category','7'),(11732,2169,'rs_page_bg_color',''),(11733,2171,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11734,2171,'_edit_lock','1637542632:1'),(11735,2135,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:48:\"3F16EC84-96CD-4CBF-8074-153E48832C84-scaled.jpeg\";}}'),(11736,2171,'_thumbnail_id','2135'),(11737,2171,'_edit_last','1'),(11738,2171,'fave_agent_company','Lantern Realty and Development'),(11739,2171,'fave_agent_email','Erinhyman.realty@gmail.com'),(11740,2171,'fave_agent_visible','0'),(11741,2171,'fave_agent_position','Licensed Agent'),(11742,2171,'fave_agent_license','NC 344522'),(11743,2171,'fave_agent_mobile','704-467-1493'),(11744,2171,'fave_agent_website','https://lantern-realty.com/'),(11745,2171,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11746,2171,'fave_agent_logo','28'),(11747,2171,'fave_agent_agencies','45'),(11748,2171,'_primary_term_agent_category','10'),(11749,2171,'rs_page_bg_color',''),(11750,2173,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11751,2173,'_edit_lock','1637544259:1'),(11752,2156,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2524;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"MY-Profile-Photo-1-scaled.jpg\";}}'),(11753,2173,'_thumbnail_id','2156'),(11754,2173,'_edit_last','1'),(11755,2173,'fave_agent_company','Lantern Realty and Development'),(11756,2173,'fave_agent_email','carmadykruger@gmail.com'),(11757,2173,'fave_agent_visible','0'),(11758,2173,'fave_agent_position','Licensed Agent'),(11759,2173,'fave_agent_license','NC 287665'),(11760,2173,'fave_agent_mobile','704-223-4842'),(11761,2173,'fave_agent_website','https://www.carmadykruger.com/'),(11762,2173,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11768,2173,'fave_agent_logo','28'),(11764,2173,'fave_agent_agencies','757'),(11765,2173,'_primary_term_agent_category','7'),(11766,2173,'rs_page_bg_color',''),(11769,2179,'_wp_attached_file','2021/11/1-2.png'),(11770,2179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1545;s:6:\"height\";i:2000;s:4:\"file\";s:15:\"2021/11/1-2.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-2-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"1-2-791x1024.png\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"1-2-768x994.png\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"1-2-1187x1536.png\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:16:\"1-2-1170x785.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:15:\"1-2-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:15:\"1-2-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:15:\"1-2-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:15:\"1-2-464x600.png\";s:5:\"width\";i:464;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:14:\"1-2-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:15:\"1-2-496x642.png\";s:5:\"width\";i:496;s:6:\"height\";i:642;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11771,2180,'_wp_attached_file','2021/11/2-2.png'),(11772,2180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1545;s:6:\"height\";i:2000;s:4:\"file\";s:15:\"2021/11/2-2.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-2-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"2-2-791x1024.png\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"2-2-768x994.png\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"2-2-1187x1536.png\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:16:\"2-2-1170x785.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:15:\"2-2-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:15:\"2-2-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:15:\"2-2-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:15:\"2-2-464x600.png\";s:5:\"width\";i:464;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:14:\"2-2-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:15:\"2-2-496x642.png\";s:5:\"width\";i:496;s:6:\"height\";i:642;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11773,2180,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.939261014398443894179990820703096687793731689453125;s:5:\"bytes\";i:209512;s:11:\"size_before\";i:5318561;s:10:\"size_after\";i:5109049;s:4:\"time\";d:27.589999999999999857891452847979962825775146484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:14944;s:11:\"size_before\";i:80861;s:10:\"size_after\";i:65917;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:668638;s:10:\"size_after\";i:668638;s:4:\"time\";d:1.8300000000000000710542735760100185871124267578125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25180;s:10:\"size_after\";i:25180;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:51346;s:11:\"size_before\";i:657727;s:10:\"size_after\";i:606381;s:4:\"time\";d:1.2199999999999999733546474089962430298328399658203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1491046;s:10:\"size_after\";i:1491046;s:4:\"time\";d:6.07000000000000028421709430404007434844970703125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:775416;s:10:\"size_after\";i:775416;s:4:\"time\";d:8.6300000000000007815970093361102044582366943359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:264457;s:10:\"size_after\";i:264457;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:422733;s:10:\"size_after\";i:422733;s:4:\"time\";d:1.4199999999999999289457264239899814128875732421875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:29473;s:11:\"size_before\";i:284380;s:10:\"size_after\";i:254907;s:4:\"time\";d:0.65000000000000002220446049250313080847263336181640625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:57783;s:11:\"size_before\";i:284086;s:10:\"size_after\";i:226303;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1439;s:11:\"size_before\";i:14363;s:10:\"size_after\";i:12924;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:54527;s:11:\"size_before\";i:349674;s:10:\"size_after\";i:295147;s:4:\"time\";d:6.38999999999999968025576890795491635799407958984375;}}}'),(11774,2181,'_wp_attached_file','2021/11/3.png'),(11775,2181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1545;s:6:\"height\";i:2000;s:4:\"file\";s:13:\"2021/11/3.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"3-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"3-791x1024.png\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"3-768x994.png\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"3-1187x1536.png\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:14:\"3-1170x785.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:13:\"3-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:13:\"3-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:13:\"3-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:13:\"3-464x600.png\";s:5:\"width\";i:464;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:12:\"3-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:13:\"3-496x642.png\";s:5:\"width\";i:496;s:6:\"height\";i:642;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11789,2188,'_wp_attached_file','2021/12/Stephen_Knorr.png'),(11799,2195,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:24:\"2021/12/bb-59-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"bb-59-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"bb-59-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"bb-59-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:18:\"bb-59-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"bb-59-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:19:\"bb-59-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:18:\"bb-59-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:17:\"bb-59-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:17:\"bb-59-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:17:\"bb-59-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:17:\"bb-59-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:16:\"bb-59-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"bb-59-496x744.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:744;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:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1637344569\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:15:\"Brittney Steele\";}}s:14:\"original_image\";s:9:\"bb-59.jpg\";}'),(11790,2188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:591;s:6:\"height\";i:281;s:4:\"file\";s:25:\"2021/12/Stephen_Knorr.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Stephen_Knorr-300x143.png\";s:5:\"width\";i:300;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Stephen_Knorr-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Stephen_Knorr-584x281.png\";s:5:\"width\";i:584;s:6:\"height\";i:281;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Stephen_Knorr-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Stephen_Knorr-496x236.png\";s:5:\"width\";i:496;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(11791,2188,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.65230173503165678194903875919408164918422698974609375;s:5:\"bytes\";i:2008;s:11:\"size_before\";i:307833;s:10:\"size_after\";i:305825;s:4:\"time\";d:0.729999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:46708;s:10:\"size_after\";i:46708;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22749;s:10:\"size_after\";i:22749;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:110728;s:10:\"size_after\";i:110728;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2008;s:11:\"size_before\";i:14497;s:10:\"size_after\";i:12489;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:113151;s:10:\"size_after\";i:113151;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}}}'),(11792,2188,'wps_cleaner_media_use','media_image-17'),(11793,2188,'wps_cleaner_media_use','media_image-18'),(11800,2195,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.35841122460060859111763420514762401580810546875;s:5:\"bytes\";i:497975;s:11:\"size_before\";i:5957771;s:10:\"size_after\";i:5459796;s:4:\"time\";d:1.7500000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6142;s:11:\"size_before\";i:54522;s:10:\"size_after\";i:48380;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:41133;s:11:\"size_before\";i:475975;s:10:\"size_after\";i:434842;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3292;s:11:\"size_before\";i:26347;s:10:\"size_after\";i:23055;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:49926;s:11:\"size_before\";i:591356;s:10:\"size_after\";i:541430;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:79987;s:11:\"size_before\";i:1011062;s:10:\"size_after\";i:931075;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:148267;s:11:\"size_before\";i:1848483;s:10:\"size_after\";i:1700216;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:57703;s:11:\"size_before\";i:722321;s:10:\"size_after\";i:664618;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:19889;s:11:\"size_before\";i:217497;s:10:\"size_after\";i:197608;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:29080;s:11:\"size_before\";i:342370;s:10:\"size_after\";i:313290;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:19530;s:11:\"size_before\";i:212810;s:10:\"size_after\";i:193280;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:17010;s:11:\"size_before\";i:177526;s:10:\"size_after\";i:160516;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2091;s:11:\"size_before\";i:14928;s:10:\"size_after\";i:12837;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:23925;s:11:\"size_before\";i:262574;s:10:\"size_after\";i:238649;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(11804,2198,'_wp_attached_file','2022/01/FD580C04-1249-4EAD-833A-6C883884A237.jpeg'),(11805,2198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2100;s:4:\"file\";s:49:\"2022/01/FD580C04-1249-4EAD-833A-6C883884A237.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"FD580C04-1249-4EAD-833A-6C883884A237-214x300.jpeg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"FD580C04-1249-4EAD-833A-6C883884A237-731x1024.jpeg\";s:5:\"width\";i:731;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"FD580C04-1249-4EAD-833A-6C883884A237-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"FD580C04-1249-4EAD-833A-6C883884A237-768x1075.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1075;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"FD580C04-1249-4EAD-833A-6C883884A237-1097x1536.jpeg\";s:5:\"width\";i:1097;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"FD580C04-1249-4EAD-833A-6C883884A237-1463x2048.jpeg\";s:5:\"width\";i:1463;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"FD580C04-1249-4EAD-833A-6C883884A237-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"FD580C04-1249-4EAD-833A-6C883884A237-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"FD580C04-1249-4EAD-833A-6C883884A237-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"FD580C04-1249-4EAD-833A-6C883884A237-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"FD580C04-1249-4EAD-833A-6C883884A237-429x600.jpeg\";s:5:\"width\";i:429;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"FD580C04-1249-4EAD-833A-6C883884A237-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"FD580C04-1249-4EAD-833A-6C883884A237-496x694.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:694;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:{}}}'),(11806,2198,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.010480618443864830879874716629274189472198486328125;s:5:\"bytes\";i:54932;s:11:\"size_before\";i:5436225;s:10:\"size_after\";i:5381293;s:4:\"time\";d:3.019999999999999573674358543939888477325439453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:46148;s:10:\"size_after\";i:46148;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:468320;s:10:\"size_after\";i:468320;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18751;s:10:\"size_after\";i:18751;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:516527;s:10:\"size_after\";i:516527;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1035638;s:10:\"size_after\";i:1035638;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1752590;s:10:\"size_after\";i:1752590;s:4:\"time\";d:1.8300000000000000710542735760100185871124267578125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:547168;s:10:\"size_after\";i:547168;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:168694;s:10:\"size_after\";i:168694;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:270715;s:10:\"size_after\";i:270715;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:16504;s:11:\"size_before\";i:181218;s:10:\"size_after\";i:164714;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:16154;s:11:\"size_before\";i:181084;s:10:\"size_after\";i:164930;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1271;s:11:\"size_before\";i:11545;s:10:\"size_after\";i:10274;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:21003;s:11:\"size_before\";i:237827;s:10:\"size_after\";i:216824;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(11811,2201,'_wp_attached_file','2022/01/IMG_20220105_160448_609.jpg'),(11812,2201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2022/01/IMG_20220105_160448_609.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"IMG_20220105_160448_609-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"IMG_20220105_160448_609-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_20220105_160448_609-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:35:\"IMG_20220105_160448_609-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:35:\"IMG_20220105_160448_609-960x785.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:35:\"IMG_20220105_160448_609-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:35:\"IMG_20220105_160448_609-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:35:\"IMG_20220105_160448_609-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:35:\"IMG_20220105_160448_609-480x600.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:34:\"IMG_20220105_160448_609-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:35:\"IMG_20220105_160448_609-496x620.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:620;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:{}}}'),(11813,2201,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.49341711508546826081555991549976170063018798828125;s:5:\"bytes\";i:97375;s:11:\"size_before\";i:2167059;s:10:\"size_after\";i:2069684;s:4:\"time\";d:1.0100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:56458;s:10:\"size_after\";i:56458;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:416297;s:10:\"size_after\";i:416297;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20388;s:10:\"size_after\";i:20388;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:38490;s:11:\"size_before\";i:392922;s:10:\"size_after\";i:354432;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:311901;s:10:\"size_after\";i:311901;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:155874;s:10:\"size_after\";i:155874;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:228752;s:10:\"size_after\";i:228752;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:16550;s:11:\"size_before\";i:168990;s:10:\"size_after\";i:152440;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:19798;s:11:\"size_before\";i:193430;s:10:\"size_after\";i:173632;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1535;s:11:\"size_before\";i:12730;s:10:\"size_after\";i:11195;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:21002;s:11:\"size_before\";i:209317;s:10:\"size_after\";i:188315;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}}}'),(11816,623,'fave_agent_visible','0'),(11818,2205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1748;s:6:\"height\";i:2072;s:4:\"file\";s:20:\"2022/01/headshot.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"headshot-253x300.jpg\";s:5:\"width\";i:253;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"headshot-864x1024.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"headshot-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:\"headshot-768x910.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:910;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"headshot-1296x1536.jpg\";s:5:\"width\";i:1296;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"headshot-1728x2048.jpg\";s:5:\"width\";i:1728;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"headshot-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"headshot-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"headshot-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"headshot-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"headshot-506x600.jpg\";s:5:\"width\";i:506;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"headshot-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"headshot-496x588.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:588;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:{}}}'),(11819,2205,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.6696366856322277794077990620280615985393524169921875;s:5:\"bytes\";i:105921;s:11:\"size_before\";i:6343955;s:10:\"size_after\";i:6238034;s:4:\"time\";d:4.03999999999999914734871708787977695465087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63780;s:10:\"size_after\";i:63780;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:632864;s:10:\"size_after\";i:632864;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20865;s:10:\"size_after\";i:20865;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:45713;s:11:\"size_before\";i:557108;s:10:\"size_after\";i:511395;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1272843;s:10:\"size_after\";i:1272843;s:4:\"time\";d:2.439999999999999946709294817992486059665679931640625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1985371;s:10:\"size_after\";i:1985371;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:589926;s:10:\"size_after\";i:589926;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:194046;s:10:\"size_after\";i:194046;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:306953;s:10:\"size_after\";i:306953;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:16769;s:11:\"size_before\";i:205978;s:10:\"size_after\";i:189209;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:21457;s:11:\"size_before\";i:256288;s:10:\"size_after\";i:234831;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1295;s:11:\"size_before\";i:12186;s:10:\"size_after\";i:10891;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:20687;s:11:\"size_before\";i:245747;s:10:\"size_after\";i:225060;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(11820,2206,'_wp_attached_file','2022/01/headshot-1.jpg'),(11821,2206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1748;s:6:\"height\";i:2072;s:4:\"file\";s:22:\"2022/01/headshot-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"headshot-1-253x300.jpg\";s:5:\"width\";i:253;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"headshot-1-864x1024.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"headshot-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:22:\"headshot-1-768x910.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:910;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"headshot-1-1296x1536.jpg\";s:5:\"width\";i:1296;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"headshot-1-1728x2048.jpg\";s:5:\"width\";i:1728;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:23:\"headshot-1-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:22:\"headshot-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:22:\"headshot-1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:22:\"headshot-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:22:\"headshot-1-506x600.jpg\";s:5:\"width\";i:506;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:21:\"headshot-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"headshot-1-496x588.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:588;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:{}}}'),(11822,2206,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.6696366856322277794077990620280615985393524169921875;s:5:\"bytes\";i:105921;s:11:\"size_before\";i:6343955;s:10:\"size_after\";i:6238034;s:4:\"time\";d:1.7600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63780;s:10:\"size_after\";i:63780;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:632864;s:10:\"size_after\";i:632864;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20865;s:10:\"size_after\";i:20865;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:45713;s:11:\"size_before\";i:557108;s:10:\"size_after\";i:511395;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1272843;s:10:\"size_after\";i:1272843;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1985371;s:10:\"size_after\";i:1985371;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:589926;s:10:\"size_after\";i:589926;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:194046;s:10:\"size_after\";i:194046;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:306953;s:10:\"size_after\";i:306953;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:16769;s:11:\"size_before\";i:205978;s:10:\"size_after\";i:189209;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:21457;s:11:\"size_before\";i:256288;s:10:\"size_after\";i:234831;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1295;s:11:\"size_before\";i:12186;s:10:\"size_after\";i:10891;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:20687;s:11:\"size_before\";i:245747;s:10:\"size_after\";i:225060;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(11828,2208,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:162675;s:10:\"size_after\";i:162675;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101308;s:10:\"size_after\";i:101308;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40690;s:10:\"size_after\";i:40690;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20677;s:10:\"size_after\";i:20677;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(11826,2208,'_wp_attached_file','2022/01/Head2.png'),(11827,2208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:235;s:6:\"height\";i:326;s:4:\"file\";s:17:\"2022/01/Head2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Head2-216x300.png\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Head2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:16:\"Head2-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11829,2210,'_wp_attached_file','2022/01/invite.ics'),(11832,2211,'_wp_attached_file','2022/01/Head2-1.png'),(11833,2211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:235;s:6:\"height\";i:326;s:4:\"file\";s:19:\"2022/01/Head2-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Head2-1-216x300.png\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Head2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"Head2-1-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11834,2211,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:162675;s:10:\"size_after\";i:162675;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101308;s:10:\"size_after\";i:101308;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40690;s:10:\"size_after\";i:40690;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20677;s:10:\"size_after\";i:20677;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(11843,2217,'_wp_attached_file','2022/01/2022-Educational-Calendar.xlsx'),(11846,2219,'_wp_attached_file','2022/01/2022-Educational-Calendar-1.xlsx'),(11849,2220,'_wp_attached_file','2022/01/IvanHeadShot-copy-2-scaled.jpg'),(11850,2220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2022/01/IvanHeadShot-copy-2-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IvanHeadShot-copy-2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IvanHeadShot-copy-2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IvanHeadShot-copy-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IvanHeadShot-copy-2-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IvanHeadShot-copy-2-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IvanHeadShot-copy-2-1366x2048.jpg\";s:5:\"width\";i:1366;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:32:\"IvanHeadShot-copy-2-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:31:\"IvanHeadShot-copy-2-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:31:\"IvanHeadShot-copy-2-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:31:\"IvanHeadShot-copy-2-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:31:\"IvanHeadShot-copy-2-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:30:\"IvanHeadShot-copy-2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:31:\"IvanHeadShot-copy-2-496x744.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1641990219\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IvanHeadShot-copy-2.jpg\";}'),(11851,2220,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.94754180897228224011996644549071788787841796875;s:5:\"bytes\";i:877070;s:11:\"size_before\";i:7341008;s:10:\"size_after\";i:6463938;s:4:\"time\";d:1.4600000000000001865174681370262987911701202392578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5440;s:11:\"size_before\";i:50988;s:10:\"size_after\";i:45548;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:73463;s:11:\"size_before\";i:606092;s:10:\"size_after\";i:532629;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2055;s:11:\"size_before\";i:20537;s:10:\"size_after\";i:18482;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:95344;s:11:\"size_before\";i:768595;s:10:\"size_after\";i:673251;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:173378;s:11:\"size_before\";i:1374947;s:10:\"size_after\";i:1201569;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:289863;s:11:\"size_before\";i:2399605;s:10:\"size_after\";i:2109742;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:84797;s:11:\"size_before\";i:773999;s:10:\"size_after\";i:689202;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:25461;s:11:\"size_before\";i:227815;s:10:\"size_after\";i:202354;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:42096;s:11:\"size_before\";i:371793;s:10:\"size_after\";i:329697;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:24960;s:11:\"size_before\";i:221631;s:10:\"size_after\";i:196671;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:22974;s:11:\"size_before\";i:201920;s:10:\"size_after\";i:178946;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1068;s:11:\"size_before\";i:10912;s:10:\"size_after\";i:9844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:36171;s:11:\"size_before\";i:312174;s:10:\"size_after\";i:276003;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(11852,2222,'_wp_attached_file','2022/01/LRD-Roster_011722.xlsx'),(11853,2223,'_wp_attached_file','2022/01/2022-Educational-Calendar-2.xlsx'),(11856,2225,'_wp_attached_file','2022/01/image002.jpg'),(11857,2225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:139;s:6:\"height\";i:153;s:4:\"file\";s:20:\"2022/01/image002.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image002-139x150.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"image002-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(11858,2225,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.9372812135355896856481194845400750637054443359375;s:5:\"bytes\";i:1354;s:11:\"size_before\";i:27424;s:10:\"size_after\";i:26070;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15638;s:10:\"size_after\";i:15638;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1354;s:11:\"size_before\";i:11786;s:10:\"size_after\";i:10432;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(11861,2226,'_wp_attached_file','2022/01/Headshot-2.jpg'),(11862,2226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:22:\"2022/01/Headshot-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Headshot-2-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:22:\"Headshot-2-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:22:\"Headshot-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:22:\"Headshot-2-960x785.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:22:\"Headshot-2-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:22:\"Headshot-2-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:22:\"Headshot-2-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:22:\"Headshot-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:21:\"Headshot-2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"Headshot-2-496x496.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:496;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:{}}}'),(11863,2226,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.932707629517265157659267060807906091213226318359375;s:5:\"bytes\";i:58566;s:11:\"size_before\";i:1489203;s:10:\"size_after\";i:1430637;s:4:\"time\";d:1.32000000000000028421709430404007434844970703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:60596;s:10:\"size_after\";i:60596;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:2527;s:11:\"size_before\";i:22912;s:10:\"size_after\";i:20385;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:258707;s:10:\"size_after\";i:258707;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:284616;s:10:\"size_after\";i:284616;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:136409;s:10:\"size_after\";i:136409;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:201609;s:10:\"size_after\";i:201609;s:4:\"time\";d:0.25;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:16020;s:11:\"size_before\";i:149749;s:10:\"size_after\";i:133729;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:22433;s:11:\"size_before\";i:213472;s:10:\"size_after\";i:191039;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1450;s:11:\"size_before\";i:12574;s:10:\"size_after\";i:11124;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:16136;s:11:\"size_before\";i:148559;s:10:\"size_after\";i:132423;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(11866,2229,'_wp_attached_file','2022/01/2022-Educational-Calendar-1-1.xlsx'),(11867,2230,'_wp_attached_file','2022/01/LRD-Roster_012422.xlsx'),(11870,2231,'_wp_attached_file','2022/01/Jamie-MedRes2-scaled.jpg'),(11871,2231,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:32:\"2022/01/Jamie-MedRes2-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Jamie-MedRes2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Jamie-MedRes2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Jamie-MedRes2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Jamie-MedRes2-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Jamie-MedRes2-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"Jamie-MedRes2-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:26:\"Jamie-MedRes2-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Jamie-MedRes2-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Jamie-MedRes2-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Jamie-MedRes2-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:25:\"Jamie-MedRes2-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Jamie-MedRes2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Jamie-MedRes2-496x744.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:744;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:13:\"Canon EOS 70D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1364777167\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"59\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"Jamie-MedRes2.jpg\";}'),(11872,2231,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.77622220545816844605724327266216278076171875;s:5:\"bytes\";i:414158;s:11:\"size_before\";i:4719092;s:10:\"size_after\";i:4304934;s:4:\"time\";d:1.7400000000000004352074256530613638460636138916015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:4638;s:11:\"size_before\";i:45150;s:10:\"size_after\";i:40512;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:36465;s:11:\"size_before\";i:410146;s:10:\"size_after\";i:373681;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2222;s:11:\"size_before\";i:20494;s:10:\"size_after\";i:18272;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:40389;s:11:\"size_before\";i:491464;s:10:\"size_after\";i:451075;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:65504;s:11:\"size_before\";i:823102;s:10:\"size_after\";i:757598;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:128480;s:11:\"size_before\";i:1445635;s:10:\"size_after\";i:1317155;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:47245;s:11:\"size_before\";i:503923;s:10:\"size_after\";i:456678;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:15273;s:11:\"size_before\";i:167027;s:10:\"size_after\";i:151754;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:23728;s:11:\"size_before\";i:260190;s:10:\"size_after\";i:236462;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:14883;s:11:\"size_before\";i:163202;s:10:\"size_after\";i:148319;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:13587;s:11:\"size_before\";i:151369;s:10:\"size_after\";i:137782;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:1270;s:11:\"size_before\";i:11290;s:10:\"size_after\";i:10020;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:20474;s:11:\"size_before\";i:226100;s:10:\"size_after\";i:205626;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(11873,2232,'_wp_attached_file','2022/01/A408F23A-C8AD-45C0-AE43-AEFBFD128D3D.jpeg'),(11874,2232,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:959;s:4:\"file\";s:49:\"2022/01/A408F23A-C8AD-45C0-AE43-AEFBFD128D3D.jpeg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"A408F23A-C8AD-45C0-AE43-AEFBFD128D3D-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"A408F23A-C8AD-45C0-AE43-AEFBFD128D3D-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"A408F23A-C8AD-45C0-AE43-AEFBFD128D3D-768x767.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:49:\"A408F23A-C8AD-45C0-AE43-AEFBFD128D3D-960x785.jpeg\";s:5:\"width\";i:960;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"A408F23A-C8AD-45C0-AE43-AEFBFD128D3D-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"A408F23A-C8AD-45C0-AE43-AEFBFD128D3D-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"A408F23A-C8AD-45C0-AE43-AEFBFD128D3D-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"A408F23A-C8AD-45C0-AE43-AEFBFD128D3D-601x600.jpeg\";s:5:\"width\";i:601;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"A408F23A-C8AD-45C0-AE43-AEFBFD128D3D-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"A408F23A-C8AD-45C0-AE43-AEFBFD128D3D-496x495.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:495;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:{}}}'),(11875,2232,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.469074692012082294922947767190635204315185546875;s:5:\"bytes\";i:43872;s:11:\"size_before\";i:1264660;s:10:\"size_after\";i:1220788;s:4:\"time\";d:0.85999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:52367;s:10:\"size_after\";i:52367;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1947;s:11:\"size_before\";i:19131;s:10:\"size_after\";i:17184;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:227820;s:10:\"size_after\";i:227820;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:226205;s:10:\"size_after\";i:226205;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119602;s:10:\"size_after\";i:119602;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:176263;s:10:\"size_after\";i:176263;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:12435;s:11:\"size_before\";i:129816;s:10:\"size_after\";i:117381;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:16724;s:11:\"size_before\";i:175525;s:10:\"size_after\";i:158801;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:1125;s:11:\"size_before\";i:10717;s:10:\"size_after\";i:9592;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11641;s:11:\"size_before\";i:127214;s:10:\"size_after\";i:115573;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(11876,2233,'_wp_attached_file','2022/01/headshot2.jpg'),(11877,2233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:843;s:6:\"height\";i:1280;s:4:\"file\";s:21:\"2022/01/headshot2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"headshot2-198x300.jpg\";s:5:\"width\";i:198;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"headshot2-674x1024.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"headshot2-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:22:\"headshot2-768x1166.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"headshot2-843x785.jpg\";s:5:\"width\";i:843;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"headshot2-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:21:\"headshot2-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"headshot2-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:21:\"headshot2-395x600.jpg\";s:5:\"width\";i:395;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"headshot2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"headshot2-496x753.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:753;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:{}}}'),(11878,2233,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.91549238839648960919248565915040671825408935546875;s:5:\"bytes\";i:56256;s:11:\"size_before\";i:1929554;s:10:\"size_after\";i:1873298;s:4:\"time\";d:0.55999999999999994226840271949185989797115325927734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44924;s:10:\"size_after\";i:44924;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:312809;s:10:\"size_after\";i:312809;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20124;s:10:\"size_after\";i:20124;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:390020;s:10:\"size_after\";i:390020;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:274463;s:10:\"size_after\";i:274463;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140801;s:10:\"size_after\";i:140801;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:203338;s:10:\"size_after\";i:203338;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:15555;s:11:\"size_before\";i:153969;s:10:\"size_after\";i:138414;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:16132;s:11:\"size_before\";i:155077;s:10:\"size_after\";i:138945;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1654;s:11:\"size_before\";i:12684;s:10:\"size_after\";i:11030;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:22915;s:11:\"size_before\";i:221345;s:10:\"size_after\";i:198430;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(11879,2234,'_wp_attached_file','2022/01/IvanHeadShot-copy-scaled.jpg'),(11880,2234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2333;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2022/01/IvanHeadShot-copy-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"IvanHeadShot-copy-273x300.jpg\";s:5:\"width\";i:273;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"IvanHeadShot-copy-933x1024.jpg\";s:5:\"width\";i:933;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"IvanHeadShot-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"IvanHeadShot-copy-768x843.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:843;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"IvanHeadShot-copy-1400x1536.jpg\";s:5:\"width\";i:1400;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"IvanHeadShot-copy-1867x2048.jpg\";s:5:\"width\";i:1867;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:30:\"IvanHeadShot-copy-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:29:\"IvanHeadShot-copy-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:29:\"IvanHeadShot-copy-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:29:\"IvanHeadShot-copy-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:29:\"IvanHeadShot-copy-547x600.jpg\";s:5:\"width\";i:547;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:28:\"IvanHeadShot-copy-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"IvanHeadShot-copy-496x544.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:544;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1641990219\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"IvanHeadShot-copy.jpg\";}'),(11881,2234,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.6114235865236796740873614908196032047271728515625;s:5:\"bytes\";i:713950;s:11:\"size_before\";i:7428140;s:10:\"size_after\";i:6714190;s:4:\"time\";d:1.859999999999999875655021241982467472553253173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7223;s:11:\"size_before\";i:64603;s:10:\"size_after\";i:57380;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:75463;s:11:\"size_before\";i:722300;s:10:\"size_after\";i:646837;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2018;s:11:\"size_before\";i:19119;s:10:\"size_after\";i:17101;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:52286;s:11:\"size_before\";i:491735;s:10:\"size_after\";i:439449;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:153855;s:11:\"size_before\";i:1590403;s:10:\"size_after\";i:1436548;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:251695;s:11:\"size_before\";i:2727545;s:10:\"size_after\";i:2475850;s:4:\"time\";d:0.5500000000000000444089209850062616169452667236328125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:53656;s:11:\"size_before\";i:648304;s:10:\"size_after\";i:594648;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:19126;s:11:\"size_before\";i:195200;s:10:\"size_after\";i:176074;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:29846;s:11:\"size_before\";i:315414;s:10:\"size_after\";i:285568;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:18609;s:11:\"size_before\";i:189892;s:10:\"size_after\";i:171283;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.75;s:5:\"bytes\";i:26804;s:11:\"size_before\";i:249317;s:10:\"size_after\";i:222513;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1171;s:11:\"size_before\";i:10495;s:10:\"size_after\";i:9324;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:22198;s:11:\"size_before\";i:203813;s:10:\"size_after\";i:181615;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(11882,2235,'_wp_attached_file','2022/01/headshot2-1.jpg'),(11883,2235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:843;s:6:\"height\";i:1280;s:4:\"file\";s:23:\"2022/01/headshot2-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"headshot2-1-198x300.jpg\";s:5:\"width\";i:198;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"headshot2-1-674x1024.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"headshot2-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:24:\"headshot2-1-768x1166.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:23:\"headshot2-1-843x785.jpg\";s:5:\"width\";i:843;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"headshot2-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"headshot2-1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"headshot2-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"headshot2-1-395x600.jpg\";s:5:\"width\";i:395;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"headshot2-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"headshot2-1-496x753.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:753;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:{}}}'),(11884,2235,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.91549238839648960919248565915040671825408935546875;s:5:\"bytes\";i:56256;s:11:\"size_before\";i:1929554;s:10:\"size_after\";i:1873298;s:4:\"time\";d:0.850000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44924;s:10:\"size_after\";i:44924;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:312809;s:10:\"size_after\";i:312809;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20124;s:10:\"size_after\";i:20124;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:390020;s:10:\"size_after\";i:390020;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:274463;s:10:\"size_after\";i:274463;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140801;s:10:\"size_after\";i:140801;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:203338;s:10:\"size_after\";i:203338;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:15555;s:11:\"size_before\";i:153969;s:10:\"size_after\";i:138414;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:16132;s:11:\"size_before\";i:155077;s:10:\"size_after\";i:138945;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1654;s:11:\"size_before\";i:12684;s:10:\"size_after\";i:11030;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:22915;s:11:\"size_before\";i:221345;s:10:\"size_after\";i:198430;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(11887,2238,'_wp_attached_file','2022/01/The-Oaks-at-Skybrook-CE-GenUp-Feb.pdf'),(11890,2239,'_wp_attached_file','2022/01/Stephanie-066-edit-1-scaled.jpg'),(11891,2239,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1706;s:6:\"height\";i:2560;s:4:\"file\";s:39:\"2022/01/Stephanie-066-edit-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Stephanie-066-edit-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-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:33:\"Stephanie-066-edit-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"Stephanie-066-edit-1-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:34:\"Stephanie-066-edit-1-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:33:\"Stephanie-066-edit-1-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:31:\"Stephanie-066-edit-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-496x744.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:16:\"Jarvis T. Harris\";s:6:\"camera\";s:12:\"Canon EOS 5D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1564252096\";s:9:\"copyright\";s:34:\"J. Harris Photography &amp; Design\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"Stephanie-066-edit-1.jpg\";}'),(11892,2239,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.21463063271409765775388223119080066680908203125;s:5:\"bytes\";i:424018;s:11:\"size_before\";i:4151085;s:10:\"size_after\";i:3727067;s:4:\"time\";d:1.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2163;s:11:\"size_before\";i:29549;s:10:\"size_after\";i:27386;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.75;s:5:\"bytes\";i:36216;s:11:\"size_before\";i:336947;s:10:\"size_after\";i:300731;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1089;s:11:\"size_before\";i:14156;s:10:\"size_after\";i:13067;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:46210;s:11:\"size_before\";i:426464;s:10:\"size_after\";i:380254;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:77679;s:11:\"size_before\";i:740819;s:10:\"size_after\";i:663140;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:120858;s:11:\"size_before\";i:1235635;s:10:\"size_after\";i:1114777;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:50557;s:11:\"size_before\";i:516885;s:10:\"size_after\";i:466328;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:16374;s:11:\"size_before\";i:153150;s:10:\"size_after\";i:136776;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.75;s:5:\"bytes\";i:26794;s:11:\"size_before\";i:249322;s:10:\"size_after\";i:222528;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:15909;s:11:\"size_before\";i:148913;s:10:\"size_after\";i:133004;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:11221;s:11:\"size_before\";i:114394;s:10:\"size_after\";i:103173;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:699;s:11:\"size_before\";i:8362;s:10:\"size_after\";i:7663;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:18249;s:11:\"size_before\";i:176489;s:10:\"size_after\";i:158240;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(11895,2241,'_wp_attached_file','2022/02/Ben-Surratt-Headshot.jpg'),(11896,2241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:32:\"2022/02/Ben-Surratt-Headshot.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Ben-Surratt-Headshot-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:32:\"Ben-Surratt-Headshot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:31:\"Ben-Surratt-Headshot-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(11897,2241,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.01655005567086842432900084531866014003753662109375;s:5:\"bytes\";i:2922;s:11:\"size_before\";i:72749;s:10:\"size_after\";i:69827;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44983;s:10:\"size_after\";i:44983;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1906;s:11:\"size_before\";i:17879;s:10:\"size_after\";i:15973;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1016;s:11:\"size_before\";i:9887;s:10:\"size_after\";i:8871;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(11898,2242,'_wp_attached_file','2022/02/AA3DABD4-0591-489B-B53A-39A57AF49E19-scaled.jpeg'),(11899,2242,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2022/02/AA3DABD4-0591-489B-B53A-39A57AF49E19-scaled.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-768x1152.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-1024x1536.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-1365x2048.jpeg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-400x600.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"AA3DABD4-0591-489B-B53A-39A57AF49E19-496x744.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620237461\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:41:\"AA3DABD4-0591-489B-B53A-39A57AF49E19.jpeg\";}'),(11900,2242,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4752047129008847292652717442251741886138916015625;s:5:\"bytes\";i:397496;s:11:\"size_before\";i:4690105;s:10:\"size_after\";i:4292609;s:4:\"time\";d:1.220000000000000195399252334027551114559173583984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4411;s:11:\"size_before\";i:44068;s:10:\"size_after\";i:39657;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:33388;s:11:\"size_before\";i:382214;s:10:\"size_after\";i:348826;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2324;s:11:\"size_before\";i:21547;s:10:\"size_after\";i:19223;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:38465;s:11:\"size_before\";i:458442;s:10:\"size_after\";i:419977;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:65894;s:11:\"size_before\";i:805526;s:10:\"size_after\";i:739632;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:127280;s:11:\"size_before\";i:1486497;s:10:\"size_after\";i:1359217;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:43234;s:11:\"size_before\";i:549520;s:10:\"size_after\";i:506286;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14154;s:11:\"size_before\";i:162694;s:10:\"size_after\";i:148540;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:21468;s:11:\"size_before\";i:259741;s:10:\"size_after\";i:238273;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:13671;s:11:\"size_before\";i:158719;s:10:\"size_after\";i:145048;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:13106;s:11:\"size_before\";i:141210;s:10:\"size_after\";i:128104;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1203;s:11:\"size_before\";i:11410;s:10:\"size_after\";i:10207;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:18898;s:11:\"size_before\";i:208517;s:10:\"size_after\";i:189619;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(11901,2243,'_wp_attached_file','2022/02/A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-scaled.jpeg'),(11902,2243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2022/02/A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-scaled.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-768x1152.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-1024x1536.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-1365x2048.jpeg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-400x600.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87-496x744.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620237461\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:41:\"A1CA8139-F891-4B45-A0AA-B9B8F4B85A87.jpeg\";}'),(11903,2243,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4752047129008847292652717442251741886138916015625;s:5:\"bytes\";i:397496;s:11:\"size_before\";i:4690105;s:10:\"size_after\";i:4292609;s:4:\"time\";d:1.4100000000000003641531520770513452589511871337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4411;s:11:\"size_before\";i:44068;s:10:\"size_after\";i:39657;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:33388;s:11:\"size_before\";i:382214;s:10:\"size_after\";i:348826;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2324;s:11:\"size_before\";i:21547;s:10:\"size_after\";i:19223;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:38465;s:11:\"size_before\";i:458442;s:10:\"size_after\";i:419977;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:65894;s:11:\"size_before\";i:805526;s:10:\"size_after\";i:739632;s:4:\"time\";d:0.25;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:127280;s:11:\"size_before\";i:1486497;s:10:\"size_after\";i:1359217;s:4:\"time\";d:0.25;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:43234;s:11:\"size_before\";i:549520;s:10:\"size_after\";i:506286;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14154;s:11:\"size_before\";i:162694;s:10:\"size_after\";i:148540;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:21468;s:11:\"size_before\";i:259741;s:10:\"size_after\";i:238273;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:13671;s:11:\"size_before\";i:158719;s:10:\"size_after\";i:145048;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:13106;s:11:\"size_before\";i:141210;s:10:\"size_after\";i:128104;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1203;s:11:\"size_before\";i:11410;s:10:\"size_after\";i:10207;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:18898;s:11:\"size_before\";i:208517;s:10:\"size_after\";i:189619;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(11906,2245,'_wp_attached_file','2022/02/Jenna-184-scaled.jpg'),(11907,2245,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2022/02/Jenna-184-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Jenna-184-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Jenna-184-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Jenna-184-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:22:\"Jenna-184-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"Jenna-184-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"Jenna-184-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:22:\"Jenna-184-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"Jenna-184-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:21:\"Jenna-184-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"Jenna-184-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:21:\"Jenna-184-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"Jenna-184-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Jenna-184-496x744.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1643436881\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"Jenna-184.jpg\";}'),(11908,2245,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.12004989888402661790678394027054309844970703125;s:5:\"bytes\";i:482222;s:11:\"size_before\";i:5287493;s:10:\"size_after\";i:4805271;s:4:\"time\";d:1.479999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:6167;s:11:\"size_before\";i:52810;s:10:\"size_after\";i:46643;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:44569;s:11:\"size_before\";i:432743;s:10:\"size_after\";i:388174;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:2983;s:11:\"size_before\";i:23811;s:10:\"size_after\";i:20828;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:53920;s:11:\"size_before\";i:535421;s:10:\"size_after\";i:481501;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:85279;s:11:\"size_before\";i:927381;s:10:\"size_after\";i:842102;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:124714;s:11:\"size_before\";i:1649207;s:10:\"size_after\";i:1524493;s:4:\"time\";d:0.25;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:48884;s:11:\"size_before\";i:591723;s:10:\"size_after\";i:542839;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:20165;s:11:\"size_before\";i:184312;s:10:\"size_after\";i:164147;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:29586;s:11:\"size_before\";i:285762;s:10:\"size_after\";i:256176;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:19679;s:11:\"size_before\";i:180272;s:10:\"size_after\";i:160593;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:18294;s:11:\"size_before\";i:167501;s:10:\"size_after\";i:149207;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1753;s:11:\"size_before\";i:13106;s:10:\"size_after\";i:11353;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:26229;s:11:\"size_before\";i:243444;s:10:\"size_after\";i:217215;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(11911,2248,'_wp_attached_file','2022/02/FF303B43-F823-4FBC-8FFA-8972045B47F3.jpeg'),(11912,2248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:274;s:4:\"file\";s:49:\"2022/02/FF303B43-F823-4FBC-8FFA-8972045B47F3.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"FF303B43-F823-4FBC-8FFA-8972045B47F3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"FF303B43-F823-4FBC-8FFA-8972045B47F3-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1460916242\";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:{}}}'),(11913,2248,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9878316918165115367855833028443157672882080078125;s:5:\"bytes\";i:1324;s:11:\"size_before\";i:33201;s:10:\"size_after\";i:31877;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20573;s:10:\"size_after\";i:20573;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1324;s:11:\"size_before\";i:12628;s:10:\"size_after\";i:11304;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(11914,2250,'_wp_attached_file','2022/02/image001.jpg'),(11915,2250,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1088;s:6:\"height\";i:1418;s:4:\"file\";s:20:\"2022/02/image001.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image001-230x300.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"image001-786x1024.jpg\";s:5:\"width\";i:786;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"image001-768x1001.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1001;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"image001-1088x785.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"image001-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"image001-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"image001-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"image001-460x600.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"image001-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"image001-496x646.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:646;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:{}}}'),(11916,2250,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.10122144654865561363976667053066194057464599609375;s:5:\"bytes\";i:170617;s:11:\"size_before\";i:2402643;s:10:\"size_after\";i:2232026;s:4:\"time\";d:1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57576;s:10:\"size_after\";i:57576;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:432164;s:10:\"size_after\";i:432164;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20957;s:10:\"size_after\";i:20957;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:66885;s:11:\"size_before\";i:477381;s:10:\"size_after\";i:410496;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:346620;s:10:\"size_after\";i:346620;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:163573;s:10:\"size_after\";i:163573;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:242404;s:10:\"size_after\";i:242404;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:29124;s:11:\"size_before\";i:189766;s:10:\"size_after\";i:160642;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:34280;s:11:\"size_before\";i:215370;s:10:\"size_after\";i:181090;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.370000000000000994759830064140260219573974609375;s:5:\"bytes\";i:2049;s:11:\"size_before\";i:12515;s:10:\"size_after\";i:10466;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:38279;s:11:\"size_before\";i:244317;s:10:\"size_after\";i:206038;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(11917,2251,'_wp_attached_file','2022/02/2022-Educational-Calendar-1.xlsx'),(11922,2253,'_wp_attached_file','2022/02/Colleen-picture-1-1.jpg'),(11923,2253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2022/02/Colleen-picture-1-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Colleen-picture-1-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Colleen-picture-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:31:\"Colleen-picture-1-1-750x785.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:31:\"Colleen-picture-1-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:31:\"Colleen-picture-1-1-750x564.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:31:\"Colleen-picture-1-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:31:\"Colleen-picture-1-1-450x600.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:30:\"Colleen-picture-1-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:31:\"Colleen-picture-1-1-496x661.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1442580462\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"44\";s:3:\"iso\";s:3:\"280\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(11924,2253,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.0902750673898691236018976269406266510486602783203125;s:5:\"bytes\";i:14945;s:11:\"size_before\";i:1370755;s:10:\"size_after\";i:1355810;s:4:\"time\";d:0.60999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:47534;s:10:\"size_after\";i:47534;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18084;s:10:\"size_after\";i:18084;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:354348;s:10:\"size_after\";i:354348;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:153922;s:10:\"size_after\";i:153922;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:245152;s:10:\"size_after\";i:245152;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:13751;s:11:\"size_before\";i:164576;s:10:\"size_after\";i:150825;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:172365;s:10:\"size_after\";i:172365;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1194;s:11:\"size_before\";i:10759;s:10:\"size_after\";i:9565;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:204015;s:10:\"size_after\";i:204015;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(11927,2255,'_wp_attached_file','2022/02/3AACE1A0-CB62-4A79-BCAA-3282C514350B-scaled.jpeg'),(11928,2255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2022/02/3AACE1A0-CB62-4A79-BCAA-3282C514350B-scaled.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-1152x1536.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-1536x2048.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-450x600.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B-496x661.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:661;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\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:41:\"3AACE1A0-CB62-4A79-BCAA-3282C514350B.jpeg\";}'),(11929,2255,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.04600072716382186399641796015202999114990234375;s:5:\"bytes\";i:400925;s:11:\"size_before\";i:6631243;s:10:\"size_after\";i:6230318;s:4:\"time\";d:2.300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:5735;s:11:\"size_before\";i:60452;s:10:\"size_after\";i:54717;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:39732;s:11:\"size_before\";i:593446;s:10:\"size_after\";i:553714;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:2538;s:11:\"size_before\";i:23015;s:10:\"size_after\";i:20477;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:553714;s:10:\"size_after\";i:553714;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:82288;s:11:\"size_before\";i:1289660;s:10:\"size_after\";i:1207372;s:4:\"time\";d:0.61999999999999999555910790149937383830547332763671875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:142251;s:11:\"size_before\";i:2218831;s:10:\"size_after\";i:2076580;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:42299;s:11:\"size_before\";i:673134;s:10:\"size_after\";i:630835;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:14309;s:11:\"size_before\";i:205635;s:10:\"size_after\";i:191326;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:21501;s:11:\"size_before\";i:326477;s:10:\"size_after\";i:304976;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:13707;s:11:\"size_before\";i:199824;s:10:\"size_after\";i:186117;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:16194;s:11:\"size_before\";i:216223;s:10:\"size_after\";i:200029;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5;s:5:\"bytes\";i:1454;s:11:\"size_before\";i:12638;s:10:\"size_after\";i:11184;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:18917;s:11:\"size_before\";i:258194;s:10:\"size_after\";i:239277;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(11931,2258,'_wp_attached_file','2020/09/Holden_Sides.jpg'),(11932,2258,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:24:\"2020/09/Holden_Sides.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Holden_Sides-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:24:\"Holden_Sides-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Holden_Sides-512x444.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Holden_Sides-512x438.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Holden_Sides-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Holden_Sides-496x496.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1645129500\";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\";}}'),(11933,2258,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.778728836615531605502837919630110263824462890625;s:5:\"bytes\";i:51504;s:11:\"size_before\";i:477830;s:10:\"size_after\";i:426326;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7283;s:11:\"size_before\";i:65024;s:10:\"size_after\";i:57741;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2487;s:11:\"size_before\";i:22598;s:10:\"size_after\";i:20111;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:12193;s:11:\"size_before\";i:119181;s:10:\"size_after\";i:106988;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12157;s:11:\"size_before\";i:119550;s:10:\"size_after\";i:107393;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1456;s:11:\"size_before\";i:12433;s:10:\"size_after\";i:10977;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:15928;s:11:\"size_before\";i:139044;s:10:\"size_after\";i:123116;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(11937,2261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:511;s:4:\"file\";s:29:\"2019/06/Jessica_Cloward-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Jessica_Cloward-1-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:29:\"Jessica_Cloward-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:29:\"Jessica_Cloward-1-512x444.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:29:\"Jessica_Cloward-1-512x438.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:28:\"Jessica_Cloward-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"Jessica_Cloward-1-496x495.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(11938,2261,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9610606986227221426588585018180310726165771484375;s:5:\"bytes\";i:40111;s:11:\"size_before\";i:402678;s:10:\"size_after\";i:362567;s:4:\"time\";d:0.3000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5378;s:11:\"size_before\";i:55569;s:10:\"size_after\";i:50191;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1966;s:11:\"size_before\";i:19119;s:10:\"size_after\";i:17153;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:9552;s:11:\"size_before\";i:97846;s:10:\"size_after\";i:88294;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:9985;s:11:\"size_before\";i:98786;s:10:\"size_after\";i:88801;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:1125;s:11:\"size_before\";i:10711;s:10:\"size_after\";i:9586;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12105;s:11:\"size_before\";i:120647;s:10:\"size_after\";i:108542;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(11939,470,'fave_agent_visible','0'),(11944,2265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:443;s:6:\"height\";i:591;s:4:\"file\";s:26:\"2019/06/Julie_Nutter-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Julie_Nutter-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Julie_Nutter-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Julie_Nutter-1-443x444.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:26:\"Julie_Nutter-1-443x564.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Julie_Nutter-1-443x438.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Julie_Nutter-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1645130086\";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\";}}'),(11945,2265,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.505001780569134695042521343566477298736572265625;s:5:\"bytes\";i:38168;s:11:\"size_before\";i:401557;s:10:\"size_after\";i:363389;s:4:\"time\";d:0.15000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4856;s:11:\"size_before\";i:48983;s:10:\"size_after\";i:44127;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2192;s:11:\"size_before\";i:20643;s:10:\"size_after\";i:18451;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:9513;s:11:\"size_before\";i:99295;s:10:\"size_after\";i:89782;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:10993;s:11:\"size_before\";i:123375;s:10:\"size_after\";i:112382;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9395;s:11:\"size_before\";i:97848;s:10:\"size_after\";i:88453;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1219;s:11:\"size_before\";i:11413;s:10:\"size_after\";i:10194;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(11946,484,'fave_agent_visible','0'),(11950,2267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:418;s:6:\"height\";i:626;s:4:\"file\";s:26:\"2019/06/Julie_Nutter-2.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Julie_Nutter-2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Julie_Nutter-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Julie_Nutter-2-418x444.jpg\";s:5:\"width\";i:418;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:26:\"Julie_Nutter-2-418x564.jpg\";s:5:\"width\";i:418;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Julie_Nutter-2-418x438.jpg\";s:5:\"width\";i:418;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"Julie_Nutter-2-401x600.jpg\";s:5:\"width\";i:401;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Julie_Nutter-2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1645130292\";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\";}}'),(11951,2267,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.5342523184587815165969004738144576549530029296875;s:5:\"bytes\";i:47302;s:11:\"size_before\";i:496127;s:10:\"size_after\";i:448825;s:4:\"time\";d:0.25;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:4303;s:11:\"size_before\";i:42094;s:10:\"size_after\";i:37791;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2134;s:11:\"size_before\";i:20394;s:10:\"size_after\";i:18260;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:8598;s:11:\"size_before\";i:95813;s:10:\"size_after\";i:87215;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10085;s:11:\"size_before\";i:108040;s:10:\"size_after\";i:97955;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:8320;s:11:\"size_before\";i:93317;s:10:\"size_after\";i:84997;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:12667;s:11:\"size_before\";i:125137;s:10:\"size_after\";i:112470;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1195;s:11:\"size_before\";i:11332;s:10:\"size_after\";i:10137;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(11953,111,'fave_agent_visible','0'),(11956,2269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:274;s:4:\"file\";s:30:\"2021/02/Katherine_Lawing-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Katherine_Lawing-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:29:\"Katherine_Lawing-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1460916242\";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\";}}'),(11957,2269,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.1651448540187114844002280733548104763031005859375;s:5:\"bytes\";i:3607;s:11:\"size_before\";i:35484;s:10:\"size_after\";i:31877;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2283;s:11:\"size_before\";i:22856;s:10:\"size_after\";i:20573;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1324;s:11:\"size_before\";i:12628;s:10:\"size_after\";i:11304;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(11962,2273,'_wp_attached_file','2021/02/Ivan_Henrickson-1.jpg'),(11963,2273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:475;s:6:\"height\";i:521;s:4:\"file\";s:29:\"2021/02/Ivan_Henrickson-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Ivan_Henrickson-1-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Ivan_Henrickson-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:29:\"Ivan_Henrickson-1-475x444.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:29:\"Ivan_Henrickson-1-475x438.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:28:\"Ivan_Henrickson-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1641990219\";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\";}}'),(11964,2273,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9748656085124753900572613929398357868194580078125;s:5:\"bytes\";i:36035;s:11:\"size_before\";i:361258;s:10:\"size_after\";i:325223;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:5925;s:11:\"size_before\";i:59900;s:10:\"size_after\";i:53975;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1858;s:11:\"size_before\";i:19075;s:10:\"size_after\";i:17217;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:13469;s:11:\"size_before\";i:137081;s:10:\"size_after\";i:123612;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13676;s:11:\"size_before\";i:134643;s:10:\"size_after\";i:120967;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1107;s:11:\"size_before\";i:10559;s:10:\"size_after\";i:9452;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(11967,2274,'_edit_lock','1645150241:1'),(11968,2275,'_wp_attached_file','2022/02/Brittney_Steele.jpg'),(11969,2275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:443;s:6:\"height\";i:591;s:4:\"file\";s:27:\"2022/02/Brittney_Steele.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Brittney_Steele-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Brittney_Steele-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"Brittney_Steele-443x444.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:27:\"Brittney_Steele-443x564.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"Brittney_Steele-443x438.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"Brittney_Steele-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1645131814\";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\";}}'),(11970,2275,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.32613085001055674982950449702912010252475738525390625;s:5:\"bytes\";i:1591;s:11:\"size_before\";i:487841;s:10:\"size_after\";i:486250;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57585;s:10:\"size_after\";i:57585;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22303;s:10:\"size_after\";i:22303;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119153;s:10:\"size_after\";i:119153;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157199;s:10:\"size_after\";i:157199;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:118182;s:10:\"size_after\";i:118182;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1591;s:11:\"size_before\";i:13419;s:10:\"size_after\";i:11828;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(11971,2274,'_thumbnail_id','2275'),(11972,2274,'_edit_last','1'),(11973,2274,'fave_agent_company','Lantern Realty and Development'),(11974,2274,'fave_agent_email','brittsteelerealty@gmail.com'),(11975,2274,'fave_agent_visible','0'),(11976,2274,'fave_agent_position','Licensed Agent'),(11977,2274,'fave_agent_mobile','980-439-7761'),(11978,2274,'fave_agent_website','https://lantern-realty.com/'),(11979,2274,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(12003,2274,'fave_agent_logo','28'),(11981,2274,'fave_agent_agencies','45'),(11982,2274,'_primary_term_agent_category','7'),(11983,2274,'rs_page_bg_color',''),(11984,2277,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(11985,2277,'_edit_lock','1645150936:1'),(11986,2278,'_wp_attached_file','2022/02/Aaron_Forsyth.jpeg'),(11987,2278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:432;s:6:\"height\";i:605;s:4:\"file\";s:26:\"2022/02/Aaron_Forsyth.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Aaron_Forsyth-214x300.jpeg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Aaron_Forsyth-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Aaron_Forsyth-432x444.jpeg\";s:5:\"width\";i:432;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:26:\"Aaron_Forsyth-432x564.jpeg\";s:5:\"width\";i:432;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Aaron_Forsyth-432x438.jpeg\";s:5:\"width\";i:432;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"Aaron_Forsyth-428x600.jpeg\";s:5:\"width\";i:428;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Aaron_Forsyth-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(11988,2278,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.270073893313957480444287284626625478267669677734375;s:5:\"bytes\";i:1379;s:11:\"size_before\";i:510601;s:10:\"size_after\";i:509222;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45811;s:10:\"size_after\";i:45811;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19167;s:10:\"size_after\";i:19167;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69725;s:10:\"size_after\";i:69725;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:125323;s:10:\"size_after\";i:125323;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101096;s:10:\"size_after\";i:101096;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:137549;s:10:\"size_after\";i:137549;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1379;s:11:\"size_before\";i:11930;s:10:\"size_after\";i:10551;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(11989,2277,'_thumbnail_id','2278'),(11990,2277,'_edit_last','1'),(11991,2277,'fave_agent_company','Lantern Realty and Development'),(11992,2277,'fave_agent_email','aaronkforsyth@gmail.com'),(11993,2277,'fave_agent_visible','0'),(11994,2277,'fave_agent_position','Licensed Agent'),(11995,2277,'fave_agent_license','311613'),(11996,2277,'fave_agent_website','https://lantern-realty.com/'),(11997,2277,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(12082,2277,'fave_agent_logo','28'),(11999,2277,'fave_agent_agencies','758'),(12000,2277,'_primary_term_agent_category','7'),(12001,2277,'rs_page_bg_color',''),(12002,2274,'fave_agent_license','335904'),(12004,2280,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12005,2280,'_edit_lock','1645150447:1'),(12006,2281,'_wp_attached_file','2022/02/Charity_K_Meachum.jpg'),(12007,2281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:457;s:6:\"height\";i:572;s:4:\"file\";s:29:\"2022/02/Charity_K_Meachum.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Charity_K_Meachum-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Charity_K_Meachum-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:29:\"Charity_K_Meachum-457x444.jpg\";s:5:\"width\";i:457;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:29:\"Charity_K_Meachum-457x564.jpg\";s:5:\"width\";i:457;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:29:\"Charity_K_Meachum-457x438.jpg\";s:5:\"width\";i:457;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:28:\"Charity_K_Meachum-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(12008,2281,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.35589785354991632093657472069025970995426177978515625;s:5:\"bytes\";i:1512;s:11:\"size_before\";i:424841;s:10:\"size_after\";i:423329;s:4:\"time\";d:0.25;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:53197;s:10:\"size_after\";i:53197;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19987;s:10:\"size_after\";i:19987;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79546;s:10:\"size_after\";i:79546;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:144522;s:10:\"size_after\";i:144522;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:115085;s:10:\"size_after\";i:115085;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1512;s:11:\"size_before\";i:12504;s:10:\"size_after\";i:10992;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(12009,2280,'_thumbnail_id','2281'),(12010,2280,'_edit_last','1'),(12011,2280,'fave_agent_company','Lantern Realty and Development'),(12012,2280,'fave_agent_email','ckmeachum15@gmail.com'),(12013,2280,'fave_agent_visible','0'),(12014,2280,'fave_agent_position','Licensed Agent'),(12015,2280,'fave_agent_license','306321'),(12016,2280,'fave_agent_mobile','980-521-2193'),(12017,2280,'fave_agent_website','https://lantern-realty.com/'),(12018,2280,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(12019,2280,'fave_agent_logo','22'),(12020,2280,'fave_agent_agencies','45'),(12021,2280,'_primary_term_agent_category','7'),(12022,2280,'rs_page_bg_color',''),(12023,2283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12024,2283,'_edit_lock','1645153584:1'),(12025,2284,'_wp_attached_file','2022/02/Amy_Bundy.jpg'),(12026,2284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:557;s:4:\"file\";s:21:\"2022/02/Amy_Bundy.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Amy_Bundy-253x300.jpg\";s:5:\"width\";i:253;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Amy_Bundy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"Amy_Bundy-470x444.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"Amy_Bundy-470x438.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"Amy_Bundy-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(12027,2284,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.39544592269142320173358484680647961795330047607421875;s:5:\"bytes\";i:1257;s:11:\"size_before\";i:317869;s:10:\"size_after\";i:316612;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:60161;s:10:\"size_after\";i:60161;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20749;s:10:\"size_after\";i:20749;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:92597;s:10:\"size_after\";i:92597;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:132126;s:10:\"size_after\";i:132126;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1257;s:11:\"size_before\";i:12236;s:10:\"size_after\";i:10979;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(12028,2283,'_thumbnail_id','2311'),(12029,2283,'_edit_last','1'),(12030,2283,'fave_agent_company','Lantern Realty and Development'),(12031,2283,'fave_agent_email','amybundy1@gmail.com'),(12032,2283,'fave_agent_visible','0'),(12033,2283,'fave_agent_position','Licensed Agent'),(12034,2283,'fave_agent_license','320846'),(12035,2283,'fave_agent_mobile','980-292-3775'),(12036,2283,'fave_agent_website','https://lantern-realty.com/'),(12037,2283,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(12199,2283,'fave_agent_logo','22'),(12039,2283,'fave_agent_agencies','45'),(12040,2283,'_primary_term_agent_category','7'),(12041,2283,'rs_page_bg_color',''),(12042,2286,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12043,2286,'_edit_lock','1645150700:1'),(12044,2287,'_wp_attached_file','2022/02/Chad_Rothlin.png'),(12045,2287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:235;s:6:\"height\";i:326;s:4:\"file\";s:24:\"2022/02/Chad_Rothlin.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Chad_Rothlin-216x300.png\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Chad_Rothlin-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Chad_Rothlin-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(12046,2287,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:162675;s:10:\"size_after\";i:162675;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101308;s:10:\"size_after\";i:101308;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40690;s:10:\"size_after\";i:40690;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20677;s:10:\"size_after\";i:20677;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(12047,2286,'_thumbnail_id','2287'),(12048,2286,'_edit_last','1'),(12049,2286,'fave_agent_company','Lantern Realty and Development'),(12050,2286,'fave_agent_email','rothlinrealty@gmail.com'),(12051,2286,'fave_agent_visible','0'),(12052,2286,'fave_agent_position','Licensed Agent'),(12053,2286,'fave_agent_license','335944'),(12054,2286,'fave_agent_mobile','828-302-0901'),(12055,2286,'fave_agent_website','https://lantern-realty.com/'),(12056,2286,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(12057,2286,'fave_agent_logo','22'),(12058,2286,'fave_agent_agencies','45'),(12059,2286,'_primary_term_agent_category','7'),(12060,2286,'rs_page_bg_color',''),(12061,2289,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12062,2289,'_edit_lock','1645150849:1'),(12063,2290,'_wp_attached_file','2022/02/Jamie_Stewart.jpg'),(12064,2290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:443;s:6:\"height\";i:591;s:4:\"file\";s:25:\"2022/02/Jamie_Stewart.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Jamie_Stewart-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Jamie_Stewart-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Jamie_Stewart-443x444.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Jamie_Stewart-443x564.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Jamie_Stewart-443x438.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Jamie_Stewart-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1645132775\";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\";}}'),(12065,2290,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.344104669286325826060846111431601457297801971435546875;s:5:\"bytes\";i:1254;s:11:\"size_before\";i:364424;s:10:\"size_after\";i:363170;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42835;s:10:\"size_after\";i:42835;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17890;s:10:\"size_after\";i:17890;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:90813;s:10:\"size_after\";i:90813;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:112002;s:10:\"size_after\";i:112002;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:89779;s:10:\"size_after\";i:89779;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1254;s:11:\"size_before\";i:11105;s:10:\"size_after\";i:9851;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(12066,2289,'_thumbnail_id','2290'),(12067,2289,'_edit_last','1'),(12068,2289,'fave_agent_company','Lantern Realty and Development'),(12069,2289,'fave_agent_email','jamie.stewart2121@gmail.com'),(12070,2289,'fave_agent_visible','0'),(12071,2289,'fave_agent_position','Licensed Agent'),(12072,2289,'fave_agent_license','277726'),(12073,2289,'fave_agent_mobile','704-307-9890'),(12074,2289,'fave_agent_website','https://lantern-realty.com/'),(12075,2289,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(12076,2289,'fave_agent_logo','22'),(12077,2289,'fave_agent_agencies','758'),(12078,2289,'_primary_term_agent_category','7'),(12079,2289,'rs_page_bg_color',''),(12080,2277,'fave_agent_mobile','704-989-0799'),(12083,2292,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12084,2292,'_edit_lock','1653530087:1'),(12085,2293,'_wp_attached_file','2022/02/Melissa_Shannon_Morefield-Valley.jpg'),(12086,2293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:443;s:6:\"height\";i:591;s:4:\"file\";s:44:\"2022/02/Melissa_Shannon_Morefield-Valley.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Melissa_Shannon_Morefield-Valley-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Melissa_Shannon_Morefield-Valley-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:44:\"Melissa_Shannon_Morefield-Valley-443x444.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:44:\"Melissa_Shannon_Morefield-Valley-443x564.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:44:\"Melissa_Shannon_Morefield-Valley-443x438.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:43:\"Melissa_Shannon_Morefield-Valley-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1645133050\";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\";}}'),(12087,2293,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.388757018853113367473639527815976180136203765869140625;s:5:\"bytes\";i:1456;s:11:\"size_before\";i:374527;s:10:\"size_after\";i:373071;s:4:\"time\";d:0.16000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45204;s:10:\"size_after\";i:45204;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19074;s:10:\"size_after\";i:19074;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:92915;s:10:\"size_after\";i:92915;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:112718;s:10:\"size_after\";i:112718;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:92894;s:10:\"size_after\";i:92894;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1456;s:11:\"size_before\";i:11722;s:10:\"size_after\";i:10266;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(12088,2292,'_thumbnail_id','2313'),(12089,2292,'_edit_last','1'),(12090,2292,'fave_agent_company','Lantern Realty and Development'),(12091,2292,'fave_agent_email','RealEstate@MelissaValley.com'),(12092,2292,'fave_agent_visible','0'),(12093,2292,'fave_agent_position','Licensed Agent'),(12094,2292,'fave_agent_license','211740'),(12095,2292,'fave_agent_mobile','704-798-0726'),(12096,2292,'fave_agent_website','https://lantern-realty.com/'),(12097,2292,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(14879,2292,'fave_agent_logo','22'),(12099,2292,'fave_agent_agencies','757'),(12100,2292,'_primary_term_agent_category','7'),(12101,2292,'rs_page_bg_color',''),(12286,2333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:505;s:4:\"file\";s:55:\"2022/03/VideoCapture_20210526-184249-e1656028993133.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"VideoCapture_20210526-184249-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"VideoCapture_20210526-184249-812x1024.jpg\";s:5:\"width\";i:812;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"VideoCapture_20210526-184249-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"VideoCapture_20210526-184249-768x969.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:40:\"VideoCapture_20210526-184249-856x785.jpg\";s:5:\"width\";i:856;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:40:\"VideoCapture_20210526-184249-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:40:\"VideoCapture_20210526-184249-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:40:\"VideoCapture_20210526-184249-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:40:\"VideoCapture_20210526-184249-476x600.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:39:\"VideoCapture_20210526-184249-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:40:\"VideoCapture_20210526-184249-496x626.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:626;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:{}}}'),(12285,2333,'_wp_attached_file','2022/03/VideoCapture_20210526-184249-e1656028993133.jpg'),(12108,2298,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12109,2298,'_edit_lock','1656029258:1'),(12110,2299,'_wp_attached_file','2022/02/Stephanie_Knight.jpg'),(12111,2299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:485;s:6:\"height\";i:539;s:4:\"file\";s:28:\"2022/02/Stephanie_Knight.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Stephanie_Knight-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Stephanie_Knight-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:28:\"Stephanie_Knight-485x444.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:28:\"Stephanie_Knight-485x438.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"Stephanie_Knight-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1645133581\";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\";}}'),(12112,2299,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.35447631009699254178713090368546545505523681640625;s:5:\"bytes\";i:762;s:11:\"size_before\";i:214965;s:10:\"size_after\";i:214203;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33784;s:10:\"size_after\";i:33784;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12319;s:10:\"size_after\";i:12319;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:80335;s:10:\"size_after\";i:80335;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:80643;s:10:\"size_after\";i:80643;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:762;s:11:\"size_before\";i:7884;s:10:\"size_after\";i:7122;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(12113,2298,'_thumbnail_id','2299'),(12114,2298,'_edit_last','1'),(12115,2298,'fave_agent_company','Lantern Realty and Development'),(12116,2298,'fave_agent_email','sknightrealty@gmail.com'),(12117,2298,'fave_agent_visible','0'),(12118,2298,'fave_agent_position','Licensed Agent'),(12119,2298,'fave_agent_license','237482'),(12120,2298,'fave_agent_mobile','336-817-6542'),(12121,2298,'fave_agent_website','https://lantern-realty.com/'),(12122,2298,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(12138,2298,'fave_agent_logo','28'),(12124,2298,'_primary_term_agent_category','7'),(12125,2298,'rs_page_bg_color',''),(12126,2301,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12127,2301,'_edit_lock','1650416802:1'),(12128,2301,'_thumbnail_id','28'),(12129,2301,'_edit_last','1'),(12130,2301,'fave_agency_email','csloansellshomes@gmail.com'),(12131,2301,'fave_agency_visible','0'),(12367,2301,'fave_agency_phone','704-754-7104'),(12133,2301,'fave_agency_web','https://lantern-realty.com/'),(12134,2301,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(12135,2301,'rs_page_bg_color',''),(12137,2298,'fave_agent_agencies','2301'),(12139,2302,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12140,2302,'_edit_lock','1645152080:1'),(12141,2303,'_wp_attached_file','2022/02/Benjamin_Allen_Surratt.jpg'),(12142,2303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2022/02/Benjamin_Allen_Surratt.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Benjamin_Allen_Surratt-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:34:\"Benjamin_Allen_Surratt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:33:\"Benjamin_Allen_Surratt-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(12143,2303,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.01655005567086842432900084531866014003753662109375;s:5:\"bytes\";i:2922;s:11:\"size_before\";i:72749;s:10:\"size_after\";i:69827;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44983;s:10:\"size_after\";i:44983;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1906;s:11:\"size_before\";i:17879;s:10:\"size_after\";i:15973;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1016;s:11:\"size_before\";i:9887;s:10:\"size_after\";i:8871;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(12144,2302,'_thumbnail_id','2303'),(12145,2302,'_edit_last','1'),(12146,2302,'fave_agent_company','Lantern Realty and Development'),(12147,2302,'fave_agent_email','bensurratt.realtor@gmail.com'),(12148,2302,'fave_agent_visible','0'),(12149,2302,'fave_agent_position','Licensed Agent'),(12150,2302,'fave_agent_license','333992'),(12151,2302,'fave_agent_mobile','704-640-3858'),(12152,2302,'fave_agent_website','https://lantern-realty.com/'),(12153,2302,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(12154,2302,'fave_agent_logo','22'),(12155,2302,'fave_agent_agencies','757'),(12156,2302,'_primary_term_agent_category','7'),(12157,2302,'rs_page_bg_color',''),(12158,2305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12159,2305,'_edit_lock','1651357286:1'),(12160,2306,'_wp_attached_file','2022/02/Colleen_Crane.jpg'),(12161,2306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:443;s:6:\"height\";i:591;s:4:\"file\";s:25:\"2022/02/Colleen_Crane.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Colleen_Crane-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Colleen_Crane-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Colleen_Crane-443x444.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Colleen_Crane-443x564.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Colleen_Crane-443x438.jpg\";s:5:\"width\";i:443;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Colleen_Crane-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1442580462\";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\";}}'),(12162,2306,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.3075573380122822442217511706985533237457275390625;s:5:\"bytes\";i:1227;s:11:\"size_before\";i:398950;s:10:\"size_after\";i:397723;s:4:\"time\";d:0.42000000000000003996802888650563545525074005126953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45477;s:10:\"size_after\";i:45477;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18051;s:10:\"size_after\";i:18051;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:98570;s:10:\"size_after\";i:98570;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:127504;s:10:\"size_after\";i:127504;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:98482;s:10:\"size_after\";i:98482;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1227;s:11:\"size_before\";i:10866;s:10:\"size_after\";i:9639;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(12163,2305,'_thumbnail_id','2306'),(12164,2305,'_edit_last','1'),(12165,2305,'fave_agent_company','Lantern Realty and Development'),(12166,2305,'fave_agent_email','colleencranencrealtor@gmail.com'),(12167,2305,'fave_agent_visible','0'),(12168,2305,'fave_agent_position','Licensed Agent'),(12169,2305,'fave_agent_license','228345'),(12170,2305,'fave_agent_mobile','828-273-2025'),(12171,2305,'fave_agent_website','https://lantern-realty.com/'),(12172,2305,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(14368,2305,'fave_agent_logo','22'),(12174,2305,'fave_agent_agencies','1598'),(12175,2305,'_primary_term_agent_category','7'),(12176,2305,'rs_page_bg_color',''),(12177,2308,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12178,2308,'_edit_lock','1645152593:1'),(12179,2309,'_wp_attached_file','2022/02/Sarah_Grace_Horn.jpeg'),(12180,2309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:443;s:6:\"height\";i:591;s:4:\"file\";s:29:\"2022/02/Sarah_Grace_Horn.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Sarah_Grace_Horn-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Sarah_Grace_Horn-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:29:\"Sarah_Grace_Horn-443x444.jpeg\";s:5:\"width\";i:443;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:29:\"Sarah_Grace_Horn-443x564.jpeg\";s:5:\"width\";i:443;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:29:\"Sarah_Grace_Horn-443x438.jpeg\";s:5:\"width\";i:443;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:28:\"Sarah_Grace_Horn-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1645134421\";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\";}}'),(12181,2309,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.295860499864167347805476993016782216727733612060546875;s:5:\"bytes\";i:1394;s:11:\"size_before\";i:471168;s:10:\"size_after\";i:469774;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:51571;s:10:\"size_after\";i:51571;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20129;s:10:\"size_after\";i:20129;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:116974;s:10:\"size_after\";i:116974;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:153253;s:10:\"size_after\";i:153253;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:116844;s:10:\"size_after\";i:116844;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1394;s:11:\"size_before\";i:12397;s:10:\"size_after\";i:11003;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(12182,2308,'_thumbnail_id','2309'),(12183,2308,'_edit_last','1'),(12184,2308,'fave_agent_company','Lantern Realty and Development'),(12185,2308,'fave_agent_email','horngsarah8648@gmail.com'),(12186,2308,'fave_agent_visible','0'),(12187,2308,'fave_agent_position','Licensed Agent'),(12188,2308,'fave_agent_license','336632'),(12189,2308,'fave_agent_mobile','704-223-1789'),(12190,2308,'fave_agent_website','https://lantern-realty.com/'),(12191,2308,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(12192,2308,'fave_agent_logo','22'),(12193,2308,'fave_agent_agencies','45'),(12194,2308,'_primary_term_agent_category','7'),(12195,2308,'rs_page_bg_color',''),(12196,2311,'_wp_attached_file','2022/02/Amy_Bundy-1.jpg'),(12197,2311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:418;s:6:\"height\";i:627;s:4:\"file\";s:23:\"2022/02/Amy_Bundy-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Amy_Bundy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Amy_Bundy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"Amy_Bundy-1-418x444.jpg\";s:5:\"width\";i:418;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"Amy_Bundy-1-418x564.jpg\";s:5:\"width\";i:418;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"Amy_Bundy-1-418x438.jpg\";s:5:\"width\";i:418;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"Amy_Bundy-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"Amy_Bundy-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(12198,2311,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.324972434536712706520944493604474700987339019775390625;s:5:\"bytes\";i:1733;s:11:\"size_before\";i:533276;s:10:\"size_after\";i:531543;s:4:\"time\";d:0.3000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44538;s:10:\"size_after\";i:44538;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20399;s:10:\"size_after\";i:20399;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:103051;s:10:\"size_after\";i:103051;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:122814;s:10:\"size_after\";i:122814;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:100491;s:10:\"size_after\";i:100491;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:129036;s:10:\"size_after\";i:129036;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1733;s:11:\"size_before\";i:12947;s:10:\"size_after\";i:11214;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(12202,2313,'_wp_attached_file','2022/02/Melissa_Shannon_Morefield-Valley-1.jpg'),(12203,2313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:612;s:4:\"file\";s:46:\"2022/02/Melissa_Shannon_Morefield-Valley-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Melissa_Shannon_Morefield-Valley-1-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Melissa_Shannon_Morefield-Valley-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:46:\"Melissa_Shannon_Morefield-Valley-1-427x444.jpg\";s:5:\"width\";i:427;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:46:\"Melissa_Shannon_Morefield-Valley-1-427x564.jpg\";s:5:\"width\";i:427;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:46:\"Melissa_Shannon_Morefield-Valley-1-427x438.jpg\";s:5:\"width\";i:427;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:46:\"Melissa_Shannon_Morefield-Valley-1-419x600.jpg\";s:5:\"width\";i:419;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:45:\"Melissa_Shannon_Morefield-Valley-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(12204,2313,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.31395921494236100901531472118222154676914215087890625;s:5:\"bytes\";i:1377;s:11:\"size_before\";i:438592;s:10:\"size_after\";i:437215;s:4:\"time\";d:0.7399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:41399;s:10:\"size_after\";i:41399;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18437;s:10:\"size_after\";i:18437;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:86768;s:10:\"size_after\";i:86768;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79700;s:10:\"size_after\";i:79700;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:84377;s:10:\"size_after\";i:84377;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:116295;s:10:\"size_after\";i:116295;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1377;s:11:\"size_before\";i:11616;s:10:\"size_after\";i:10239;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(12213,2314,'_elementor_css','a:6:{s:4:\"time\";i:1619844042;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12214,2315,'_wp_page_template','template/template-onepage.php'),(12215,2315,'_elementor_edit_mode','builder'),(12216,2315,'_elementor_template_type','wp-page'),(12217,2315,'_elementor_version','3.1.1'),(12218,2315,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `lrwp_postmeta` VALUES (12219,2315,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12220,2315,'_elementor_css','a:6:{s:4:\"time\";i:1619844042;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12221,2316,'_wp_page_template','template/template-onepage.php'),(12222,2316,'_elementor_edit_mode','builder'),(12223,2316,'_elementor_template_type','wp-page'),(12224,2316,'_elementor_version','3.1.1'),(12225,2316,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12226,2316,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12227,2316,'_elementor_css','a:6:{s:4:\"time\";i:1619844042;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12418,2375,'_wp_page_template','template/template-onepage.php'),(12419,2375,'_elementor_edit_mode','builder'),(12420,2375,'_elementor_template_type','wp-page'),(12230,2317,'_wp_page_template','template/template-page.php'),(12231,2317,'_elementor_edit_mode','builder'),(12232,2317,'_elementor_template_type','wp-page'),(12233,2317,'_elementor_version','3.1.1'),(12234,2317,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">6477 Morehead Road Harrisburg, North Carolina 28075 <\\/br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">118 East Main Street Albemarle, North Carolina 28001 <\\/br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(12235,2317,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12236,2317,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(12237,2317,'_elementor_css','a:6:{s:4:\"time\";i:1619841994;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12238,2318,'_wp_page_template','template/template-page.php'),(12239,2318,'_elementor_edit_mode','builder'),(12240,2318,'_elementor_template_type','wp-page'),(12241,2318,'_elementor_version','3.1.1'),(12242,2318,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">6477 Morehead Road Harrisburg, North Carolina 28075 <\\/br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">118 East Main Street Albemarle, North Carolina 28001 <\\/br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(12243,2318,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12244,2318,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(12245,2318,'_elementor_css','a:6:{s:4:\"time\";i:1619841994;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12246,2319,'_wp_page_template','template/template-page.php'),(12247,2319,'_elementor_edit_mode','builder'),(12248,2319,'_elementor_template_type','wp-page'),(12249,2319,'_elementor_version','3.1.1'),(12250,2319,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(12251,2319,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12252,2319,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(12253,2319,'_elementor_css','a:6:{s:4:\"time\";i:1619841994;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12254,101,'_elementor_page_assets','a:0:{}'),(12256,2321,'_wp_attached_file','2022/02/image016.png'),(12257,2321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:242;s:6:\"height\";i:30;s:4:\"file\";s:20:\"2022/02/image016.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"image016-150x30.png\";s:5:\"width\";i:150;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"image016-120x30.png\";s:5:\"width\";i:120;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12258,2321,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.663094440723375;s:5:\"bytes\";i:796;s:11:\"size_before\";i:7465;s:10:\"size_after\";i:6669;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3358;s:10:\"size_after\";i:3358;s:4:\"time\";d:0.03;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.38;s:5:\"bytes\";i:796;s:11:\"size_before\";i:4107;s:10:\"size_after\";i:3311;s:4:\"time\";d:0.01;}}}'),(12259,2322,'_wp_attached_file','2022/02/image017.jpg'),(12260,2322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:624;s:6:\"height\";i:52;s:4:\"file\";s:20:\"2022/02/image017.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"image017-300x25.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:25;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"image017-150x52.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:19:\"image017-592x52.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:19:\"image017-584x52.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"image017-120x52.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:19:\"image017-496x41.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:41;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:{}}}'),(12261,2322,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.3817733990147785;s:5:\"bytes\";i:5182;s:11:\"size_before\";i:81200;s:10:\"size_after\";i:76018;s:4:\"time\";d:0.07;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7676;s:10:\"size_after\";i:7676;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6965;s:10:\"size_after\";i:6965;s:4:\"time\";d:0.01;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18514;s:10:\"size_after\";i:18514;s:4:\"time\";d:0.02;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.71;s:5:\"bytes\";i:3973;s:11:\"size_before\";i:25290;s:10:\"size_after\";i:21317;s:4:\"time\";d:0.01;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.31;s:5:\"bytes\";i:1209;s:11:\"size_before\";i:6984;s:10:\"size_after\";i:5775;s:4:\"time\";d:0.01;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15771;s:10:\"size_after\";i:15771;s:4:\"time\";d:0.01;}}}'),(12262,2323,'_wp_attached_file','2022/02/image001-1.jpg'),(12263,2323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:913;s:6:\"height\";i:554;s:4:\"file\";s:22:\"2022/02/image001-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"image001-1-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"image001-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:22:\"image001-1-768x466.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:22:\"image001-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:22:\"image001-1-758x554.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:22:\"image001-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:21:\"image001-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"image001-1-496x301.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:301;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:{}}}'),(12264,2323,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.954844939598374;s:5:\"bytes\";i:12041;s:11:\"size_before\";i:304462;s:10:\"size_after\";i:292421;s:4:\"time\";d:0.24000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16971;s:10:\"size_after\";i:16971;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9999;s:10:\"size_after\";i:9999;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:65286;s:10:\"size_after\";i:65286;s:4:\"time\";d:0.06;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:51014;s:10:\"size_after\";i:51014;s:4:\"time\";d:0.04;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59673;s:10:\"size_after\";i:59673;s:4:\"time\";d:0.03;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.97;s:5:\"bytes\";i:6718;s:11:\"size_before\";i:56119;s:10:\"size_after\";i:49401;s:4:\"time\";d:0.01;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.79;s:5:\"bytes\";i:535;s:11:\"size_before\";i:6085;s:10:\"size_after\";i:5550;s:4:\"time\";d:0.02;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.18;s:5:\"bytes\";i:4788;s:11:\"size_before\";i:39315;s:10:\"size_after\";i:34527;s:4:\"time\";d:0.04;}}}'),(12265,2324,'_wp_attached_file','2022/02/image002.png'),(12266,2324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:21;s:6:\"height\";i:21;s:4:\"file\";s:20:\"2022/02/image002.png\";s:5:\"sizes\";a:0:{}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:{}}}'),(12267,2324,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1157;s:10:\"size_after\";i:1157;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1157;s:10:\"size_after\";i:1157;s:4:\"time\";d:0.01;}}}'),(12268,2325,'_wp_attached_file','2022/02/image003.png'),(12269,2325,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:21;s:6:\"height\";i:21;s:4:\"file\";s:20:\"2022/02/image003.png\";s:5:\"sizes\";a:0:{}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:{}}}'),(12270,2325,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1189;s:10:\"size_after\";i:1189;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1189;s:10:\"size_after\";i:1189;s:4:\"time\";d:0.01;}}}'),(12271,2326,'_wp_attached_file','2022/02/image004.png'),(12272,2326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:21;s:6:\"height\";i:21;s:4:\"file\";s:20:\"2022/02/image004.png\";s:5:\"sizes\";a:0:{}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:{}}}'),(12273,2326,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1160;s:10:\"size_after\";i:1160;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1160;s:10:\"size_after\";i:1160;s:4:\"time\";d:0.01;}}}'),(12276,2328,'_wp_attached_file','2022/02/Free-CE-flyer-DR-Horton-March.pdf'),(12287,2333,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.057336077624228209970169700682163238525390625;s:5:\"bytes\";i:99416;s:11:\"size_before\";i:1965778;s:10:\"size_after\";i:1866362;s:4:\"time\";d:1.3800000000000001154631945610162802040576934814453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54103;s:10:\"size_after\";i:54103;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:358000;s:10:\"size_after\";i:358000;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20540;s:10:\"size_after\";i:20540;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:41937;s:11:\"size_before\";i:372925;s:10:\"size_after\";i:330988;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:290497;s:10:\"size_after\";i:290497;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:136404;s:10:\"size_after\";i:136404;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:196633;s:10:\"size_after\";i:196633;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:16403;s:11:\"size_before\";i:150823;s:10:\"size_after\";i:134420;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:19261;s:11:\"size_before\";i:180769;s:10:\"size_after\";i:161508;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1336;s:11:\"size_before\";i:12375;s:10:\"size_after\";i:11039;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:20479;s:11:\"size_before\";i:192709;s:10:\"size_after\";i:172230;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(12290,2335,'_wp_attached_file','2022/03/20180820_164925-2.jpg'),(12291,2335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1929;s:6:\"height\";i:1930;s:4:\"file\";s:29:\"2022/03/20180820_164925-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20180820_164925-2-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:31:\"20180820_164925-2-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:29:\"20180820_164925-2-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:29:\"20180820_164925-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"20180820_164925-2-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:30:\"20180820_164925-2-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:29:\"20180820_164925-2-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:29:\"20180820_164925-2-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:29:\"20180820_164925-2-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:29:\"20180820_164925-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:28:\"20180820_164925-2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"20180820_164925-2-496x496.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-J327P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534783765\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.47\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12292,2335,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.4344161863734345985221807495690882205963134765625;s:5:\"bytes\";i:87501;s:11:\"size_before\";i:3594332;s:10:\"size_after\";i:3506831;s:4:\"time\";d:1.2500000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:68944;s:10:\"size_after\";i:68944;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:560324;s:10:\"size_after\";i:560324;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2382;s:11:\"size_before\";i:23254;s:10:\"size_after\";i:20872;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:32744;s:11:\"size_before\";i:377050;s:10:\"size_after\";i:344306;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1077579;s:10:\"size_after\";i:1077579;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:463585;s:10:\"size_after\";i:463585;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:163247;s:10:\"size_after\";i:163247;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:249067;s:10:\"size_after\";i:249067;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:14808;s:11:\"size_before\";i:174452;s:10:\"size_after\";i:159644;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:21131;s:11:\"size_before\";i:247457;s:10:\"size_after\";i:226326;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1212;s:11:\"size_before\";i:12051;s:10:\"size_after\";i:10839;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:15224;s:11:\"size_before\";i:177322;s:10:\"size_after\";i:162098;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(12299,2340,'_wp_attached_file','2022/03/MLS-Map.pdf'),(12302,2341,'_wp_attached_file','2022/03/Stephanie-066-edit-1-scaled.jpg'),(12303,2341,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1706;s:6:\"height\";i:2560;s:4:\"file\";s:39:\"2022/03/Stephanie-066-edit-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Stephanie-066-edit-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-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:33:\"Stephanie-066-edit-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"Stephanie-066-edit-1-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:34:\"Stephanie-066-edit-1-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:33:\"Stephanie-066-edit-1-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:31:\"Stephanie-066-edit-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:32:\"Stephanie-066-edit-1-496x744.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:16:\"Jarvis T. Harris\";s:6:\"camera\";s:12:\"Canon EOS 5D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1564252096\";s:9:\"copyright\";s:34:\"J. Harris Photography &amp; Design\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"Stephanie-066-edit-1.jpg\";}'),(12304,2341,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9334297778248252797084205667488276958465576171875;s:5:\"bytes\";i:591199;s:11:\"size_before\";i:5951610;s:10:\"size_after\";i:5360411;s:4:\"time\";d:2.04999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2120;s:11:\"size_before\";i:29570;s:10:\"size_after\";i:27450;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:36187;s:11:\"size_before\";i:337070;s:10:\"size_after\";i:300883;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1089;s:11:\"size_before\";i:14228;s:10:\"size_after\";i:13139;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:46203;s:11:\"size_before\";i:426530;s:10:\"size_after\";i:380327;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:77693;s:11:\"size_before\";i:741158;s:10:\"size_after\";i:663465;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:120575;s:11:\"size_before\";i:1235586;s:10:\"size_after\";i:1115011;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:50465;s:11:\"size_before\";i:516886;s:10:\"size_after\";i:466421;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:16375;s:11:\"size_before\";i:153166;s:10:\"size_after\";i:136791;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:26766;s:11:\"size_before\";i:249296;s:10:\"size_after\";i:222530;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:15860;s:11:\"size_before\";i:148950;s:10:\"size_after\";i:133090;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:11203;s:11:\"size_before\";i:114503;s:10:\"size_after\";i:103300;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:681;s:11:\"size_before\";i:8373;s:10:\"size_after\";i:7692;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:18301;s:11:\"size_before\";i:176660;s:10:\"size_after\";i:158359;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:167681;s:11:\"size_before\";i:1799634;s:10:\"size_after\";i:1631953;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;}}}'),(12317,2351,'_wp_attached_file','2022/04/LRD-Roster_012422.xlsx'),(12326,2355,'_wp_attached_file','2022/04/IMG_7616-scaled-e1656030560317.jpg'),(12327,2355,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:42:\"2022/04/IMG_7616-scaled-e1656030560317.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_7616-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_7616-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_7616-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"IMG_7616-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"IMG_7616-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"IMG_7616-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"IMG_7616-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"IMG_7616-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"IMG_7616-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"IMG_7616-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"IMG_7616-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"IMG_7616-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"IMG_7616-496x744.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 70D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1649346141\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_7616.jpg\";}'),(12328,2355,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.06682277308825490536037250421941280364990234375;s:5:\"bytes\";i:1128519;s:11:\"size_before\";i:10197317;s:10:\"size_after\";i:9068798;s:4:\"time\";d:2.6699999999999999289457264239899814128875732421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:11480;s:11:\"size_before\";i:76752;s:10:\"size_after\";i:65272;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:77045;s:11:\"size_before\";i:632712;s:10:\"size_after\";i:555667;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:5103;s:11:\"size_before\";i:31827;s:10:\"size_after\";i:26724;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:91909;s:11:\"size_before\";i:772934;s:10:\"size_after\";i:681025;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:142505;s:11:\"size_before\";i:1273839;s:10:\"size_after\";i:1131334;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:217329;s:11:\"size_before\";i:2075832;s:10:\"size_after\";i:1858503;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:85469;s:11:\"size_before\";i:785449;s:10:\"size_after\";i:699980;s:4:\"time\";d:0.7199999999999999733546474089962430298328399658203125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:33173;s:11:\"size_before\";i:260378;s:10:\"size_after\";i:227205;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:48256;s:11:\"size_before\";i:401302;s:10:\"size_after\";i:353046;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:32665;s:11:\"size_before\";i:255342;s:10:\"size_after\";i:222677;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:33395;s:11:\"size_before\";i:250522;s:10:\"size_after\";i:217127;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:2935;s:11:\"size_before\";i:17005;s:10:\"size_after\";i:14070;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:46934;s:11:\"size_before\";i:362738;s:10:\"size_after\";i:315804;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:300321;s:11:\"size_before\";i:3000685;s:10:\"size_after\";i:2700364;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;}}}'),(14695,2608,'_elementor_css','a:6:{s:4:\"time\";i:1652136407;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12335,2360,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14927,2706,'_wp_page_template','template/template-page.php'),(14666,2640,'_wp_attached_file','2022/05/What-Constitutes-a-Bedroom.pdf'),(12351,2369,'_wp_attached_file','2022/04/lantern_3_REV_LOGO-e1650416628785.jpg'),(12352,2369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:292;s:4:\"file\";s:45:\"2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1650416603262-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1650416603262-1024x598.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1650416603262-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:45:\"lantern_3_REV_LOGO-e1650416603262-768x449.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1650416603262-1536x897.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:897;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-2048x1182.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1650416603262-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1650416603262-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1650416603262-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1650416603262-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1650416603262-1027x600.jpg\";s:5:\"width\";i:1027;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:44:\"lantern_3_REV_LOGO-e1650416603262-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1650416603262-496x290.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"faraz ali\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1526127625\";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\";}}'),(12354,2369,'_wp_attachment_backup_sizes','a:15:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2229;s:6:\"height\";i:1287;s:4:\"file\";s:22:\"lantern_3_REV_LOGO.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-768x443.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1024x591.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1536x887.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:887;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-2048x1182.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-gallery-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-1-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-4-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-6-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"houzez-variable-gallery-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1039x600.jpg\";s:5:\"width\";i:1039;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-map-info-orig\";a:4:{s:4:\"file\";s:29:\"lantern_3_REV_LOGO-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-496x286.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1650416628785\";a:3:{s:5:\"width\";i:1744;s:6:\"height\";i:1019;s:4:\"file\";s:37:\"lantern_3_REV_LOGO-e1650416603262.jpg\";}}'),(14732,2669,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":47,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bd8f1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Office\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14731,2669,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14730,2669,'_elementor_version','3.6.5'),(14729,2669,'_elementor_template_type','wp-page'),(14902,2695,'_wp_attached_file','2022/06/Tanner-Main-headshot.jpeg'),(14728,2669,'_elementor_edit_mode','builder'),(12368,2301,'fave_agency_address','105 N State Street, Lexington NC 27293'),(12369,2370,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12370,2370,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12371,2370,'_edit_lock','1653526186:1'),(12372,2370,'_thumbnail_id','28'),(12373,2370,'_edit_last','1'),(12374,2370,'fave_agency_email','ashleyferlauto@gmail.com'),(12375,2370,'fave_agency_visible','0'),(12376,2370,'fave_agency_phone','423-512-4050'),(12377,2370,'fave_agency_web','https://lantern-realty.com/'),(12378,2370,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(12379,2370,'rs_page_bg_color',''),(12380,2370,'fave_agency_address','416 E. Elk Ave., Elizabethton, TN 37643'),(12381,2371,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12382,2371,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12383,2371,'_edit_lock','1650417564:1'),(12384,2371,'_thumbnail_id','28'),(12385,2371,'_edit_last','1'),(12386,2371,'fave_agency_email','matt@carolinaeliterealtygroup.com'),(12387,2371,'fave_agency_visible','0'),(12388,2371,'fave_agency_phone','919-426-1561'),(12389,2371,'fave_agency_web','https://lantern-realty.com/'),(12390,2371,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(12391,2371,'rs_page_bg_color',''),(12392,2371,'fave_agency_address','4909 Unicon Drive - Ste. 105, Wake Forest, NC 27587'),(14727,2669,'_wp_page_template','template/template-onepage.php'),(12393,2372,'_wp_page_template','template/template-onepage.php'),(12394,2372,'_elementor_edit_mode','builder'),(12395,2372,'_elementor_template_type','wp-page'),(12396,2372,'_elementor_version','3.2.4'),(12397,2372,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12398,2372,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12399,2372,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12400,2372,'_elementor_css','a:6:{s:4:\"time\";i:1645154753;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12401,2373,'_wp_page_template','template/template-onepage.php'),(12402,2373,'_elementor_edit_mode','builder'),(12403,2373,'_elementor_template_type','wp-page'),(12404,2373,'_elementor_version','3.2.4'),(12405,2373,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12406,2373,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12407,2373,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12408,2373,'_elementor_css','a:6:{s:4:\"time\";i:1645154753;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12409,2374,'_wp_page_template','template/template-onepage.php'),(12410,2374,'_elementor_edit_mode','builder'),(12411,2374,'_elementor_template_type','wp-page'),(12412,2374,'_elementor_version','3.2.4'),(12413,2374,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12414,2374,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12415,2374,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12416,2374,'_elementor_css','a:6:{s:4:\"time\";i:1645154753;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12417,1279,'_elementor_page_assets','a:0:{}'),(12421,2375,'_elementor_version','3.5.5'),(12422,2375,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12423,2375,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12424,2375,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12425,2375,'_elementor_page_assets','a:0:{}'),(12426,2376,'_wp_page_template','template/template-onepage.php'),(12427,2376,'_elementor_edit_mode','builder'),(12428,2376,'_elementor_template_type','wp-page'),(12429,2376,'_elementor_version','3.5.5'),(12430,2376,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12431,2376,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12432,2376,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12433,2376,'_elementor_page_assets','a:0:{}'),(12434,2377,'_wp_page_template','template/template-onepage.php'),(12435,2377,'_elementor_edit_mode','builder'),(12436,2377,'_elementor_template_type','wp-page'),(12437,2377,'_elementor_version','3.5.5'),(12438,2377,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12439,2377,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12440,2377,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12441,2377,'_elementor_page_assets','a:0:{}'),(12442,2378,'_wp_page_template','template/template-onepage.php'),(12443,2378,'_elementor_edit_mode','builder'),(12444,2378,'_elementor_template_type','wp-page'),(12445,2378,'_elementor_version','3.5.5'),(12446,2378,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12447,2378,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12448,2378,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12449,2378,'_elementor_page_assets','a:0:{}'),(12450,2379,'_wp_page_template','template/template-onepage.php'),(12451,2379,'_elementor_edit_mode','builder'),(12452,2379,'_elementor_template_type','wp-page'),(12453,2379,'_elementor_version','3.5.5'),(12454,2379,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12455,2379,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12456,2379,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12457,2379,'_elementor_page_assets','a:0:{}'),(12458,2380,'_wp_page_template','template/template-onepage.php'),(12459,2380,'_elementor_edit_mode','builder'),(12460,2380,'_elementor_template_type','wp-page'),(12461,2380,'_elementor_version','3.5.5'),(12462,2380,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12463,2380,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12464,2380,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12465,2380,'_elementor_page_assets','a:0:{}'),(12466,2381,'_wp_page_template','template/template-onepage.php'),(12467,2381,'_elementor_edit_mode','builder'),(12468,2381,'_elementor_template_type','wp-page'),(12469,2381,'_elementor_version','3.5.5'),(12470,2381,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12471,2381,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12472,2381,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12473,2381,'_elementor_page_assets','a:0:{}'),(12474,2382,'_wp_page_template','template/template-onepage.php'),(12475,2382,'_elementor_edit_mode','builder'),(12476,2382,'_elementor_template_type','wp-page'),(12477,2382,'_elementor_version','3.5.5'),(12478,2382,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12479,2382,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12480,2382,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12481,2382,'_elementor_page_assets','a:0:{}'),(12482,2383,'_wp_page_template','template/template-onepage.php'),(12483,2383,'_elementor_edit_mode','builder'),(12484,2383,'_elementor_template_type','wp-page'),(12485,2383,'_elementor_version','3.5.5'),(12486,2383,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12487,2383,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12488,2383,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12489,2383,'_elementor_page_assets','a:0:{}'),(12490,2384,'_wp_page_template','template/template-onepage.php'),(12491,2384,'_elementor_edit_mode','builder'),(12492,2384,'_elementor_template_type','wp-page'),(12493,2384,'_elementor_version','3.5.5'),(12494,2384,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12495,2384,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12496,2384,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12497,2384,'_elementor_page_assets','a:0:{}'),(12498,2385,'_wp_page_template','template/template-onepage.php'),(12499,2385,'_elementor_edit_mode','builder'),(12500,2385,'_elementor_template_type','wp-page'),(12501,2385,'_elementor_version','3.5.5'),(12502,2385,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12503,2385,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12504,2385,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12505,2385,'_elementor_page_assets','a:0:{}'),(12506,2386,'_wp_page_template','template/template-onepage.php'),(12507,2386,'_elementor_edit_mode','builder'),(12508,2386,'_elementor_template_type','wp-page'),(12509,2386,'_elementor_version','3.5.5'),(12510,2386,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12511,2386,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12512,2386,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12513,2386,'_elementor_page_assets','a:0:{}'),(12514,2387,'_wp_page_template','template/template-onepage.php'),(12515,2387,'_elementor_edit_mode','builder'),(12516,2387,'_elementor_template_type','wp-page'),(12517,2387,'_elementor_version','3.5.5'),(12518,2387,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12519,2387,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12520,2387,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12521,2387,'_elementor_page_assets','a:0:{}'),(12522,2388,'_wp_page_template','template/template-onepage.php'),(12523,2388,'_elementor_edit_mode','builder'),(12524,2388,'_elementor_template_type','wp-page'),(12525,2388,'_elementor_version','3.5.5'),(12526,2388,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12527,2388,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12528,2388,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12529,2388,'_elementor_page_assets','a:0:{}'),(12530,2389,'_wp_page_template','template/template-onepage.php'),(12531,2389,'_elementor_edit_mode','builder'),(12532,2389,'_elementor_template_type','wp-page'),(12533,2389,'_elementor_version','3.5.5'),(12534,2389,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12535,2389,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12536,2389,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12537,2389,'_elementor_page_assets','a:0:{}'),(12968,2445,'_wp_page_template','template/template-onepage.php'),(12969,2445,'_elementor_edit_mode','builder'),(12970,2445,'_elementor_template_type','wp-page'),(12539,2390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12540,2390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12541,2390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12542,2390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12543,2390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12544,2390,'_edit_last','1'),(12545,2390,'_wp_page_template','template/template-onepage.php'),(12546,2390,'_edit_lock','1650504738:1'),(12547,2390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12548,2390,'fave_listing_page_content_area','0'),(12549,2390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12550,2390,'fave_prop_no','9'),(12551,2390,'fave_properties_sort','d_date'),(12552,2390,'fave_listings_tabs','disable'),(12553,2390,'fave_properties_min_beds','0'),(12554,2390,'fave_properties_min_baths','0'),(12555,2390,'fave_agency_orderby','None'),(12556,2390,'fave_agency_order','ASC'),(12557,2390,'fave_agent_orderby','None'),(12558,2390,'fave_agent_order','ASC'),(12559,2390,'fave_page_header_image_opacity','0.35'),(12560,2390,'fave_page_header_search','0'),(12561,2390,'fave_header_type','elementor'),(12562,2390,'fave_adv_search','hide'),(12563,2390,'fave_header_full_screen','0'),(12564,2390,'fave_adv_search_enable','global'),(12565,2390,'fave_page_sidebar','right_sidebar'),(12566,2390,'fave_page_background','yes'),(12567,2390,'fave_adv_search_pos','under_menu'),(12568,2390,'fave_page_title','show'),(12569,2390,'fave_page_breadcrumb','show'),(12570,2390,'slide_template','default'),(12571,2390,'rs_page_bg_color','#ffffff'),(12572,2390,'passster_activate_protection',''),(12573,2390,'fave_main_menu_trans','no'),(12574,2390,'passster_protection_type','password'),(12575,2390,'_wpb_vc_js_status','false'),(12576,2390,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(12577,2390,'_elementor_edit_mode','builder'),(12578,2390,'_elementor_template_type','wp-page'),(12579,2390,'_elementor_version','3.5.5'),(12580,2390,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12581,2390,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12582,2390,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12609,2394,'_wp_page_template','template/template-onepage.php'),(12610,2394,'_elementor_edit_mode','builder'),(12611,2394,'_elementor_template_type','wp-page'),(12584,2391,'_wp_page_template','template/template-onepage.php'),(12585,2391,'_elementor_edit_mode','builder'),(12586,2391,'_elementor_template_type','wp-page'),(12587,2391,'_elementor_version','3.1.1'),(12588,2391,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12589,2391,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12590,2391,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12591,2391,'_elementor_css','a:6:{s:4:\"time\";i:1619975185;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12592,2392,'_wp_page_template','template/template-onepage.php'),(12593,2392,'_elementor_edit_mode','builder'),(12594,2392,'_elementor_template_type','wp-page'),(12595,2392,'_elementor_version','3.1.1'),(12596,2392,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12597,2392,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12598,2392,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12599,2392,'_elementor_css','a:6:{s:4:\"time\";i:1619975185;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12600,2393,'_wp_page_template','template/template-onepage.php'),(12601,2393,'_elementor_edit_mode','builder'),(12602,2393,'_elementor_template_type','wp-page'),(12603,2393,'_elementor_version','3.1.1'),(12604,2393,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12605,2393,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12606,2393,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12607,2393,'_elementor_css','a:6:{s:4:\"time\";i:1619975185;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12608,2390,'_elementor_page_assets','a:0:{}'),(12612,2394,'_elementor_version','3.5.5'),(12613,2394,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12614,2394,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12615,2394,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12616,2394,'_elementor_page_assets','a:0:{}'),(12617,2395,'_wp_page_template','template/template-onepage.php'),(12618,2395,'_elementor_edit_mode','builder'),(12619,2395,'_elementor_template_type','wp-page'),(12620,2395,'_elementor_version','3.5.5'),(12621,2395,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12622,2395,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12623,2395,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12624,2395,'_elementor_page_assets','a:0:{}'),(12625,2396,'_wp_page_template','template/template-onepage.php'),(12626,2396,'_elementor_edit_mode','builder'),(12627,2396,'_elementor_template_type','wp-page'),(12628,2396,'_elementor_version','3.5.5'),(12629,2396,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12630,2396,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12631,2396,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12632,2396,'_elementor_page_assets','a:0:{}'),(12633,2397,'_wp_page_template','template/template-onepage.php'),(12634,2397,'_elementor_edit_mode','builder'),(12635,2397,'_elementor_template_type','wp-page'),(12636,2397,'_elementor_version','3.5.5'),(12637,2397,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12638,2397,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12639,2397,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12640,2397,'_elementor_page_assets','a:0:{}'),(12641,2398,'_wp_page_template','template/template-onepage.php'),(12642,2398,'_elementor_edit_mode','builder'),(12643,2398,'_elementor_template_type','wp-page'),(12644,2398,'_elementor_version','3.5.5'),(12645,2398,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12646,2398,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12647,2398,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12648,2398,'_elementor_page_assets','a:0:{}'),(12649,2399,'_wp_page_template','template/template-onepage.php'),(12650,2399,'_elementor_edit_mode','builder'),(12651,2399,'_elementor_template_type','wp-page'),(12652,2399,'_elementor_version','3.5.5'),(12653,2399,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12654,2399,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12655,2399,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12656,2399,'_elementor_page_assets','a:0:{}'),(12657,2400,'_wp_page_template','template/template-onepage.php'),(12658,2400,'_elementor_edit_mode','builder'),(12659,2400,'_elementor_template_type','wp-page'),(12660,2400,'_elementor_version','3.5.5'),(12661,2400,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12662,2400,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12663,2400,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12664,2400,'_elementor_page_assets','a:0:{}'),(12665,2401,'_wp_page_template','template/template-onepage.php'),(12666,2401,'_elementor_edit_mode','builder'),(12667,2401,'_elementor_template_type','wp-page'),(12668,2401,'_elementor_version','3.5.5'),(12669,2401,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `lrwp_postmeta` VALUES (12670,2401,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12671,2401,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12672,2401,'_elementor_page_assets','a:0:{}'),(12673,2402,'_wp_page_template','template/template-onepage.php'),(12674,2402,'_elementor_edit_mode','builder'),(12675,2402,'_elementor_template_type','wp-page'),(12676,2402,'_elementor_version','3.5.5'),(12677,2402,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12678,2402,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12679,2402,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12680,2402,'_elementor_page_assets','a:0:{}'),(12681,2403,'_wp_page_template','template/template-onepage.php'),(12682,2403,'_elementor_edit_mode','builder'),(12683,2403,'_elementor_template_type','wp-page'),(12684,2403,'_elementor_version','3.5.5'),(12685,2403,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12686,2403,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12687,2403,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12688,2403,'_elementor_page_assets','a:0:{}'),(12689,2404,'_wp_page_template','template/template-onepage.php'),(12690,2404,'_elementor_edit_mode','builder'),(12691,2404,'_elementor_template_type','wp-page'),(12692,2404,'_elementor_version','3.5.5'),(12693,2404,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12694,2404,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12695,2404,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12696,2404,'_elementor_page_assets','a:0:{}'),(12697,2405,'_wp_page_template','template/template-onepage.php'),(12698,2405,'_elementor_edit_mode','builder'),(12699,2405,'_elementor_template_type','wp-page'),(12700,2405,'_elementor_version','3.5.5'),(12701,2405,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12702,2405,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tennessee Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"licensed-agent\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12703,2405,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12704,2405,'_elementor_page_assets','a:0:{}'),(12705,2406,'_wp_page_template','template/template-onepage.php'),(12706,2406,'_elementor_edit_mode','builder'),(12707,2406,'_elementor_template_type','wp-page'),(12708,2406,'_elementor_version','3.5.5'),(12709,2406,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12710,2406,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tennessee Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"licensed-agent\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12711,2406,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12712,2406,'_elementor_page_assets','a:0:{}'),(12713,2407,'_wp_page_template','template/template-onepage.php'),(12714,2407,'_elementor_edit_mode','builder'),(12715,2407,'_elementor_template_type','wp-page'),(12716,2407,'_elementor_version','3.5.5'),(12717,2407,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12718,2407,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tennessee Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"licensed-agent\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12719,2407,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12720,2407,'_elementor_page_assets','a:0:{}'),(12721,2408,'_wp_page_template','template/template-onepage.php'),(12722,2408,'_elementor_edit_mode','builder'),(12723,2408,'_elementor_template_type','wp-page'),(12724,2408,'_elementor_version','3.5.5'),(12725,2408,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12726,2408,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12727,2408,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12728,2408,'_elementor_page_assets','a:0:{}'),(12729,2409,'_wp_page_template','template/template-onepage.php'),(12730,2409,'_elementor_edit_mode','builder'),(12731,2409,'_elementor_template_type','wp-page'),(12732,2409,'_elementor_version','3.5.5'),(12733,2409,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12734,2409,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12735,2409,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12736,2409,'_elementor_page_assets','a:0:{}'),(12737,2410,'_wp_page_template','template/template-onepage.php'),(12738,2410,'_elementor_edit_mode','builder'),(12739,2410,'_elementor_template_type','wp-page'),(12740,2410,'_elementor_version','3.5.5'),(12741,2410,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12742,2410,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12743,2410,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12744,2410,'_elementor_page_assets','a:0:{}'),(12745,2411,'_wp_page_template','template/template-onepage.php'),(12746,2411,'_elementor_edit_mode','builder'),(12747,2411,'_elementor_template_type','wp-page'),(12748,2411,'_elementor_version','3.5.5'),(12749,2411,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12750,2411,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12751,2411,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12752,2411,'_elementor_page_assets','a:0:{}'),(12753,2412,'_wp_page_template','template/template-onepage.php'),(12754,2412,'_elementor_edit_mode','builder'),(12755,2412,'_elementor_template_type','wp-page'),(12756,2412,'_elementor_version','3.5.5'),(12757,2412,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12758,2412,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12759,2412,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12760,2412,'_elementor_page_assets','a:0:{}'),(12761,2413,'_wp_page_template','template/template-onepage.php'),(12762,2413,'_elementor_edit_mode','builder'),(12763,2413,'_elementor_template_type','wp-page'),(12764,2413,'_elementor_version','3.5.5'),(12765,2413,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12766,2413,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12767,2413,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12768,2413,'_elementor_page_assets','a:0:{}'),(12769,2414,'_wp_page_template','template/template-onepage.php'),(12770,2414,'_elementor_edit_mode','builder'),(12771,2414,'_elementor_template_type','wp-page'),(12772,2414,'_elementor_version','3.5.5'),(12773,2414,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12774,2414,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12775,2414,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12776,2414,'_elementor_page_assets','a:0:{}'),(12777,2390,'_elementor_css','a:6:{s:4:\"time\";i:1650419954;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(12778,2415,'_wp_page_template','template/template-onepage.php'),(12779,2415,'_elementor_edit_mode','builder'),(12780,2415,'_elementor_template_type','wp-page'),(12781,2415,'_elementor_version','3.5.5'),(12782,2415,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12783,2415,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  -  Lexington Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/lantern_3_REV_LOGO-e1650416628785.jpg\",\"id\":2369,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12784,2415,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(12785,2415,'_elementor_page_assets','a:0:{}'),(12786,2415,'_elementor_css','a:6:{s:4:\"time\";i:1650419954;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14905,2696,'_wp_attached_file','2022/06/Screenshot-2-e1656032744899.png'),(14906,2696,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:401;s:4:\"file\";s:39:\"2022/06/Screenshot-2-e1656032744899.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Screenshot-2-1020x1024.png\";s:5:\"width\";i:1020;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-768x771.png\";s:5:\"width\";i:768;s:6:\"height\";i:771;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:25:\"Screenshot-2-1141x785.png\";s:5:\"width\";i:1141;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-598x600.png\";s:5:\"width\";i:598;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Screenshot-2-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-496x498.png\";s:5:\"width\";i:496;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14907,2696,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4773624;s:10:\"size_after\";i:4773624;s:4:\"time\";d:11.629999999999999005240169935859739780426025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:130909;s:10:\"size_after\";i:130909;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1082724;s:10:\"size_after\";i:1082724;s:4:\"time\";d:2.390000000000000124344978758017532527446746826171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39792;s:10:\"size_after\";i:39792;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:676446;s:10:\"size_after\";i:676446;s:4:\"time\";i:1;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:927415;s:10:\"size_after\";i:927415;s:4:\"time\";d:3.660000000000000142108547152020037174224853515625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:326826;s:10:\"size_after\";i:326826;s:4:\"time\";d:0.60999999999999998667732370449812151491641998291015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:494647;s:10:\"size_after\";i:494647;s:4:\"time\";d:2.529999999999999804600747665972448885440826416015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:319482;s:10:\"size_after\";i:319482;s:4:\"time\";d:0.5500000000000000444089209850062616169452667236328125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:438200;s:10:\"size_after\";i:438200;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21254;s:10:\"size_after\";i:21254;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:315929;s:10:\"size_after\";i:315929;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}}}'),(14937,2707,'_elementor_edit_mode','builder'),(14936,2707,'_wp_page_template','template/template-page.php'),(14935,2706,'_elementor_css','a:6:{s:4:\"time\";i:1645157177;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14933,2706,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14934,2706,'_elementor_page_assets','a:0:{}'),(14932,2706,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14912,2698,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.1963906555925216679270306485705077648162841796875;s:5:\"bytes\";i:572975;s:11:\"size_before\";i:6990577;s:10:\"size_after\";i:6417602;s:4:\"time\";d:2.57000000000000028421709430404007434844970703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:4903;s:11:\"size_before\";i:52897;s:10:\"size_after\";i:47994;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:36165;s:11:\"size_before\";i:448871;s:10:\"size_after\";i:412706;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2085;s:11:\"size_before\";i:19835;s:10:\"size_after\";i:17750;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:27444;s:11:\"size_before\";i:339921;s:10:\"size_after\";i:312477;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:75804;s:11:\"size_before\";i:940555;s:10:\"size_after\";i:864751;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:127583;s:11:\"size_before\";i:1571117;s:10:\"size_after\";i:1443534;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:38056;s:11:\"size_before\";i:453877;s:10:\"size_after\";i:415821;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:12306;s:11:\"size_before\";i:147269;s:10:\"size_after\";i:134963;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:18875;s:11:\"size_before\";i:227447;s:10:\"size_after\";i:208572;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12294;s:11:\"size_before\";i:144040;s:10:\"size_after\";i:131746;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:14405;s:11:\"size_before\";i:171320;s:10:\"size_after\";i:156915;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.75;s:5:\"bytes\";i:1208;s:11:\"size_before\";i:11234;s:10:\"size_after\";i:10026;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:13244;s:11:\"size_before\";i:155646;s:10:\"size_after\";i:142402;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:188603;s:11:\"size_before\";i:2306548;s:10:\"size_after\";i:2117945;s:4:\"time\";d:0.92000000000000003996802888650563545525074005126953125;}}}'),(14931,2706,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14930,2706,'_elementor_version','3.5.5'),(14928,2706,'_elementor_edit_mode','builder'),(14929,2706,'_elementor_template_type','wp-page'),(15080,2725,'_wp_attached_file','2022/07/238289776_10104327108332416_32970513820961977_n.jpg'),(14925,563,'fave_agent_visible','0'),(14926,2333,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:856;s:6:\"height\";i:1080;s:4:\"file\";s:32:\"VideoCapture_20210526-184249.jpg\";}}'),(14919,2701,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.889342122151443703614859259687364101409912109375;s:5:\"bytes\";i:88483;s:11:\"size_before\";i:2275012;s:10:\"size_after\";i:2186529;s:4:\"time\";d:0.8800000000000001154631945610162802040576934814453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:55268;s:10:\"size_after\";i:55268;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:383965;s:10:\"size_after\";i:383965;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21960;s:10:\"size_after\";i:21960;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:25758;s:11:\"size_before\";i:272974;s:10:\"size_after\";i:247216;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:460993;s:10:\"size_after\";i:460993;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:171108;s:10:\"size_after\";i:171108;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:253208;s:10:\"size_after\";i:253208;s:4:\"time\";d:0.25;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:17883;s:11:\"size_before\";i:185805;s:10:\"size_after\";i:167922;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:29772;s:11:\"size_before\";i:318593;s:10:\"size_after\";i:288821;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1589;s:11:\"size_before\";i:13430;s:10:\"size_after\";i:11841;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13481;s:11:\"size_before\";i:137708;s:10:\"size_after\";i:124227;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(14917,2701,'_wp_attached_file','2022/06/IMG_20210112_113535_2.jpg'),(14918,2701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1535;s:6:\"height\";i:1096;s:4:\"file\";s:33:\"2022/06/IMG_20210112_113535_2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IMG_20210112_113535_2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"IMG_20210112_113535_2-1024x731.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:731;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20210112_113535_2-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:\"IMG_20210112_113535_2-768x548.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:548;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:34:\"IMG_20210112_113535_2-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:33:\"IMG_20210112_113535_2-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:33:\"IMG_20210112_113535_2-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:33:\"IMG_20210112_113535_2-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:33:\"IMG_20210112_113535_2-840x600.jpg\";s:5:\"width\";i:840;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:32:\"IMG_20210112_113535_2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:33:\"IMG_20210112_113535_2-496x354.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:354;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:{}}}'),(14903,2695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:887;s:6:\"height\";i:1164;s:4:\"file\";s:33:\"2022/06/Tanner-Main-headshot.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Tanner-Main-headshot-229x300.jpeg\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Tanner-Main-headshot-780x1024.jpeg\";s:5:\"width\";i:780;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Tanner-Main-headshot-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Tanner-Main-headshot-768x1008.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1008;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:33:\"Tanner-Main-headshot-887x785.jpeg\";s:5:\"width\";i:887;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:33:\"Tanner-Main-headshot-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:33:\"Tanner-Main-headshot-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:33:\"Tanner-Main-headshot-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:33:\"Tanner-Main-headshot-457x600.jpeg\";s:5:\"width\";i:457;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:32:\"Tanner-Main-headshot-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:33:\"Tanner-Main-headshot-496x651.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 11 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595721044\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:18:\"0.0014598540145985\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(14904,2695,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.18814257793594180157015216536819934844970703125;s:5:\"bytes\";i:77015;s:11:\"size_before\";i:1838882;s:10:\"size_after\";i:1761867;s:4:\"time\";d:1.04000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40392;s:10:\"size_after\";i:40392;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:332983;s:10:\"size_after\";i:332983;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15711;s:10:\"size_after\";i:15711;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:32525;s:11:\"size_before\";i:355887;s:10:\"size_after\";i:323362;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:306490;s:10:\"size_after\";i:306490;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:127742;s:10:\"size_after\";i:127742;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:191352;s:10:\"size_after\";i:191352;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:12978;s:11:\"size_before\";i:137932;s:10:\"size_after\";i:124954;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:14211;s:11:\"size_before\";i:148686;s:10:\"size_after\";i:134475;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1082;s:11:\"size_before\";i:10111;s:10:\"size_after\";i:9029;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:16219;s:11:\"size_before\";i:171596;s:10:\"size_after\";i:155377;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(14910,2698,'_wp_attached_file','2022/06/D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-scaled.jpeg'),(14911,2698,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2233;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2022/06/D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-scaled.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-262x300.jpeg\";s:5:\"width\";i:262;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-893x1024.jpeg\";s:5:\"width\";i:893;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-768x880.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-1340x1536.jpeg\";s:5:\"width\";i:1340;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-1787x2048.jpeg\";s:5:\"width\";i:1787;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-523x600.jpeg\";s:5:\"width\";i:523;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0-496x569.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:569;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:{}}s:14:\"original_image\";s:41:\"D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0.jpeg\";}'),(12991,2447,'_elementor_page_assets','a:0:{}'),(13087,2458,'_wp_page_template','template/template-onepage.php'),(13088,2458,'_elementor_edit_mode','builder'),(13089,2458,'_elementor_template_type','wp-page'),(12994,2448,'_wp_page_template','template/template-onepage.php'),(12995,2448,'_elementor_edit_mode','builder'),(12996,2448,'_elementor_template_type','wp-page'),(12997,2448,'_elementor_version','3.6.5'),(12998,2448,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12999,2448,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b14e058\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2a54ed8\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12990,2447,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12984,2447,'_wp_page_template','template/template-onepage.php'),(12985,2447,'_elementor_edit_mode','builder'),(12986,2447,'_elementor_template_type','wp-page'),(12987,2447,'_elementor_version','3.5.5'),(12988,2447,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12989,2447,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b14e058\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2a54ed8\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12971,2445,'_elementor_version','3.5.5'),(12972,2445,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12973,2445,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12974,2445,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12975,2445,'_elementor_page_assets','a:0:{}'),(12976,2446,'_wp_page_template','template/template-onepage.php'),(12977,2446,'_elementor_edit_mode','builder'),(12978,2446,'_elementor_template_type','wp-page'),(12979,2446,'_elementor_version','3.5.5'),(12980,2446,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(12981,2446,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8d22185\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35f2a98\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"89a8967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"53b6d7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5563591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c1f4ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a670c6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4734b04\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c0b62d7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1449c32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2017c7e\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"01f9e63\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ab69d70\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b539bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4f29f2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"834328f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d5bc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa6ca71\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30245b5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0934718\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e1b2e7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a1c8149\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"45470e3\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c5a3ca9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"20fbdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a475d28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c828d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7e294b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44a8a17\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1f607f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c83e1b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"15738f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6554237\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca7bd66\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4c9c8d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8bbfa25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a50322c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dd9d39e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178616d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d285b6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c9562d4\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9809245\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"efe53d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1abc\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(12982,2446,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(12983,2446,'_elementor_page_assets','a:0:{}'),(13000,2448,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13001,2448,'_elementor_page_assets','a:0:{}'),(13002,2448,'_elementor_css','a:6:{s:4:\"time\";i:1651340620;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13003,2449,'_wp_page_template','template/template-onepage.php'),(13004,2449,'_elementor_edit_mode','builder'),(13005,2449,'_elementor_template_type','wp-page'),(13006,2449,'_elementor_version','3.6.5'),(13007,2449,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13008,2449,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b14e058\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2a54ed8\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13009,2449,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13010,2449,'_elementor_page_assets','a:0:{}'),(13011,2449,'_elementor_css','a:6:{s:4:\"time\";i:1651340620;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13012,2450,'_wp_page_template','template/template-onepage.php'),(13013,2450,'_elementor_edit_mode','builder'),(13014,2450,'_elementor_template_type','wp-page'),(13015,2450,'_elementor_version','3.6.5'),(13016,2450,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13017,2450,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b14e058\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2a54ed8\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13018,2450,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13019,2450,'_elementor_page_assets','a:0:{}'),(13020,2450,'_elementor_css','a:6:{s:4:\"time\";i:1651340620;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13022,2451,'_wp_page_template','template/template-onepage.php'),(13023,2451,'_elementor_edit_mode','builder'),(13024,2451,'_elementor_template_type','wp-page'),(13025,2451,'_elementor_version','3.6.5'),(13026,2451,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13027,2451,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b14e058\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2a54ed8\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13028,2451,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13029,2451,'_elementor_page_assets','a:0:{}'),(13030,2451,'_elementor_css','a:6:{s:4:\"time\";i:1651340907;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13031,2452,'_wp_page_template','template/template-onepage.php'),(13032,2452,'_elementor_edit_mode','builder'),(13033,2452,'_elementor_template_type','wp-page'),(13034,2452,'_elementor_version','3.6.5'),(13035,2452,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13036,2452,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b14e058\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2a54ed8\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13037,2452,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13038,2452,'_elementor_page_assets','a:0:{}'),(13039,2452,'_elementor_css','a:6:{s:4:\"time\";i:1651340907;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13068,2456,'_wp_page_template','template/template-onepage.php'),(13069,2456,'_elementor_edit_mode','builder'),(13070,2456,'_elementor_template_type','wp-page'),(13071,2456,'_elementor_version','3.6.5'),(13040,2453,'_wp_page_template','template/template-onepage.php'),(13041,2453,'_elementor_edit_mode','builder'),(13042,2453,'_elementor_template_type','wp-page'),(13043,2453,'_elementor_version','3.6.5'),(13044,2453,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13045,2453,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5666da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b14e058\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2a54ed8\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13046,2453,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13047,2453,'_elementor_page_assets','a:0:{}'),(13048,2453,'_elementor_css','a:6:{s:4:\"time\";i:1651340907;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13050,2454,'_wp_page_template','template/template-onepage.php'),(13051,2454,'_elementor_edit_mode','builder'),(13052,2454,'_elementor_template_type','wp-page'),(13053,2454,'_elementor_version','3.6.5'),(13054,2454,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13055,2454,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5666da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b14e058\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2a54ed8\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13056,2454,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13057,2454,'_elementor_page_assets','a:0:{}'),(13058,2454,'_elementor_css','a:6:{s:4:\"time\";i:1651341011;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13059,2455,'_wp_page_template','template/template-onepage.php'),(13060,2455,'_elementor_edit_mode','builder'),(13061,2455,'_elementor_template_type','wp-page'),(13062,2455,'_elementor_version','3.6.5'),(13063,2455,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13064,2455,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5666da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b14e058\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2a54ed8\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13065,2455,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13066,2455,'_elementor_page_assets','a:0:{}'),(13067,2455,'_elementor_css','a:6:{s:4:\"time\";i:1651341011;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13072,2456,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13073,2456,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13074,2456,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13075,2456,'_elementor_page_assets','a:0:{}'),(13076,2456,'_elementor_css','a:6:{s:4:\"time\";i:1651341011;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13109,2460,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13107,2460,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13108,2460,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13106,2460,'_elementor_version','3.6.5'),(13103,2460,'_wp_page_template','template/template-onepage.php'),(13104,2460,'_elementor_edit_mode','builder'),(13105,2460,'_elementor_template_type','wp-page'),(13090,2458,'_elementor_version','3.6.5'),(13091,2458,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13092,2458,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13093,2458,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13094,2458,'_elementor_page_assets','a:0:{}'),(13095,2459,'_wp_page_template','template/template-onepage.php'),(13096,2459,'_elementor_edit_mode','builder'),(13097,2459,'_elementor_template_type','wp-page'),(13098,2459,'_elementor_version','3.6.5'),(13099,2459,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13100,2459,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13101,2459,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13102,2459,'_elementor_page_assets','a:0:{}'),(13110,2460,'_elementor_page_assets','a:0:{}'),(13121,2462,'_wp_page_template','template/template-onepage.php'),(13122,2462,'_elementor_edit_mode','builder'),(13123,2462,'_elementor_template_type','wp-page'),(13146,2465,'_wp_page_template','template/template-onepage.php'),(13147,2465,'_elementor_edit_mode','builder'),(13148,2465,'_elementor_template_type','wp-page'),(13149,2465,'_elementor_version','3.6.5'),(13167,2467,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13168,2467,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13164,2467,'_elementor_template_type','wp-page'),(13163,2467,'_elementor_edit_mode','builder'),(13162,2467,'_wp_page_template','template/template-onepage.php'),(13124,2462,'_elementor_version','3.6.5'),(13125,2462,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13126,2462,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13127,2462,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13128,2462,'_elementor_page_assets','a:0:{}'),(13129,2463,'_wp_page_template','template/template-onepage.php'),(13130,2463,'_elementor_edit_mode','builder'),(13131,2463,'_elementor_template_type','wp-page'),(13132,2463,'_elementor_version','3.6.5'),(13133,2463,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13134,2463,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13135,2463,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13136,2463,'_elementor_page_assets','a:0:{}'),(13165,2467,'_elementor_version','3.6.5'),(13166,2467,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13150,2465,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `lrwp_postmeta` VALUES (13151,2465,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13152,2465,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13153,2465,'_elementor_page_assets','a:0:{}'),(13154,2466,'_wp_page_template','template/template-onepage.php'),(13155,2466,'_elementor_edit_mode','builder'),(13156,2466,'_elementor_template_type','wp-page'),(13157,2466,'_elementor_version','3.6.5'),(13158,2466,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13159,2466,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\"},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d777ddf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13160,2466,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13161,2466,'_elementor_page_assets','a:0:{}'),(13169,2467,'_elementor_page_assets','a:0:{}'),(13180,2469,'_wp_page_template','template/template-onepage.php'),(13181,2469,'_elementor_edit_mode','builder'),(13182,2469,'_elementor_template_type','wp-page'),(13202,2471,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13200,2471,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13201,2471,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":6,\"color\":\"rgba(0,0,0,0.3)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13199,2471,'_elementor_version','3.6.5'),(13196,2471,'_wp_page_template','template/template-onepage.php'),(13197,2471,'_elementor_edit_mode','builder'),(13198,2471,'_elementor_template_type','wp-page'),(13183,2469,'_elementor_version','3.6.5'),(13184,2469,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13185,2469,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13186,2469,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13187,2469,'_elementor_page_assets','a:0:{}'),(13188,2470,'_wp_page_template','template/template-onepage.php'),(13189,2470,'_elementor_edit_mode','builder'),(13190,2470,'_elementor_template_type','wp-page'),(13191,2470,'_elementor_version','3.6.5'),(13192,2470,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13193,2470,'_elementor_data','[{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13194,2470,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13195,2470,'_elementor_page_assets','a:0:{}'),(13203,2471,'_elementor_page_assets','a:0:{}'),(13205,2472,'_wp_page_template','template/template-onepage.php'),(13206,2472,'_elementor_edit_mode','builder'),(13207,2472,'_elementor_template_type','wp-page'),(13208,2472,'_elementor_version','3.6.5'),(13209,2472,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13210,2472,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":6,\"color\":\"rgba(0,0,0,0.3)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13211,2472,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13212,2472,'_elementor_page_assets','a:0:{}'),(13213,2472,'_elementor_css','a:6:{s:4:\"time\";i:1651344109;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13214,2473,'_wp_page_template','template/template-onepage.php'),(13215,2473,'_elementor_edit_mode','builder'),(13216,2473,'_elementor_template_type','wp-page'),(13217,2473,'_elementor_version','3.6.5'),(13218,2473,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13219,2473,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":6,\"color\":\"rgba(0,0,0,0.3)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13220,2473,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13221,2473,'_elementor_page_assets','a:0:{}'),(13222,2473,'_elementor_css','a:6:{s:4:\"time\";i:1651344109;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13223,2474,'_wp_page_template','template/template-onepage.php'),(13224,2474,'_elementor_edit_mode','builder'),(13225,2474,'_elementor_template_type','wp-page'),(13226,2474,'_elementor_version','3.6.5'),(13227,2474,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13228,2474,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":6,\"color\":\"rgba(0,0,0,0.3)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13229,2474,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13230,2474,'_elementor_page_assets','a:0:{}'),(13231,2474,'_elementor_css','a:6:{s:4:\"time\";i:1651344109;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13233,2475,'_wp_page_template','template/template-onepage.php'),(13234,2475,'_elementor_edit_mode','builder'),(13235,2475,'_elementor_template_type','wp-page'),(13236,2475,'_elementor_version','3.6.5'),(13237,2475,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13238,2475,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":6,\"color\":\"rgba(0,0,0,0.3)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13239,2475,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13240,2475,'_elementor_page_assets','a:0:{}'),(13241,2475,'_elementor_css','a:6:{s:4:\"time\";i:1651344156;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13242,2476,'_wp_page_template','template/template-onepage.php'),(13243,2476,'_elementor_edit_mode','builder'),(13244,2476,'_elementor_template_type','wp-page'),(13245,2476,'_elementor_version','3.6.5'),(13246,2476,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13247,2476,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":6,\"color\":\"rgba(0,0,0,0.3)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13248,2476,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13249,2476,'_elementor_page_assets','a:0:{}'),(13250,2476,'_elementor_css','a:6:{s:4:\"time\";i:1651344156;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13317,2484,'_elementor_version','3.6.5'),(13318,2484,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13319,2484,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13251,2477,'_wp_page_template','template/template-onepage.php'),(13252,2477,'_elementor_edit_mode','builder'),(13253,2477,'_elementor_template_type','wp-page'),(13254,2477,'_elementor_version','3.6.5'),(13255,2477,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13256,2477,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13257,2477,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13258,2477,'_elementor_page_assets','a:0:{}'),(13259,2477,'_elementor_css','a:6:{s:4:\"time\";i:1651344156;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13261,2478,'_wp_page_template','template/template-onepage.php'),(13262,2478,'_elementor_edit_mode','builder'),(13263,2478,'_elementor_template_type','wp-page'),(13264,2478,'_elementor_version','3.6.5'),(13265,2478,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13266,2478,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13267,2478,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13268,2478,'_elementor_page_assets','a:0:{}'),(13269,2478,'_elementor_css','a:6:{s:4:\"time\";i:1651344427;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13270,2479,'_wp_page_template','template/template-onepage.php'),(13271,2479,'_elementor_edit_mode','builder'),(13272,2479,'_elementor_template_type','wp-page'),(13273,2479,'_elementor_version','3.6.5'),(13274,2479,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13275,2479,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13276,2479,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13277,2479,'_elementor_page_assets','a:0:{}'),(13278,2479,'_elementor_css','a:6:{s:4:\"time\";i:1651344427;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13314,2484,'_wp_page_template','template/template-onepage.php'),(13315,2484,'_elementor_edit_mode','builder'),(13316,2484,'_elementor_template_type','wp-page'),(13279,2480,'_wp_page_template','template/template-onepage.php'),(13280,2480,'_elementor_edit_mode','builder'),(13281,2480,'_elementor_template_type','wp-page'),(13282,2480,'_elementor_version','3.6.5'),(13283,2480,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13284,2480,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13285,2480,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13286,2480,'_elementor_page_assets','a:0:{}'),(13287,2480,'_elementor_css','a:6:{s:4:\"time\";i:1651344427;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13320,2484,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13321,2484,'_elementor_page_assets','a:0:{}'),(13350,2488,'_wp_page_template','template/template-onepage.php'),(13351,2488,'_elementor_edit_mode','builder'),(13352,2488,'_elementor_template_type','wp-page'),(13323,2485,'_wp_page_template','template/template-onepage.php'),(13324,2485,'_elementor_edit_mode','builder'),(13325,2485,'_elementor_template_type','wp-page'),(13326,2485,'_elementor_version','3.6.5'),(13327,2485,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13328,2485,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13303,2482,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13298,2482,'_wp_page_template','template/template-onepage.php'),(13299,2482,'_elementor_edit_mode','builder'),(13300,2482,'_elementor_template_type','wp-page'),(13301,2482,'_elementor_version','3.6.5'),(13302,2482,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13304,2482,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13305,2482,'_elementor_page_assets','a:0:{}'),(13306,2483,'_wp_page_template','template/template-onepage.php'),(13307,2483,'_elementor_edit_mode','builder'),(13308,2483,'_elementor_template_type','wp-page'),(13309,2483,'_elementor_version','3.6.5'),(13310,2483,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13311,2483,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e9e344\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6d389fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"eed863f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9331022\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6416a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14056bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf669b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a67ed03\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77936cf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8a816cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef16422\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"223aa78\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3fac6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dd436e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5d590a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1aace45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"567f062\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8e6cce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"58ff4b0\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13312,2483,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13313,2483,'_elementor_page_assets','a:0:{}'),(13329,2485,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13330,2485,'_elementor_page_assets','a:0:{}'),(13331,2485,'_elementor_css','a:6:{s:4:\"time\";i:1651345329;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13332,2486,'_wp_page_template','template/template-onepage.php'),(13333,2486,'_elementor_edit_mode','builder'),(13334,2486,'_elementor_template_type','wp-page'),(13335,2486,'_elementor_version','3.6.5'),(13336,2486,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13337,2486,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13338,2486,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13339,2486,'_elementor_page_assets','a:0:{}'),(13340,2486,'_elementor_css','a:6:{s:4:\"time\";i:1651345329;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13366,2490,'_wp_page_template','template/template-onepage.php'),(13367,2490,'_elementor_edit_mode','builder'),(13368,2490,'_elementor_template_type','wp-page'),(13369,2490,'_elementor_version','3.6.5'),(13370,2490,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13371,2490,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13341,2487,'_wp_page_template','template/template-onepage.php'),(13342,2487,'_elementor_edit_mode','builder'),(13343,2487,'_elementor_template_type','wp-page'),(13344,2487,'_elementor_version','3.6.5'),(13345,2487,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13346,2487,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13347,2487,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13348,2487,'_elementor_page_assets','a:0:{}'),(13349,2487,'_elementor_css','a:6:{s:4:\"time\";i:1651345329;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13353,2488,'_elementor_version','3.6.5'),(13354,2488,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13355,2488,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13356,2488,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13357,2488,'_elementor_page_assets','a:0:{}'),(13358,2489,'_wp_page_template','template/template-onepage.php'),(13359,2489,'_elementor_edit_mode','builder'),(13360,2489,'_elementor_template_type','wp-page'),(13361,2489,'_elementor_version','3.6.5'),(13362,2489,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `lrwp_postmeta` VALUES (13363,2489,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1c15bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"15d4bc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a988354\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"435201f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1be51de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"681f6c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac9a227\",\"elType\":\"widget\",\"settings\":{\"address\":\"4350 Main Street Suite 215, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13364,2489,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13365,2489,'_elementor_page_assets','a:0:{}'),(13372,2490,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13373,2490,'_elementor_page_assets','a:0:{}'),(13412,2495,'_wp_page_template','template/template-onepage.php'),(13413,2495,'_elementor_edit_mode','builder'),(13414,2495,'_elementor_template_type','wp-page'),(13375,2491,'_wp_page_template','template/template-onepage.php'),(13376,2491,'_elementor_edit_mode','builder'),(13377,2491,'_elementor_template_type','wp-page'),(13378,2491,'_elementor_version','3.6.5'),(13379,2491,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13380,2491,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13381,2491,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13382,2491,'_elementor_page_assets','a:0:{}'),(13383,2491,'_elementor_css','a:6:{s:4:\"time\";i:1651345586;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13384,2492,'_wp_page_template','template/template-onepage.php'),(13385,2492,'_elementor_edit_mode','builder'),(13386,2492,'_elementor_template_type','wp-page'),(13387,2492,'_elementor_version','3.6.5'),(13388,2492,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13389,2492,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"049c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b76bbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a609a3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"81280cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b31627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e53fa28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8935a25\",\"elType\":\"widget\",\"settings\":{\"address\":\"113 S. Second St, Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13390,2492,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13391,2492,'_elementor_page_assets','a:0:{}'),(13392,2492,'_elementor_css','a:6:{s:4:\"time\";i:1651345586;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13393,2493,'_wp_page_template','template/template-onepage.php'),(13394,2493,'_elementor_edit_mode','builder'),(13395,2493,'_elementor_template_type','wp-page'),(13396,2493,'_elementor_version','3.6.5'),(13397,2493,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13398,2493,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13399,2493,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13400,2493,'_elementor_page_assets','a:0:{}'),(13401,2493,'_elementor_css','a:6:{s:4:\"time\";i:1651345586;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13442,2498,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13441,2498,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13440,2498,'_elementor_version','3.6.5'),(13434,2497,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13435,2497,'_elementor_page_assets','a:0:{}'),(13492,2504,'_wp_page_template','template/template-onepage.php'),(13493,2504,'_elementor_edit_mode','builder'),(13494,2504,'_elementor_template_type','wp-page'),(13437,2498,'_wp_page_template','template/template-onepage.php'),(13438,2498,'_elementor_edit_mode','builder'),(13439,2498,'_elementor_template_type','wp-page'),(13428,2497,'_wp_page_template','template/template-onepage.php'),(13429,2497,'_elementor_edit_mode','builder'),(13430,2497,'_elementor_template_type','wp-page'),(13431,2497,'_elementor_version','3.6.5'),(13432,2497,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13433,2497,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13415,2495,'_elementor_version','3.6.5'),(13416,2495,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13417,2495,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13418,2495,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13419,2495,'_elementor_page_assets','a:0:{}'),(13420,2496,'_wp_page_template','template/template-onepage.php'),(13421,2496,'_elementor_edit_mode','builder'),(13422,2496,'_elementor_template_type','wp-page'),(13423,2496,'_elementor_version','3.6.5'),(13424,2496,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13425,2496,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bfff60c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"645cb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d6d67a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cb5c7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d82b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"014dc4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0480933\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13426,2496,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13427,2496,'_elementor_page_assets','a:0:{}'),(13443,2498,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13444,2498,'_elementor_page_assets','a:0:{}'),(13445,2498,'_elementor_css','a:6:{s:4:\"time\";i:1651346191;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13446,2499,'_wp_page_template','template/template-onepage.php'),(13447,2499,'_elementor_edit_mode','builder'),(13448,2499,'_elementor_template_type','wp-page'),(13449,2499,'_elementor_version','3.6.5'),(13450,2499,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13451,2499,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ac700fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"344b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57ac339\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"16e13ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9f2f35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"cc416a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e9d7faf\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13452,2499,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13453,2499,'_elementor_page_assets','a:0:{}'),(13454,2499,'_elementor_css','a:6:{s:4:\"time\";i:1651346191;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13455,2500,'_wp_page_template','template/template-onepage.php'),(13456,2500,'_elementor_edit_mode','builder'),(13457,2500,'_elementor_template_type','wp-page'),(13458,2500,'_elementor_version','3.6.5'),(13459,2500,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13460,2500,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13461,2500,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13462,2500,'_elementor_page_assets','a:0:{}'),(13463,2500,'_elementor_css','a:6:{s:4:\"time\";i:1651346191;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13465,2501,'_wp_page_template','template/template-onepage.php'),(13466,2501,'_elementor_edit_mode','builder'),(13467,2501,'_elementor_template_type','wp-page'),(13468,2501,'_elementor_version','3.6.5'),(13469,2501,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13470,2501,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13471,2501,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13472,2501,'_elementor_page_assets','a:0:{}'),(13473,2501,'_elementor_css','a:6:{s:4:\"time\";i:1651346331;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13474,2502,'_wp_page_template','template/template-onepage.php'),(13475,2502,'_elementor_edit_mode','builder'),(13476,2502,'_elementor_template_type','wp-page'),(13477,2502,'_elementor_version','3.6.5'),(13478,2502,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13479,2502,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ea08c5a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2635fa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"246485d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9f32bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fbf2348\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"fa8c4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"86aa6c4\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 N State Street, Lexington NC 27293\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13480,2502,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13481,2502,'_elementor_page_assets','a:0:{}'),(13482,2502,'_elementor_css','a:6:{s:4:\"time\";i:1651346331;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13483,2503,'_wp_page_template','template/template-onepage.php'),(13484,2503,'_elementor_edit_mode','builder'),(13485,2503,'_elementor_template_type','wp-page'),(13486,2503,'_elementor_version','3.6.5'),(13487,2503,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13488,2503,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13489,2503,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13490,2503,'_elementor_page_assets','a:0:{}'),(13491,2503,'_elementor_css','a:6:{s:4:\"time\";i:1651346331;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13495,2504,'_elementor_version','3.6.5'),(13496,2504,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13497,2504,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13498,2504,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13499,2504,'_elementor_page_assets','a:0:{}'),(13500,2505,'_wp_page_template','template/template-onepage.php'),(13501,2505,'_elementor_edit_mode','builder'),(13502,2505,'_elementor_template_type','wp-page'),(13503,2505,'_elementor_version','3.6.5'),(13504,2505,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13505,2505,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3f035cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"59668b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0a2c28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30c120c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"781b4e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a285f99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed9c6d\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"a9f3562\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f4fd412\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"499b082\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"76c3979\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"634180b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6de0909\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77525a8\",\"elType\":\"widget\",\"settings\":{\"address\":\"4909 UniconDr. Ste 105, Wake Forest NC 27587\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0bcf962\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13506,2505,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13507,2505,'_elementor_page_assets','a:0:{}'),(13508,2506,'_wp_page_template','template/template-onepage.php'),(13509,2506,'_elementor_edit_mode','builder'),(13510,2506,'_elementor_template_type','wp-page'),(13511,2506,'_elementor_version','3.6.5'),(13512,2506,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13513,2506,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13514,2506,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13515,2506,'_elementor_page_assets','a:0:{}'),(13517,2507,'_wp_page_template','template/template-onepage.php'),(13518,2507,'_elementor_edit_mode','builder'),(13519,2507,'_elementor_template_type','wp-page'),(13520,2507,'_elementor_version','3.6.5'),(13521,2507,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13522,2507,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13523,2507,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13524,2507,'_elementor_page_assets','a:0:{}'),(13525,2507,'_elementor_css','a:6:{s:4:\"time\";i:1651346750;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13526,2508,'_wp_page_template','template/template-onepage.php'),(13527,2508,'_elementor_edit_mode','builder'),(13528,2508,'_elementor_template_type','wp-page'),(13529,2508,'_elementor_version','3.6.5'),(13530,2508,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13531,2508,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13532,2508,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13533,2508,'_elementor_page_assets','a:0:{}'),(13534,2508,'_elementor_css','a:6:{s:4:\"time\";i:1651346750;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13563,2512,'_wp_page_template','template/template-onepage.php'),(13564,2512,'_elementor_edit_mode','builder'),(13535,2509,'_wp_page_template','template/template-onepage.php'),(13536,2509,'_elementor_edit_mode','builder'),(13537,2509,'_elementor_template_type','wp-page'),(13538,2509,'_elementor_version','3.6.5'),(13539,2509,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13540,2509,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13541,2509,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13542,2509,'_elementor_page_assets','a:0:{}'),(13543,2509,'_elementor_css','a:6:{s:4:\"time\";i:1651346750;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13545,2510,'_wp_page_template','template/template-onepage.php'),(13546,2510,'_elementor_edit_mode','builder'),(13547,2510,'_elementor_template_type','wp-page'),(13548,2510,'_elementor_version','3.6.5'),(13549,2510,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13550,2510,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13551,2510,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13552,2510,'_elementor_page_assets','a:0:{}'),(13553,2510,'_elementor_css','a:6:{s:4:\"time\";i:1651346805;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13554,2511,'_wp_page_template','template/template-onepage.php'),(13555,2511,'_elementor_edit_mode','builder'),(13556,2511,'_elementor_template_type','wp-page'),(13557,2511,'_elementor_version','3.6.5'),(13558,2511,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13559,2511,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d4d65de\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13560,2511,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13561,2511,'_elementor_page_assets','a:0:{}'),(13562,2511,'_elementor_css','a:6:{s:4:\"time\";i:1651346805;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13565,2512,'_elementor_template_type','wp-page'),(13566,2512,'_elementor_version','3.6.5'),(13567,2512,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `lrwp_postmeta` VALUES (13568,2512,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13569,2512,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13570,2512,'_elementor_page_assets','a:0:{}'),(13571,2512,'_elementor_css','a:6:{s:4:\"time\";i:1651346805;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13573,2513,'_wp_page_template','template/template-onepage.php'),(13574,2513,'_elementor_edit_mode','builder'),(13575,2513,'_elementor_template_type','wp-page'),(13576,2513,'_elementor_version','3.6.5'),(13577,2513,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13578,2513,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13579,2513,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13580,2513,'_elementor_page_assets','a:0:{}'),(13581,2513,'_elementor_css','a:6:{s:4:\"time\";i:1651346851;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13582,2514,'_wp_page_template','template/template-onepage.php'),(13583,2514,'_elementor_edit_mode','builder'),(13584,2514,'_elementor_template_type','wp-page'),(13585,2514,'_elementor_version','3.6.5'),(13586,2514,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13587,2514,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13588,2514,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13589,2514,'_elementor_page_assets','a:0:{}'),(13590,2514,'_elementor_css','a:6:{s:4:\"time\";i:1651346851;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13591,2515,'_wp_page_template','template/template-onepage.php'),(13592,2515,'_elementor_edit_mode','builder'),(13593,2515,'_elementor_template_type','wp-page'),(13594,2515,'_elementor_version','3.6.5'),(13595,2515,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13596,2515,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa90ae\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13597,2515,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13598,2515,'_elementor_page_assets','a:0:{}'),(13599,2515,'_elementor_css','a:6:{s:4:\"time\";i:1651346851;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13601,2516,'_wp_page_template','template/template-onepage.php'),(13602,2516,'_elementor_edit_mode','builder'),(13603,2516,'_elementor_template_type','wp-page'),(13604,2516,'_elementor_version','3.6.5'),(13605,2516,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13606,2516,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa90ae\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13607,2516,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13608,2516,'_elementor_page_assets','a:0:{}'),(13609,2516,'_elementor_css','a:6:{s:4:\"time\";i:1651346930;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13610,2517,'_wp_page_template','template/template-onepage.php'),(13611,2517,'_elementor_edit_mode','builder'),(13612,2517,'_elementor_template_type','wp-page'),(13613,2517,'_elementor_version','3.6.5'),(13614,2517,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13615,2517,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa90ae\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13616,2517,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13617,2517,'_elementor_page_assets','a:0:{}'),(13618,2517,'_elementor_css','a:6:{s:4:\"time\";i:1651346930;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13619,2518,'_wp_page_template','template/template-onepage.php'),(13620,2518,'_elementor_edit_mode','builder'),(13621,2518,'_elementor_template_type','wp-page'),(13622,2518,'_elementor_version','3.6.5'),(13623,2518,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13624,2518,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa90ae\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_id\":\"Kannapolis\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13625,2518,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13626,2518,'_elementor_page_assets','a:0:{}'),(13627,2518,'_elementor_css','a:6:{s:4:\"time\";i:1651346930;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13658,2522,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13652,2522,'_wp_page_template','template/template-onepage.php'),(13653,2522,'_elementor_edit_mode','builder'),(13654,2522,'_elementor_template_type','wp-page'),(13655,2522,'_elementor_version','3.6.5'),(13656,2522,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13657,2522,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13636,2520,'_wp_page_template','template/template-onepage.php'),(13637,2520,'_elementor_edit_mode','builder'),(13638,2520,'_elementor_template_type','wp-page'),(13639,2520,'_elementor_version','3.6.5'),(13640,2520,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13641,2520,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa90ae\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_id\":\"Kannapolis\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13642,2520,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13643,2520,'_elementor_page_assets','a:0:{}'),(13644,2521,'_wp_page_template','template/template-onepage.php'),(13645,2521,'_elementor_edit_mode','builder'),(13646,2521,'_elementor_template_type','wp-page'),(13647,2521,'_elementor_version','3.6.5'),(13648,2521,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13649,2521,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"925d31a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0b50ac4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8fa90ae\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7908b5c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"_element_id\":\"Kannapolis\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"56bd524\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f17a5ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57f771a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"292c935\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"58b1e84\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13650,2521,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13651,2521,'_elementor_page_assets','a:0:{}'),(13659,2522,'_elementor_page_assets','a:0:{}'),(13698,2527,'_wp_page_template','template/template-onepage.php'),(13699,2527,'_elementor_edit_mode','builder'),(13700,2527,'_elementor_template_type','wp-page'),(13661,2523,'_wp_page_template','template/template-onepage.php'),(13662,2523,'_elementor_edit_mode','builder'),(13663,2523,'_elementor_template_type','wp-page'),(13664,2523,'_elementor_version','3.6.5'),(13665,2523,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13666,2523,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13667,2523,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13668,2523,'_elementor_page_assets','a:0:{}'),(13669,2523,'_elementor_css','a:6:{s:4:\"time\";i:1651348132;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13670,2524,'_wp_page_template','template/template-onepage.php'),(13671,2524,'_elementor_edit_mode','builder'),(13672,2524,'_elementor_template_type','wp-page'),(13673,2524,'_elementor_version','3.6.5'),(13674,2524,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13675,2524,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13676,2524,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13677,2524,'_elementor_page_assets','a:0:{}'),(13678,2524,'_elementor_css','a:6:{s:4:\"time\";i:1651348132;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13679,2525,'_wp_page_template','template/template-onepage.php'),(13680,2525,'_elementor_edit_mode','builder'),(13681,2525,'_elementor_template_type','wp-page'),(13682,2525,'_elementor_version','3.6.5'),(13683,2525,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13684,2525,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13685,2525,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13686,2525,'_elementor_page_assets','a:0:{}'),(13687,2525,'_elementor_css','a:6:{s:4:\"time\";i:1651348132;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13720,2529,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13717,2529,'_elementor_version','3.6.5'),(13718,2529,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13719,2529,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13716,2529,'_elementor_template_type','wp-page'),(13766,2535,'_wp_page_template','template/template-onepage.php'),(13714,2529,'_wp_page_template','template/template-onepage.php'),(13715,2529,'_elementor_edit_mode','builder'),(13701,2527,'_elementor_version','3.6.5'),(13702,2527,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13703,2527,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13704,2527,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13705,2527,'_elementor_page_assets','a:0:{}'),(13706,2528,'_wp_page_template','template/template-onepage.php'),(13707,2528,'_elementor_edit_mode','builder'),(13708,2528,'_elementor_template_type','wp-page'),(13709,2528,'_elementor_version','3.6.5'),(13710,2528,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13711,2528,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13712,2528,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13713,2528,'_elementor_page_assets','a:0:{}'),(13721,2529,'_elementor_page_assets','a:0:{}'),(13750,2533,'_wp_page_template','template/template-onepage.php'),(13751,2533,'_elementor_edit_mode','builder'),(13752,2533,'_elementor_template_type','wp-page'),(13723,2530,'_wp_page_template','template/template-onepage.php'),(13724,2530,'_elementor_edit_mode','builder'),(13725,2530,'_elementor_template_type','wp-page'),(13726,2530,'_elementor_version','3.6.5'),(13727,2530,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13728,2530,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13729,2530,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13730,2530,'_elementor_page_assets','a:0:{}'),(13731,2530,'_elementor_css','a:6:{s:4:\"time\";i:1651348473;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13732,2531,'_wp_page_template','template/template-onepage.php'),(13733,2531,'_elementor_edit_mode','builder'),(13734,2531,'_elementor_template_type','wp-page'),(13735,2531,'_elementor_version','3.6.5'),(13736,2531,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13737,2531,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13738,2531,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13739,2531,'_elementor_page_assets','a:0:{}'),(13740,2531,'_elementor_css','a:6:{s:4:\"time\";i:1651348473;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13741,2532,'_wp_page_template','template/template-onepage.php'),(13742,2532,'_elementor_edit_mode','builder'),(13743,2532,'_elementor_template_type','wp-page'),(13744,2532,'_elementor_version','3.6.5'),(13745,2532,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13746,2532,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13747,2532,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13748,2532,'_elementor_page_assets','a:0:{}'),(13749,2532,'_elementor_css','a:6:{s:4:\"time\";i:1651348473;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13753,2533,'_elementor_version','3.6.5'),(13754,2533,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `lrwp_postmeta` VALUES (13755,2533,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13756,2533,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13757,2533,'_elementor_page_assets','a:0:{}'),(13758,2534,'_wp_page_template','template/template-onepage.php'),(13759,2534,'_elementor_edit_mode','builder'),(13760,2534,'_elementor_template_type','wp-page'),(13761,2534,'_elementor_version','3.6.5'),(13762,2534,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13763,2534,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c201602\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13764,2534,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13765,2534,'_elementor_page_assets','a:0:{}'),(13767,2535,'_elementor_edit_mode','builder'),(13768,2535,'_elementor_template_type','wp-page'),(13769,2535,'_elementor_version','3.6.5'),(13770,2535,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13771,2535,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13772,2535,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13773,2535,'_elementor_page_assets','a:0:{}'),(14157,2579,'_wp_page_template','template/template-onepage.php'),(14158,2579,'_elementor_edit_mode','builder'),(14159,2579,'_elementor_template_type','wp-page'),(13775,2536,'_wp_page_template','template/template-onepage.php'),(13776,2536,'_elementor_edit_mode','builder'),(13777,2536,'_elementor_template_type','wp-page'),(13778,2536,'_elementor_version','3.6.5'),(13779,2536,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13780,2536,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13781,2536,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13782,2536,'_elementor_page_assets','a:0:{}'),(13783,2536,'_elementor_css','a:6:{s:4:\"time\";i:1651348561;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13784,2537,'_wp_page_template','template/template-onepage.php'),(13785,2537,'_elementor_edit_mode','builder'),(13786,2537,'_elementor_template_type','wp-page'),(13787,2537,'_elementor_version','3.6.5'),(13788,2537,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13789,2537,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13790,2537,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13791,2537,'_elementor_page_assets','a:0:{}'),(13792,2537,'_elementor_css','a:6:{s:4:\"time\";i:1651348561;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13793,2538,'_wp_page_template','template/template-onepage.php'),(13794,2538,'_elementor_edit_mode','builder'),(13795,2538,'_elementor_template_type','wp-page'),(13796,2538,'_elementor_version','3.6.5'),(13797,2538,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13798,2538,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13799,2538,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13800,2538,'_elementor_page_assets','a:0:{}'),(13801,2538,'_elementor_css','a:6:{s:4:\"time\";i:1651348561;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13803,2539,'_wp_page_template','template/template-onepage.php'),(13804,2539,'_elementor_edit_mode','builder'),(13805,2539,'_elementor_template_type','wp-page'),(13806,2539,'_elementor_version','3.6.5'),(13807,2539,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13808,2539,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13809,2539,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13810,2539,'_elementor_page_assets','a:0:{}'),(13811,2539,'_elementor_css','a:6:{s:4:\"time\";i:1651348632;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13812,2540,'_wp_page_template','template/template-onepage.php'),(13813,2540,'_elementor_edit_mode','builder'),(13814,2540,'_elementor_template_type','wp-page'),(13815,2540,'_elementor_version','3.6.5'),(13816,2540,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13817,2540,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13818,2540,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13819,2540,'_elementor_page_assets','a:0:{}'),(13820,2540,'_elementor_css','a:6:{s:4:\"time\";i:1651348632;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13821,2541,'_wp_page_template','template/template-onepage.php'),(13822,2541,'_elementor_edit_mode','builder'),(13823,2541,'_elementor_template_type','wp-page'),(13824,2541,'_elementor_version','3.6.5'),(13825,2541,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13826,2541,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13827,2541,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13828,2541,'_elementor_page_assets','a:0:{}'),(13829,2541,'_elementor_css','a:6:{s:4:\"time\";i:1651348632;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13831,2542,'_wp_page_template','template/template-onepage.php'),(13832,2542,'_elementor_edit_mode','builder'),(13833,2542,'_elementor_template_type','wp-page'),(13834,2542,'_elementor_version','3.6.5'),(13835,2542,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13836,2542,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13837,2542,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13838,2542,'_elementor_page_assets','a:0:{}'),(13839,2542,'_elementor_css','a:6:{s:4:\"time\";i:1651348762;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13840,2543,'_wp_page_template','template/template-onepage.php'),(13841,2543,'_elementor_edit_mode','builder'),(13842,2543,'_elementor_template_type','wp-page'),(13843,2543,'_elementor_version','3.6.5'),(13844,2543,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13845,2543,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13846,2543,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13847,2543,'_elementor_page_assets','a:0:{}'),(13848,2543,'_elementor_css','a:6:{s:4:\"time\";i:1651348762;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14173,2581,'_wp_page_template','template/template-onepage.php'),(14017,2562,'_wp_page_template','template/template-onepage.php'),(13849,2544,'_wp_page_template','template/template-onepage.php'),(13850,2544,'_elementor_edit_mode','builder'),(13851,2544,'_elementor_template_type','wp-page'),(13852,2544,'_elementor_version','3.6.5'),(13853,2544,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13854,2544,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13855,2544,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13856,2544,'_elementor_page_assets','a:0:{}'),(13857,2544,'_elementor_css','a:6:{s:4:\"time\";i:1651348762;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13859,2545,'_wp_page_template','template/template-onepage.php'),(13860,2545,'_elementor_edit_mode','builder'),(13861,2545,'_elementor_template_type','wp-page'),(13862,2545,'_elementor_version','3.6.5'),(13863,2545,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13864,2545,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13865,2545,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13866,2545,'_elementor_page_assets','a:0:{}'),(13867,2545,'_elementor_css','a:6:{s:4:\"time\";i:1651348916;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13868,2546,'_wp_page_template','template/template-onepage.php'),(13869,2546,'_elementor_edit_mode','builder'),(13870,2546,'_elementor_template_type','wp-page'),(13871,2546,'_elementor_version','3.6.5'),(13872,2546,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13873,2546,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13874,2546,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13875,2546,'_elementor_page_assets','a:0:{}'),(13876,2546,'_elementor_css','a:6:{s:4:\"time\";i:1651348916;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13877,2547,'_wp_page_template','template/template-onepage.php'),(13878,2547,'_elementor_edit_mode','builder'),(13879,2547,'_elementor_template_type','wp-page'),(13880,2547,'_elementor_version','3.6.5'),(13881,2547,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13882,2547,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13883,2547,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13884,2547,'_elementor_page_assets','a:0:{}'),(13885,2547,'_elementor_css','a:6:{s:4:\"time\";i:1651348916;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13887,2548,'_wp_page_template','template/template-onepage.php'),(13888,2548,'_elementor_edit_mode','builder'),(13889,2548,'_elementor_template_type','wp-page'),(13890,2548,'_elementor_version','3.6.5'),(13891,2548,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13892,2548,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13893,2548,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13894,2548,'_elementor_page_assets','a:0:{}'),(13895,2548,'_elementor_css','a:6:{s:4:\"time\";i:1651349004;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13896,2549,'_wp_page_template','template/template-onepage.php'),(13897,2549,'_elementor_edit_mode','builder'),(13898,2549,'_elementor_template_type','wp-page'),(13899,2549,'_elementor_version','3.6.5'),(13900,2549,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13901,2549,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13902,2549,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13903,2549,'_elementor_page_assets','a:0:{}'),(13904,2549,'_elementor_css','a:6:{s:4:\"time\";i:1651349004;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13905,2550,'_wp_page_template','template/template-onepage.php'),(13906,2550,'_elementor_edit_mode','builder'),(13907,2550,'_elementor_template_type','wp-page'),(13908,2550,'_elementor_version','3.6.5'),(13909,2550,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13910,2550,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13911,2550,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13912,2550,'_elementor_page_assets','a:0:{}'),(13913,2550,'_elementor_css','a:6:{s:4:\"time\";i:1651349004;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13915,2551,'_wp_page_template','template/template-onepage.php'),(13916,2551,'_elementor_edit_mode','builder'),(13917,2551,'_elementor_template_type','wp-page'),(13918,2551,'_elementor_version','3.6.5'),(13919,2551,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13920,2551,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13921,2551,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13922,2551,'_elementor_page_assets','a:0:{}'),(13923,2551,'_elementor_css','a:6:{s:4:\"time\";i:1651349118;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13924,2552,'_wp_page_template','template/template-onepage.php'),(13925,2552,'_elementor_edit_mode','builder'),(13926,2552,'_elementor_template_type','wp-page'),(13927,2552,'_elementor_version','3.6.5'),(13928,2552,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `lrwp_postmeta` VALUES (13929,2552,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13930,2552,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13931,2552,'_elementor_page_assets','a:0:{}'),(13932,2552,'_elementor_css','a:6:{s:4:\"time\";i:1651349118;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13933,2553,'_wp_page_template','template/template-onepage.php'),(13934,2553,'_elementor_edit_mode','builder'),(13935,2553,'_elementor_template_type','wp-page'),(13936,2553,'_elementor_version','3.6.5'),(13937,2553,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13938,2553,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13939,2553,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13940,2553,'_elementor_page_assets','a:0:{}'),(13941,2553,'_elementor_css','a:6:{s:4:\"time\";i:1651349118;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13943,2554,'_wp_page_template','template/template-onepage.php'),(13944,2554,'_elementor_edit_mode','builder'),(13945,2554,'_elementor_template_type','wp-page'),(13946,2554,'_elementor_version','3.6.5'),(13947,2554,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13948,2554,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13949,2554,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13950,2554,'_elementor_page_assets','a:0:{}'),(13951,2554,'_elementor_css','a:6:{s:4:\"time\";i:1651349959;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13952,2555,'_wp_page_template','template/template-onepage.php'),(13953,2555,'_elementor_edit_mode','builder'),(13954,2555,'_elementor_template_type','wp-page'),(13955,2555,'_elementor_version','3.6.5'),(13956,2555,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13957,2555,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13958,2555,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13959,2555,'_elementor_page_assets','a:0:{}'),(13960,2555,'_elementor_css','a:6:{s:4:\"time\";i:1651349959;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13961,2556,'_wp_page_template','template/template-onepage.php'),(13962,2556,'_elementor_edit_mode','builder'),(13963,2556,'_elementor_template_type','wp-page'),(13964,2556,'_elementor_version','3.6.5'),(13965,2556,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13966,2556,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13967,2556,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13968,2556,'_elementor_page_assets','a:0:{}'),(13969,2556,'_elementor_css','a:6:{s:4:\"time\";i:1651349959;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13971,2557,'_wp_page_template','template/template-onepage.php'),(13972,2557,'_elementor_edit_mode','builder'),(13973,2557,'_elementor_template_type','wp-page'),(13974,2557,'_elementor_version','3.6.5'),(13975,2557,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13976,2557,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13977,2557,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13978,2557,'_elementor_page_assets','a:0:{}'),(13979,2557,'_elementor_css','a:6:{s:4:\"time\";i:1651350043;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13980,2558,'_wp_page_template','template/template-onepage.php'),(13981,2558,'_elementor_edit_mode','builder'),(13982,2558,'_elementor_template_type','wp-page'),(13983,2558,'_elementor_version','3.6.5'),(13984,2558,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13985,2558,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13986,2558,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13987,2558,'_elementor_page_assets','a:0:{}'),(13988,2558,'_elementor_css','a:6:{s:4:\"time\";i:1651350043;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13989,2559,'_wp_page_template','template/template-onepage.php'),(13990,2559,'_elementor_edit_mode','builder'),(13991,2559,'_elementor_template_type','wp-page'),(13992,2559,'_elementor_version','3.6.5'),(13993,2559,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(13994,2559,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(13995,2559,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(13996,2559,'_elementor_page_assets','a:0:{}'),(13997,2559,'_elementor_css','a:6:{s:4:\"time\";i:1651350043;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13999,2560,'_wp_page_template','template/template-onepage.php'),(14000,2560,'_elementor_edit_mode','builder'),(14001,2560,'_elementor_template_type','wp-page'),(14002,2560,'_elementor_version','3.6.5'),(14003,2560,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14004,2560,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14005,2560,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14006,2560,'_elementor_page_assets','a:0:{}'),(14007,2560,'_elementor_css','a:6:{s:4:\"time\";i:1651350087;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14008,2561,'_wp_page_template','template/template-onepage.php'),(14009,2561,'_elementor_edit_mode','builder'),(14010,2561,'_elementor_template_type','wp-page'),(14011,2561,'_elementor_version','3.6.5'),(14012,2561,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14013,2561,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xxl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.55)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14014,2561,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14015,2561,'_elementor_page_assets','a:0:{}'),(14016,2561,'_elementor_css','a:6:{s:4:\"time\";i:1651350087;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14018,2562,'_elementor_edit_mode','builder'),(14019,2562,'_elementor_template_type','wp-page'),(14020,2562,'_elementor_version','3.6.5'),(14021,2562,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14022,2562,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14023,2562,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14024,2562,'_elementor_page_assets','a:0:{}'),(14025,2562,'_elementor_css','a:6:{s:4:\"time\";i:1651350087;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14027,2563,'_wp_page_template','template/template-onepage.php'),(14028,2563,'_elementor_edit_mode','builder'),(14029,2563,'_elementor_template_type','wp-page'),(14030,2563,'_elementor_version','3.6.5'),(14031,2563,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14032,2563,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14033,2563,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14034,2563,'_elementor_page_assets','a:0:{}'),(14035,2563,'_elementor_css','a:6:{s:4:\"time\";i:1651350267;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14036,2564,'_wp_page_template','template/template-onepage.php'),(14037,2564,'_elementor_edit_mode','builder'),(14038,2564,'_elementor_template_type','wp-page'),(14039,2564,'_elementor_version','3.6.5'),(14040,2564,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14041,2564,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14042,2564,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14043,2564,'_elementor_page_assets','a:0:{}'),(14044,2564,'_elementor_css','a:6:{s:4:\"time\";i:1651350267;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14045,2565,'_wp_page_template','template/template-onepage.php'),(14046,2565,'_elementor_edit_mode','builder'),(14047,2565,'_elementor_template_type','wp-page'),(14048,2565,'_elementor_version','3.6.5'),(14049,2565,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14050,2565,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14051,2565,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14052,2565,'_elementor_page_assets','a:0:{}'),(14053,2565,'_elementor_css','a:6:{s:4:\"time\";i:1651350267;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14055,2566,'_wp_attached_file','2022/04/Harrisburg.png'),(14056,2566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:455;s:4:\"file\";s:22:\"2022/04/Harrisburg.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Harrisburg-300x235.png\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Harrisburg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:22:\"Harrisburg-580x444.png\";s:5:\"width\";i:580;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:22:\"Harrisburg-580x438.png\";s:5:\"width\";i:580;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:21:\"Harrisburg-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"Harrisburg-496x389.png\";s:5:\"width\";i:496;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(14057,2566,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1456741;s:10:\"size_after\";i:1456741;s:4:\"time\";d:1.060000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:127841;s:10:\"size_after\";i:127841;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42773;s:10:\"size_after\";i:42773;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:471078;s:10:\"size_after\";i:471078;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:465010;s:10:\"size_after\";i:465010;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22870;s:10:\"size_after\";i:22870;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:327169;s:10:\"size_after\";i:327169;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}}}'),(14058,2567,'_wp_page_template','template/template-onepage.php'),(14059,2567,'_elementor_edit_mode','builder'),(14060,2567,'_elementor_template_type','wp-page'),(14061,2567,'_elementor_version','3.6.5'),(14062,2567,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14063,2567,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14064,2567,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14065,2567,'_elementor_page_assets','a:0:{}'),(14066,2567,'_elementor_css','a:6:{s:4:\"time\";i:1651350309;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14067,2568,'_wp_page_template','template/template-onepage.php'),(14068,2568,'_elementor_edit_mode','builder'),(14069,2568,'_elementor_template_type','wp-page'),(14070,2568,'_elementor_version','3.6.5'),(14071,2568,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14072,2568,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14073,2568,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14074,2568,'_elementor_page_assets','a:0:{}'),(14075,2568,'_elementor_css','a:6:{s:4:\"time\";i:1651350309;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14076,2569,'_wp_page_template','template/template-onepage.php'),(14077,2569,'_elementor_edit_mode','builder'),(14078,2569,'_elementor_template_type','wp-page'),(14079,2569,'_elementor_version','3.6.5'),(14080,2569,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14081,2569,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14082,2569,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14083,2569,'_elementor_page_assets','a:0:{}'),(14084,2569,'_elementor_css','a:6:{s:4:\"time\";i:1651350309;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14086,2570,'_wp_page_template','template/template-onepage.php'),(14087,2570,'_elementor_edit_mode','builder'),(14088,2570,'_elementor_template_type','wp-page'),(14089,2570,'_elementor_version','3.6.5'),(14090,2570,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14091,2570,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14092,2570,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14093,2570,'_elementor_page_assets','a:0:{}'),(14094,2570,'_elementor_css','a:6:{s:4:\"time\";i:1651350629;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14095,2571,'_wp_page_template','template/template-onepage.php'),(14096,2571,'_elementor_edit_mode','builder'),(14097,2571,'_elementor_template_type','wp-page'),(14098,2571,'_elementor_version','3.6.5'),(14099,2571,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `lrwp_postmeta` VALUES (14100,2571,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14101,2571,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14102,2571,'_elementor_page_assets','a:0:{}'),(14103,2571,'_elementor_css','a:6:{s:4:\"time\";i:1651350629;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14104,2572,'_wp_page_template','template/template-onepage.php'),(14105,2572,'_elementor_edit_mode','builder'),(14106,2572,'_elementor_template_type','wp-page'),(14107,2572,'_elementor_version','3.6.5'),(14108,2572,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14109,2572,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14110,2572,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14111,2572,'_elementor_page_assets','a:0:{}'),(14112,2572,'_elementor_css','a:6:{s:4:\"time\";i:1651350629;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14114,2573,'_wp_attached_file','2022/04/Lexington.png'),(14115,2573,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:455;s:4:\"file\";s:21:\"2022/04/Lexington.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Lexington-300x235.png\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Lexington-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"Lexington-580x444.png\";s:5:\"width\";i:580;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"Lexington-580x438.png\";s:5:\"width\";i:580;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"Lexington-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Lexington-496x389.png\";s:5:\"width\";i:496;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(14116,2573,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1159711;s:10:\"size_after\";i:1159711;s:4:\"time\";d:1.850000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:107621;s:10:\"size_after\";i:107621;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37600;s:10:\"size_after\";i:37600;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:366621;s:10:\"size_after\";i:366621;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:362654;s:10:\"size_after\";i:362654;s:4:\"time\";d:0.8000000000000000444089209850062616169452667236328125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19478;s:10:\"size_after\";i:19478;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:265737;s:10:\"size_after\";i:265737;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}}}'),(14117,2574,'_wp_page_template','template/template-onepage.php'),(14118,2574,'_elementor_edit_mode','builder'),(14119,2574,'_elementor_template_type','wp-page'),(14120,2574,'_elementor_version','3.6.5'),(14121,2574,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14122,2574,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14123,2574,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14124,2574,'_elementor_page_assets','a:0:{}'),(14125,2574,'_elementor_css','a:6:{s:4:\"time\";i:1651350743;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14126,2575,'_wp_page_template','template/template-onepage.php'),(14127,2575,'_elementor_edit_mode','builder'),(14128,2575,'_elementor_template_type','wp-page'),(14129,2575,'_elementor_version','3.6.5'),(14130,2575,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14131,2575,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14132,2575,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14133,2575,'_elementor_page_assets','a:0:{}'),(14134,2575,'_elementor_css','a:6:{s:4:\"time\";i:1651350743;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14135,2576,'_wp_page_template','template/template-onepage.php'),(14136,2576,'_elementor_edit_mode','builder'),(14137,2576,'_elementor_template_type','wp-page'),(14138,2576,'_elementor_version','3.6.5'),(14139,2576,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14140,2576,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14141,2576,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14142,2576,'_elementor_page_assets','a:0:{}'),(14143,2576,'_elementor_css','a:6:{s:4:\"time\";i:1651350743;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14145,2577,'_wp_attached_file','2022/04/Tennessee.png'),(14146,2577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:455;s:4:\"file\";s:21:\"2022/04/Tennessee.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Tennessee-300x235.png\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Tennessee-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"Tennessee-580x444.png\";s:5:\"width\";i:580;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"Tennessee-580x438.png\";s:5:\"width\";i:580;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"Tennessee-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Tennessee-496x389.png\";s:5:\"width\";i:496;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(14147,2577,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1302094;s:10:\"size_after\";i:1302094;s:4:\"time\";d:2.380000000000000337507799486047588288784027099609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:126789;s:10:\"size_after\";i:126789;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44009;s:10:\"size_after\";i:44009;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:404554;s:10:\"size_after\";i:404554;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:399242;s:10:\"size_after\";i:399242;s:4:\"time\";d:1.0900000000000000799360577730112709105014801025390625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22510;s:10:\"size_after\";i:22510;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:304990;s:10:\"size_after\";i:304990;s:4:\"time\";d:0.91000000000000003108624468950438313186168670654296875;}}}'),(14181,2582,'_wp_attached_file','2022/04/Raleigh.png'),(14180,2581,'_elementor_page_assets','a:0:{}'),(14179,2581,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14177,2581,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14178,2581,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14176,2581,'_elementor_version','3.6.5'),(14174,2581,'_elementor_edit_mode','builder'),(14175,2581,'_elementor_template_type','wp-page'),(14160,2579,'_elementor_version','3.6.5'),(14161,2579,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14162,2579,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14163,2579,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14164,2579,'_elementor_page_assets','a:0:{}'),(14165,2580,'_wp_page_template','template/template-onepage.php'),(14166,2580,'_elementor_edit_mode','builder'),(14167,2580,'_elementor_template_type','wp-page'),(14168,2580,'_elementor_version','3.6.5'),(14169,2580,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14170,2580,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14171,2580,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14172,2580,'_elementor_page_assets','a:0:{}'),(14182,2582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:455;s:4:\"file\";s:19:\"2022/04/Raleigh.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Raleigh-300x235.png\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Raleigh-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:19:\"Raleigh-580x444.png\";s:5:\"width\";i:580;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:19:\"Raleigh-580x438.png\";s:5:\"width\";i:580;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"Raleigh-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:19:\"Raleigh-496x389.png\";s:5:\"width\";i:496;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(14183,2583,'_wp_page_template','template/template-onepage.php'),(14184,2583,'_elementor_edit_mode','builder'),(14185,2583,'_elementor_template_type','wp-page'),(14186,2583,'_elementor_version','3.6.5'),(14187,2583,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14188,2583,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14189,2583,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14190,2583,'_elementor_page_assets','a:0:{}'),(14191,2584,'_wp_page_template','template/template-onepage.php'),(14192,2584,'_elementor_edit_mode','builder'),(14193,2584,'_elementor_template_type','wp-page'),(14194,2584,'_elementor_version','3.6.5'),(14195,2584,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14196,2584,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/cropped-Facebook-Logo.jpg\",\"id\":28,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14197,2584,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14198,2584,'_elementor_page_assets','a:0:{}'),(14199,2582,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1405132;s:10:\"size_after\";i:1405132;s:4:\"time\";d:1.3400000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:125029;s:10:\"size_after\";i:125029;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43419;s:10:\"size_after\";i:43419;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:451560;s:10:\"size_after\";i:451560;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:446935;s:10:\"size_after\";i:446935;s:4:\"time\";d:0.89000000000000001332267629550187848508358001708984375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22242;s:10:\"size_after\";i:22242;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:315947;s:10:\"size_after\";i:315947;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(14200,2585,'_wp_page_template','template/template-onepage.php'),(14201,2585,'_elementor_edit_mode','builder'),(14202,2585,'_elementor_template_type','wp-page'),(14203,2585,'_elementor_version','3.6.5'),(14204,2585,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14205,2585,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14206,2585,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14207,2585,'_elementor_page_assets','a:0:{}'),(14208,2586,'_wp_attached_file','2022/04/Salisbury.png'),(14209,2586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:455;s:4:\"file\";s:21:\"2022/04/Salisbury.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Salisbury-300x235.png\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Salisbury-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"Salisbury-580x444.png\";s:5:\"width\";i:580;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"Salisbury-580x438.png\";s:5:\"width\";i:580;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"Salisbury-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Salisbury-496x389.png\";s:5:\"width\";i:496;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(14210,2586,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1138198;s:10:\"size_after\";i:1138198;s:4:\"time\";d:1.0500000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:107079;s:10:\"size_after\";i:107079;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39432;s:10:\"size_after\";i:39432;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:357350;s:10:\"size_after\";i:357350;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:353947;s:10:\"size_after\";i:353947;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20542;s:10:\"size_after\";i:20542;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:259848;s:10:\"size_after\";i:259848;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}}}'),(14211,2587,'_wp_page_template','template/template-onepage.php'),(14212,2587,'_elementor_edit_mode','builder'),(14213,2587,'_elementor_template_type','wp-page'),(14214,2587,'_elementor_version','3.6.5'),(14215,2587,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14216,2587,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14217,2587,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14218,2587,'_elementor_page_assets','a:0:{}'),(14219,2588,'_wp_page_template','template/template-onepage.php'),(14220,2588,'_elementor_edit_mode','builder'),(14221,2588,'_elementor_template_type','wp-page'),(14222,2588,'_elementor_version','3.6.5'),(14223,2588,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14224,2588,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14225,2588,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14226,2588,'_elementor_page_assets','a:0:{}'),(14227,2589,'_wp_page_template','template/template-onepage.php'),(14228,2589,'_elementor_edit_mode','builder'),(14229,2589,'_elementor_template_type','wp-page'),(14230,2589,'_elementor_version','3.6.5'),(14231,2589,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14232,2589,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14233,2589,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14234,2589,'_elementor_page_assets','a:0:{}'),(14235,2590,'_wp_attached_file','2022/04/Kannapolis.png'),(14236,2590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:455;s:4:\"file\";s:22:\"2022/04/Kannapolis.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Kannapolis-300x235.png\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Kannapolis-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:22:\"Kannapolis-580x444.png\";s:5:\"width\";i:580;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:22:\"Kannapolis-580x438.png\";s:5:\"width\";i:580;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:21:\"Kannapolis-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"Kannapolis-496x389.png\";s:5:\"width\";i:496;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(14237,2590,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1196688;s:10:\"size_after\";i:1196688;s:4:\"time\";d:1.140000000000000124344978758017532527446746826171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:118017;s:10:\"size_after\";i:118017;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42862;s:10:\"size_after\";i:42862;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:370538;s:10:\"size_after\";i:370538;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:366487;s:10:\"size_after\";i:366487;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21855;s:10:\"size_after\";i:21855;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:276929;s:10:\"size_after\";i:276929;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}}}'),(14238,2591,'_wp_page_template','template/template-onepage.php'),(14239,2591,'_elementor_edit_mode','builder'),(14240,2591,'_elementor_template_type','wp-page'),(14241,2591,'_elementor_version','3.6.5'),(14242,2591,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14243,2591,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14244,2591,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14245,2591,'_elementor_page_assets','a:0:{}'),(14246,2592,'_wp_page_template','template/template-onepage.php'),(14247,2592,'_elementor_edit_mode','builder'),(14248,2592,'_elementor_template_type','wp-page'),(14249,2592,'_elementor_version','3.6.5'),(14250,2592,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14251,2592,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14252,2592,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14253,2592,'_elementor_page_assets','a:0:{}'),(14254,2593,'_wp_page_template','template/template-onepage.php'),(14255,2593,'_elementor_edit_mode','builder'),(14256,2593,'_elementor_template_type','wp-page'),(14257,2593,'_elementor_version','3.6.5'),(14258,2593,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14259,2593,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14260,2593,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14261,2593,'_elementor_page_assets','a:0:{}'),(14262,2594,'_wp_attached_file','2022/04/Albemarle.png'),(14263,2594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:455;s:4:\"file\";s:21:\"2022/04/Albemarle.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Albemarle-300x235.png\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Albemarle-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"Albemarle-580x444.png\";s:5:\"width\";i:580;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"Albemarle-580x438.png\";s:5:\"width\";i:580;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"Albemarle-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Albemarle-496x389.png\";s:5:\"width\";i:496;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(14264,2594,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1206796;s:10:\"size_after\";i:1206796;s:4:\"time\";d:0.83999999999999996891375531049561686813831329345703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:118043;s:10:\"size_after\";i:118043;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:41629;s:10:\"size_after\";i:41629;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:374755;s:10:\"size_after\";i:374755;s:4:\"time\";d:0.25;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:369183;s:10:\"size_after\";i:369183;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22235;s:10:\"size_after\";i:22235;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:280951;s:10:\"size_after\";i:280951;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(14265,2595,'_wp_page_template','template/template-onepage.php'),(14266,2595,'_elementor_edit_mode','builder'),(14267,2595,'_elementor_template_type','wp-page'),(14268,2595,'_elementor_version','3.6.5'),(14269,2595,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14270,2595,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14271,2595,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14272,2595,'_elementor_page_assets','a:0:{}'),(14273,2596,'_wp_page_template','template/template-onepage.php'),(14274,2596,'_elementor_edit_mode','builder'),(14275,2596,'_elementor_template_type','wp-page'),(14276,2596,'_elementor_version','3.6.5'),(14277,2596,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `lrwp_postmeta` VALUES (14278,2596,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/09\\/Lantern-Albemarle-Team.jpg\",\"id\":1125,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14279,2596,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14280,2596,'_elementor_page_assets','a:0:{}'),(14281,2597,'_wp_page_template','template/template-onepage.php'),(14282,2597,'_elementor_edit_mode','builder'),(14283,2597,'_elementor_template_type','wp-page'),(14284,2597,'_elementor_version','3.6.5'),(14285,2597,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14286,2597,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14287,2597,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14288,2597,'_elementor_page_assets','a:0:{}'),(14754,1279,'_elementor_css','a:6:{s:4:\"time\";i:1653526590;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14290,2598,'_elementor_edit_mode','builder'),(14291,2598,'_elementor_template_type','section'),(14292,2598,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14293,2598,'_elementor_version','3.6.5'),(14294,2599,'_elementor_edit_mode','builder'),(14295,2599,'_elementor_template_type','section'),(14296,2599,'_elementor_version','3.6.5'),(14297,2598,'_wp_page_template','default'),(14298,2598,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14299,2598,'_elementor_data','[{\"id\":\"5e38dde\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"14dda67f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"416a74e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"268ba627\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"14750b66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"585ce84b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"751b6ebb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fe254a2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}]'),(14300,2600,'_elementor_edit_mode','builder'),(14301,2600,'_elementor_template_type','section'),(14302,2600,'_elementor_version','3.6.5'),(14303,2600,'_wp_page_template','default'),(14304,2600,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14305,2600,'_elementor_data','[{\"id\":\"5e38dde\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"14dda67f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"416a74e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"268ba627\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"14750b66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"585ce84b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"751b6ebb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fe254a2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}]'),(14306,2598,'_elementor_page_assets','a:0:{}'),(14307,2598,'_elementor_css','a:6:{s:4:\"time\";i:1651355550;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14308,2601,'_wp_page_template','template/template-onepage.php'),(14309,2601,'_elementor_edit_mode','builder'),(14310,2601,'_elementor_template_type','wp-page'),(14311,2601,'_elementor_version','3.6.5'),(14312,2601,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14313,2601,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14314,2601,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14315,2601,'_elementor_page_assets','a:0:{}'),(14316,2601,'_elementor_css','a:6:{s:4:\"time\";i:1651355415;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14317,2602,'_wp_page_template','template/template-onepage.php'),(14318,2602,'_elementor_edit_mode','builder'),(14319,2602,'_elementor_template_type','wp-page'),(14320,2602,'_elementor_version','3.6.5'),(14321,2602,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14322,2602,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14323,2602,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14324,2602,'_elementor_page_assets','a:0:{}'),(14325,2602,'_elementor_css','a:6:{s:4:\"time\";i:1651355415;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14326,2603,'_wp_page_template','template/template-onepage.php'),(14327,2603,'_elementor_edit_mode','builder'),(14328,2603,'_elementor_template_type','wp-page'),(14329,2603,'_elementor_version','3.6.5'),(14330,2603,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14331,2603,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bd8f1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Office\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14332,2603,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14333,2603,'_elementor_page_assets','a:0:{}'),(14334,2603,'_elementor_css','a:6:{s:4:\"time\";i:1651355415;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14336,2604,'_wp_page_template','template/template-onepage.php'),(14337,2604,'_elementor_edit_mode','builder'),(14338,2604,'_elementor_template_type','wp-page'),(14339,2604,'_elementor_version','3.6.5'),(14340,2604,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14341,2604,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bd8f1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Office\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14342,2604,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14343,2604,'_elementor_page_assets','a:0:{}'),(14344,2604,'_elementor_css','a:6:{s:4:\"time\";i:1651355710;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14345,2605,'_wp_page_template','template/template-onepage.php'),(14346,2605,'_elementor_edit_mode','builder'),(14347,2605,'_elementor_template_type','wp-page'),(14348,2605,'_elementor_version','3.6.5'),(14349,2605,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14350,2605,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bd8f1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Office\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14351,2605,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14352,2605,'_elementor_page_assets','a:0:{}'),(14353,2605,'_elementor_css','a:6:{s:4:\"time\";i:1651355710;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14354,2606,'_wp_page_template','template/template-onepage.php'),(14355,2606,'_elementor_edit_mode','builder'),(14356,2606,'_elementor_template_type','wp-page'),(14357,2606,'_elementor_version','3.6.5'),(14358,2606,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14359,2606,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":47,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bd8f1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Office\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14360,2606,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14361,2606,'_elementor_page_assets','a:0:{}'),(14362,2606,'_elementor_css','a:6:{s:4:\"time\";i:1651355710;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14938,2707,'_elementor_template_type','wp-page'),(14367,427,'_wp_page_template','default'),(14369,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14370,2608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14371,2608,'_edit_last','1'),(14372,2608,'_edit_lock','1651362846:1'),(14373,2608,'_wp_page_template','elementor_header_footer'),(14375,2608,'_wpb_vc_js_status','true'),(14376,2608,'fave_default_view','list_view'),(14377,2608,'fave_properties_sort','d_date'),(14378,2608,'fave_featured_prop_no','4'),(14379,2608,'fave_prop_no','9'),(14380,2608,'fave_listings_tabs','enable'),(14381,2608,'fave_prop_no_halfmap','9'),(14382,2608,'fave_properties_sort_halfmap','d_date'),(14383,2608,'fave_agency_orderby','none'),(14384,2608,'fave_agency_order','ASC'),(14385,2608,'fave_agent_orderby','title'),(14386,2608,'fave_agent_order','ASC'),(14387,2608,'fave_page_title','hide'),(14388,2608,'fave_page_breadcrumb','show'),(14389,2608,'fave_page_sidebar','none'),(14390,2608,'fave_page_background','yes'),(14391,2608,'fave_header_type','none'),(14392,2608,'fave_header_full_screen','0'),(14393,2608,'fave_header_full_screen_type','screen_fix'),(14394,2608,'fave_page_header_search','0'),(14395,2608,'fave_page_header_image_opacity','0.5'),(14396,2608,'fave_page_header_video_overlay','yes'),(14397,2608,'fave_main_menu_trans','no'),(14398,2608,'fave_adv_search_enable','global'),(14399,2608,'fave_adv_search','hide'),(14400,2608,'fave_adv_search_pos','under_menu'),(14401,2608,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(14402,2608,'fave_listing_page_content_area','0'),(14421,2608,'passster_activate_global_protection',NULL),(14404,2608,'_elementor_edit_mode','builder'),(14405,2608,'_elementor_template_type','wp-page'),(14406,2608,'_elementor_version','3.6.5'),(14407,2608,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c0148e6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-houzez_agent_search\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14408,2608,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14409,2608,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14435,2611,'_elementor_template_type','wp-page'),(14436,2611,'_elementor_version','3.5.5'),(14411,2608,'_elementor_page_assets','a:0:{}'),(14412,2609,'_wp_page_template','template/template-page.php'),(14413,2609,'_elementor_edit_mode','builder'),(14414,2609,'_elementor_template_type','wp-page'),(14415,2609,'_elementor_version','3.5.5'),(14416,2609,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14417,2609,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14418,2609,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14419,2609,'_elementor_css','a:6:{s:4:\"time\";i:1645157177;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14420,2609,'_elementor_page_assets','a:0:{}'),(14422,2608,'passster_activate_protection',NULL),(14423,2608,'passster_protection_type','password'),(14456,2613,'_elementor_page_assets','a:0:{}'),(14455,2613,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14454,2613,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14452,2613,'_elementor_version','3.5.5'),(14453,2613,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14450,2613,'_elementor_edit_mode','builder'),(14451,2613,'_elementor_template_type','wp-page'),(14449,2613,'_wp_page_template','elementor_header_footer'),(14433,2611,'_wp_page_template','template/template-page.php'),(14434,2611,'_elementor_edit_mode','builder'),(14437,2611,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14438,2611,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14439,2611,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14440,2611,'_elementor_page_assets','a:0:{}'),(14441,2612,'_wp_page_template','template/template-page.php'),(14442,2612,'_elementor_edit_mode','builder'),(14443,2612,'_elementor_template_type','wp-page'),(14444,2612,'_elementor_version','3.5.5'),(14445,2612,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14446,2612,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14447,2612,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14448,2612,'_elementor_page_assets','a:0:{}'),(14468,2615,'_wp_page_template','elementor_header_footer'),(14489,2617,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14485,2617,'_elementor_edit_mode','builder'),(14486,2617,'_elementor_template_type','wp-page'),(14487,2617,'_elementor_version','3.6.5'),(14488,2617,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14484,2617,'_wp_page_template','elementor_header_footer'),(14588,2629,'_elementor_edit_mode','builder'),(14469,2615,'_elementor_edit_mode','builder'),(14470,2615,'_elementor_template_type','wp-page'),(14471,2615,'_elementor_version','3.6.5'),(14472,2615,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14473,2615,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14474,2615,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14475,2615,'_elementor_page_assets','a:0:{}'),(14476,2616,'_wp_page_template','elementor_header_footer'),(14477,2616,'_elementor_edit_mode','builder'),(14478,2616,'_elementor_template_type','wp-page'),(14479,2616,'_elementor_version','3.6.5'),(14480,2616,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14481,2616,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14482,2616,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14483,2616,'_elementor_page_assets','a:0:{}'),(14490,2617,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14491,2617,'_elementor_page_assets','a:0:{}'),(14520,2621,'_wp_page_template','elementor_header_footer'),(14521,2621,'_elementor_edit_mode','builder'),(14522,2621,'_elementor_template_type','wp-page'),(14493,2618,'_wp_page_template','elementor_header_footer'),(14494,2618,'_elementor_edit_mode','builder'),(14495,2618,'_elementor_template_type','wp-page'),(14496,2618,'_elementor_version','3.6.5'),(14497,2618,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14498,2618,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14499,2618,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14500,2618,'_elementor_page_assets','a:0:{}'),(14501,2618,'_elementor_css','a:6:{s:4:\"time\";i:1651359917;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14502,2619,'_wp_page_template','elementor_header_footer'),(14503,2619,'_elementor_edit_mode','builder'),(14504,2619,'_elementor_template_type','wp-page'),(14505,2619,'_elementor_version','3.6.5'),(14506,2619,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14507,2619,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14508,2619,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14509,2619,'_elementor_page_assets','a:0:{}'),(14510,2619,'_elementor_css','a:6:{s:4:\"time\";i:1651359917;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14511,2620,'_wp_page_template','elementor_header_footer'),(14512,2620,'_elementor_edit_mode','builder'),(14513,2620,'_elementor_template_type','wp-page'),(14514,2620,'_elementor_version','3.6.5'),(14515,2620,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14516,2620,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14517,2620,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14518,2620,'_elementor_page_assets','a:0:{}'),(14519,2620,'_elementor_css','a:6:{s:4:\"time\";i:1651359917;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14523,2621,'_elementor_version','3.6.5'),(14524,2621,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14525,2621,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14526,2621,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14527,2621,'_elementor_page_assets','a:0:{}'),(14528,2622,'_wp_page_template','elementor_header_footer'),(14529,2622,'_elementor_edit_mode','builder'),(14530,2622,'_elementor_template_type','wp-page'),(14531,2622,'_elementor_version','3.6.5'),(14532,2622,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14533,2622,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14534,2622,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14535,2622,'_elementor_page_assets','a:0:{}'),(14587,2629,'_wp_page_template','elementor_header_footer'),(14536,2623,'_wp_page_template','elementor_header_footer'),(14537,2623,'_elementor_edit_mode','builder'),(14538,2623,'_elementor_template_type','wp-page'),(14539,2623,'_elementor_version','3.6.5'),(14540,2623,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14541,2623,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14542,2623,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14543,2623,'_elementor_page_assets','a:0:{}'),(14544,2624,'_wp_page_template','elementor_header_footer'),(14545,2624,'_elementor_edit_mode','builder'),(14546,2624,'_elementor_template_type','wp-page'),(14547,2624,'_elementor_version','3.6.5'),(14548,2624,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14549,2624,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14550,2624,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14551,2624,'_elementor_page_assets','a:0:{}'),(14552,2625,'_wp_page_template','elementor_header_footer'),(14553,2625,'_elementor_edit_mode','builder'),(14554,2625,'_elementor_template_type','wp-page'),(14555,2625,'_elementor_version','3.6.5'),(14556,2625,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14557,2625,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14558,2625,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14559,2625,'_elementor_page_assets','a:0:{}'),(14560,2626,'_wp_page_template','elementor_header_footer'),(14561,2626,'_elementor_edit_mode','builder'),(14562,2626,'_elementor_template_type','wp-page'),(14563,2626,'_elementor_version','3.6.5'),(14564,2626,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14565,2626,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14566,2626,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14567,2626,'_elementor_page_assets','a:0:{}'),(14668,2642,'_wp_attached_file','2022/05/355-T-Notice-To-Buyer-To-Deliver-Cash-Or-Immediately-Available-Funds-version-1.pdf'),(14667,2641,'_wp_attached_file','2022/05/LegalQA042822.pdf'),(14569,2627,'_wp_page_template','elementor_header_footer'),(14570,2627,'_elementor_edit_mode','builder'),(14571,2627,'_elementor_template_type','wp-page'),(14572,2627,'_elementor_version','3.6.5'),(14573,2627,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14574,2627,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14575,2627,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14576,2627,'_elementor_page_assets','a:0:{}'),(14577,2627,'_elementor_css','a:6:{s:4:\"time\";i:1651360021;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14578,2628,'_wp_page_template','elementor_header_footer'),(14579,2628,'_elementor_edit_mode','builder'),(14580,2628,'_elementor_template_type','wp-page'),(14581,2628,'_elementor_version','3.6.5'),(14582,2628,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14583,2628,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14584,2628,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14585,2628,'_elementor_page_assets','a:0:{}'),(14586,2628,'_elementor_css','a:6:{s:4:\"time\";i:1651360021;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14589,2629,'_elementor_template_type','wp-page'),(14590,2629,'_elementor_version','3.6.5'),(14591,2629,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\"},\"elements\":[{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14592,2629,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14593,2629,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14594,2629,'_elementor_page_assets','a:0:{}'),(14595,2629,'_elementor_css','a:6:{s:4:\"time\";i:1651360021;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14597,2630,'_wp_page_template','elementor_header_footer'),(14598,2630,'_elementor_edit_mode','builder'),(14599,2630,'_elementor_template_type','wp-page'),(14600,2630,'_elementor_version','3.6.5'),(14601,2630,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\"},\"elements\":[{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14602,2630,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14603,2630,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14604,2630,'_elementor_page_assets','a:0:{}'),(14605,2630,'_elementor_css','a:6:{s:4:\"time\";i:1651360201;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14606,2631,'_wp_page_template','elementor_header_footer'),(14607,2631,'_elementor_edit_mode','builder'),(14608,2631,'_elementor_template_type','wp-page'),(14609,2631,'_elementor_version','3.6.5'),(14610,2631,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\"},\"elements\":[{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14611,2631,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14612,2631,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14613,2631,'_elementor_page_assets','a:0:{}'),(14614,2631,'_elementor_css','a:6:{s:4:\"time\";i:1651360201;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14615,2632,'_wp_page_template','elementor_header_footer'),(14616,2632,'_elementor_edit_mode','builder'),(14617,2632,'_elementor_template_type','wp-page'),(14618,2632,'_elementor_version','3.6.5'),(14619,2632,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14620,2632,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14621,2632,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14622,2632,'_elementor_page_assets','a:0:{}'),(14623,2632,'_elementor_css','a:6:{s:4:\"time\";i:1651360201;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14625,2633,'_wp_page_template','elementor_header_footer'),(14626,2633,'_elementor_edit_mode','builder'),(14627,2633,'_elementor_template_type','wp-page'),(14628,2633,'_elementor_version','3.6.5'),(14629,2633,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14630,2633,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14631,2633,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14632,2633,'_elementor_page_assets','a:0:{}'),(14633,2633,'_elementor_css','a:6:{s:4:\"time\";i:1651360306;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14634,2634,'_wp_page_template','elementor_header_footer'),(14635,2634,'_elementor_edit_mode','builder'),(14636,2634,'_elementor_template_type','wp-page'),(14637,2634,'_elementor_version','3.6.5'),(14638,2634,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14639,2634,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14640,2634,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14641,2634,'_elementor_page_assets','a:0:{}'),(14642,2634,'_elementor_css','a:6:{s:4:\"time\";i:1651360306;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14643,2635,'_wp_page_template','elementor_header_footer'),(14644,2635,'_elementor_edit_mode','builder'),(14645,2635,'_elementor_template_type','wp-page'),(14646,2635,'_elementor_version','3.6.5'),(14647,2635,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c0148e6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-houzez_agent_search\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14648,2635,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14649,2635,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14650,2635,'_elementor_page_assets','a:0:{}'),(14651,2635,'_elementor_css','a:6:{s:4:\"time\";i:1651360306;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14653,2636,'_wp_page_template','elementor_header_footer'),(14654,2636,'_elementor_edit_mode','builder'),(14655,2636,'_elementor_template_type','wp-page'),(14656,2636,'_elementor_version','3.6.5'),(14657,2636,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#BA0E0E00\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=d9cbdc1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\\n<br \\/>\\n119 West Avenue Kannapolis, North Carolina 28081<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14658,2636,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14659,2636,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14660,2636,'_elementor_page_assets','a:0:{}'),(14661,2636,'_elementor_css','a:6:{s:4:\"time\";i:1651360469;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14669,2643,'_wp_attached_file','2022/05/352-T-Termination-of-Contract-Form-2-T-by-Notice-to-Buyer-from-Seller-version-1.pdf'),(14675,2645,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2022/05/227a8683-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"227a8683-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"227a8683-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"227a8683-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"227a8683-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"227a8683-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"227a8683-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"227a8683-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"227a8683-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"227a8683-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"227a8683-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"227a8683-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"227a8683-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"227a8683-496x744.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1651089989\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"111\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"227a8683.jpg\";}'),(14674,2645,'_wp_attached_file','2022/05/227a8683-scaled.jpg'),(14676,2645,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.880411922452964290641830302774906158447265625;s:5:\"bytes\";i:839492;s:11:\"size_before\";i:7715627;s:10:\"size_after\";i:6876135;s:4:\"time\";d:1.4699999999999999733546474089962430298328399658203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6468;s:11:\"size_before\";i:52580;s:10:\"size_after\";i:46112;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:48309;s:11:\"size_before\";i:443254;s:10:\"size_after\";i:394945;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3196;s:11:\"size_before\";i:23769;s:10:\"size_after\";i:20573;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:59107;s:11:\"size_before\";i:547119;s:10:\"size_after\";i:488012;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:99816;s:11:\"size_before\";i:924649;s:10:\"size_after\";i:824833;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:167687;s:11:\"size_before\";i:1566913;s:10:\"size_after\";i:1399226;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:11;s:5:\"bytes\";i:71164;s:11:\"size_before\";i:647057;s:10:\"size_after\";i:575893;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:25080;s:11:\"size_before\";i:209336;s:10:\"size_after\";i:184256;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:37270;s:11:\"size_before\";i:324779;s:10:\"size_after\";i:287509;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:24476;s:11:\"size_before\";i:204779;s:10:\"size_after\";i:180303;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:19437;s:11:\"size_before\";i:170976;s:10:\"size_after\";i:151539;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.75;s:5:\"bytes\";i:1784;s:11:\"size_before\";i:12973;s:10:\"size_after\";i:11189;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:27869;s:11:\"size_before\";i:249849;s:10:\"size_after\";i:221980;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:247829;s:11:\"size_before\";i:2337594;s:10:\"size_after\";i:2089765;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}}}'),(14677,2646,'_wp_attached_file','2022/05/HS.jpg'),(14678,2646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:596;s:6:\"height\";i:661;s:4:\"file\";s:14:\"2022/05/HS.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"HS-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"HS-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:14:\"HS-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:14:\"HS-596x564.jpg\";s:5:\"width\";i:596;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:14:\"HS-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:14:\"HS-541x600.jpg\";s:5:\"width\";i:541;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:13:\"HS-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:14:\"HS-496x550.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1630370744\";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:{}}}'),(14679,2646,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.790472045972902659372039124718867242336273193359375;s:5:\"bytes\";i:19511;s:11:\"size_before\";i:514738;s:10:\"size_after\";i:495227;s:4:\"time\";d:0.310000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37803;s:10:\"size_after\";i:37803;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14078;s:10:\"size_after\";i:14078;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:88194;s:10:\"size_after\";i:88194;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:62063;s:10:\"size_after\";i:62063;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9037;s:11:\"size_before\";i:93649;s:10:\"size_after\";i:84612;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:106614;s:10:\"size_after\";i:106614;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:685;s:11:\"size_before\";i:8628;s:10:\"size_after\";i:7943;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:9789;s:11:\"size_before\";i:103709;s:10:\"size_after\";i:93920;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(14684,2649,'_wp_attached_file','2022/05/Headshot-agency-affiliation-e1656031204614.png'),(14685,2649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:533;s:4:\"file\";s:54:\"2022/05/Headshot-agency-affiliation-e1656031204614.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Headshot-agency-affiliation-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Headshot-agency-affiliation-768x1024.png\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Headshot-agency-affiliation-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Headshot-agency-affiliation-768x1024.png\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"Headshot-agency-affiliation-1152x1536.png\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:40:\"Headshot-agency-affiliation-1170x785.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:39:\"Headshot-agency-affiliation-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:39:\"Headshot-agency-affiliation-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:39:\"Headshot-agency-affiliation-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:39:\"Headshot-agency-affiliation-450x600.png\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:38:\"Headshot-agency-affiliation-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:39:\"Headshot-agency-affiliation-496x661.png\";s:5:\"width\";i:496;s:6:\"height\";i:661;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14686,2649,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7674389;s:10:\"size_after\";i:7674389;s:4:\"time\";d:8.440000000000001278976924368180334568023681640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:107243;s:10:\"size_after\";i:107243;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1200528;s:10:\"size_after\";i:1200528;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40535;s:10:\"size_after\";i:40535;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2524216;s:10:\"size_after\";i:2524216;s:4:\"time\";d:4.69000000000000039079850466805510222911834716796875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1393622;s:10:\"size_after\";i:1393622;s:4:\"time\";d:1.399999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:420509;s:10:\"size_after\";i:420509;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:674071;s:10:\"size_after\";i:674071;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:409635;s:10:\"size_after\";i:409635;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:400231;s:10:\"size_after\";i:400231;s:4:\"time\";d:0.25;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21045;s:10:\"size_after\";i:21045;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:482754;s:10:\"size_after\";i:482754;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;}}}'),(14687,2650,'_wp_attached_file','2022/05/HS-1.jpg'),(14688,2650,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:596;s:6:\"height\";i:661;s:4:\"file\";s:16:\"2022/05/HS-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"HS-1-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"HS-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:16:\"HS-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:16:\"HS-1-596x564.jpg\";s:5:\"width\";i:596;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:16:\"HS-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:16:\"HS-1-541x600.jpg\";s:5:\"width\";i:541;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:15:\"HS-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:16:\"HS-1-496x550.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1630370744\";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:{}}}'),(14689,2650,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.790472045972902659372039124718867242336273193359375;s:5:\"bytes\";i:19511;s:11:\"size_before\";i:514738;s:10:\"size_after\";i:495227;s:4:\"time\";d:0.1999999999999999833466546306226518936455249786376953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37803;s:10:\"size_after\";i:37803;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14078;s:10:\"size_after\";i:14078;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:88194;s:10:\"size_after\";i:88194;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:62063;s:10:\"size_after\";i:62063;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9037;s:11:\"size_before\";i:93649;s:10:\"size_after\";i:84612;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:106614;s:10:\"size_after\";i:106614;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:685;s:11:\"size_before\";i:8628;s:10:\"size_after\";i:7943;s:4:\"time\";i:0;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:9789;s:11:\"size_before\";i:103709;s:10:\"size_after\";i:93920;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(14690,2651,'_wp_attached_file','2022/05/4-2-scaled.jpg'),(14691,2651,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1700;s:4:\"file\";s:22:\"2022/05/4-2-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"4-2-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"4-2-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"4-2-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:15:\"4-2-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"4-2-1536x1020.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:17:\"4-2-2048x1360.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:16:\"4-2-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:15:\"4-2-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:15:\"4-2-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:15:\"4-2-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:15:\"4-2-903x600.jpg\";s:5:\"width\";i:903;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:14:\"4-2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:15:\"4-2-496x329.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:329;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1587556158\";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:{}}s:14:\"original_image\";s:7:\"4-2.jpg\";}'),(14692,2651,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.36739569293386153958635986782610416412353515625;s:5:\"bytes\";i:686979;s:11:\"size_before\";i:9324584;s:10:\"size_after\";i:8637605;s:4:\"time\";d:1.82000000000000028421709430404007434844970703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:4546;s:11:\"size_before\";i:50127;s:10:\"size_after\";i:45581;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:40594;s:11:\"size_before\";i:528670;s:10:\"size_after\";i:488076;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2134;s:11:\"size_before\";i:20277;s:10:\"size_after\";i:18143;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:25426;s:11:\"size_before\";i:302037;s:10:\"size_after\";i:276611;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:82959;s:11:\"size_before\";i:1173519;s:10:\"size_after\";i:1090560;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:144519;s:11:\"size_before\";i:2066707;s:10:\"size_after\";i:1922188;s:4:\"time\";d:0.7600000000000000088817841970012523233890533447265625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:50971;s:11:\"size_before\";i:696700;s:10:\"size_after\";i:645729;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:17351;s:11:\"size_before\";i:201507;s:10:\"size_after\";i:184156;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:26073;s:11:\"size_before\";i:325258;s:10:\"size_after\";i:299185;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:17041;s:11:\"size_before\";i:196825;s:10:\"size_after\";i:179784;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:33282;s:11:\"size_before\";i:415151;s:10:\"size_after\";i:381869;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1265;s:11:\"size_before\";i:11103;s:10:\"size_after\";i:9838;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:11572;s:11:\"size_before\";i:129350;s:10:\"size_after\";i:117778;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:229246;s:11:\"size_before\";i:3207353;s:10:\"size_after\";i:2978107;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}}}'),(14696,2653,'_wp_attached_file','2022/05/EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-e1656031448823.jpeg'),(14697,2653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:408;s:4:\"file\";s:64:\"2022/05/EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-e1656031448823.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-300x272.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-1024x927.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:927;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-768x695.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-1080x785.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-663x600.jpeg\";s:5:\"width\";i:663;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22-496x449.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:449;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:{}}}'),(14698,2653,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2133220206544361730038872337900102138519287109375;s:5:\"bytes\";i:120494;s:11:\"size_before\";i:2311271;s:10:\"size_after\";i:2190777;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:66012;s:10:\"size_after\";i:66012;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:455989;s:10:\"size_after\";i:455989;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24902;s:10:\"size_after\";i:24902;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:39341;s:11:\"size_before\";i:338488;s:10:\"size_after\";i:299147;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:365808;s:10:\"size_after\";i:365808;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:166735;s:10:\"size_after\";i:166735;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:244705;s:10:\"size_after\";i:244705;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:22867;s:11:\"size_before\";i:187805;s:10:\"size_after\";i:164938;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:32853;s:11:\"size_before\";i:270629;s:10:\"size_after\";i:237776;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2553;s:11:\"size_before\";i:16001;s:10:\"size_after\";i:13448;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:22880;s:11:\"size_before\";i:174197;s:10:\"size_after\";i:151317;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(14699,2654,'_wp_attached_file','2022/05/238289776_10104327108332416_32970513820961977_n.jpg'),(14700,2654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:660;s:4:\"file\";s:59:\"2022/05/238289776_10104327108332416_32970513820961977_n.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-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:59:\"238289776_10104327108332416_32970513820961977_n-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:59:\"238289776_10104327108332416_32970513820961977_n-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-873x600.jpg\";s:5:\"width\";i:873;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:58:\"238289776_10104327108332416_32970513820961977_n-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-496x341.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:341;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:{}}}'),(14701,2654,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.540692179864178168458010986796580255031585693359375;s:5:\"bytes\";i:28927;s:11:\"size_before\";i:1138548;s:10:\"size_after\";i:1109621;s:4:\"time\";d:0.31999999999999995115018691649311222136020660400390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45844;s:10:\"size_after\";i:45844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20776;s:10:\"size_after\";i:20776;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:192916;s:10:\"size_after\";i:192916;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:142228;s:10:\"size_after\";i:142228;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:210943;s:10:\"size_after\";i:210943;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:15765;s:11:\"size_before\";i:156372;s:10:\"size_after\";i:140607;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:243547;s:10:\"size_after\";i:243547;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1634;s:11:\"size_before\";i:13240;s:10:\"size_after\";i:11606;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11528;s:11:\"size_before\";i:112682;s:10:\"size_after\";i:101154;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(14702,2655,'_wp_attached_file','2022/05/IMG-1433-e1656031808228.jpg'),(14703,2655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:549;s:4:\"file\";s:35:\"2022/05/IMG-1433-e1656031808228.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG-1433-273x300.jpg\";s:5:\"width\";i:273;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG-1433-932x1024.jpg\";s:5:\"width\";i:932;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG-1433-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:\"IMG-1433-768x844.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"IMG-1433-1398x1536.jpg\";s:5:\"width\";i:1398;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"IMG-1433-1864x2048.jpg\";s:5:\"width\";i:1864;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"IMG-1433-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"IMG-1433-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"IMG-1433-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"IMG-1433-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"IMG-1433-546x600.jpg\";s:5:\"width\";i:546;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"IMG-1433-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"IMG-1433-496x545.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 11\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1613647652\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.71\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(14704,2655,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.0280585169228324549095532347564585506916046142578125;s:5:\"bytes\";i:54601;s:11:\"size_before\";i:5311079;s:10:\"size_after\";i:5256478;s:4:\"time\";d:1.350000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:52067;s:10:\"size_after\";i:52067;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:532904;s:10:\"size_after\";i:532904;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16377;s:10:\"size_after\";i:16377;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:22270;s:11:\"size_before\";i:393568;s:10:\"size_after\";i:371298;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1102697;s:10:\"size_after\";i:1102697;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1773198;s:10:\"size_after\";i:1773198;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:490254;s:10:\"size_after\";i:490254;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:155464;s:10:\"size_after\";i:155464;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:246647;s:10:\"size_after\";i:246647;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9509;s:11:\"size_before\";i:160841;s:10:\"size_after\";i:151332;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11817;s:11:\"size_before\";i:206313;s:10:\"size_after\";i:194496;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:906;s:11:\"size_before\";i:9787;s:10:\"size_after\";i:8881;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:10099;s:11:\"size_before\";i:170962;s:10:\"size_after\";i:160863;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(14705,2657,'_wp_attached_file','2022/05/LRD-Roster_012422-3.xlsx'),(14715,2662,'_wp_attached_file','2022/05/A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-e1656032162364.png'),(14716,2662,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:866;s:4:\"file\";s:63:\"2022/05/A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-e1656032162364.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-139x300.png\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-473x1024.png\";s:5:\"width\";i:473;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-768x1662.png\";s:5:\"width\";i:768;s:6:\"height\";i:1662;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-710x1536.png\";s:5:\"width\";i:710;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:48:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-828x785.png\";s:5:\"width\";i:828;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:48:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:48:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:48:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:48:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-277x600.png\";s:5:\"width\";i:277;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:47:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81-496x1073.png\";s:5:\"width\";i:496;s:6:\"height\";i:1073;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14717,2662,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5847467;s:10:\"size_after\";i:5847467;s:4:\"time\";d:4.99999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54811;s:10:\"size_after\";i:54811;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:503604;s:10:\"size_after\";i:503604;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43986;s:10:\"size_after\";i:43986;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1156741;s:10:\"size_after\";i:1156741;s:4:\"time\";d:1.020000000000000017763568394002504646778106689453125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1014429;s:10:\"size_after\";i:1014429;s:4:\"time\";d:1.3400000000000000799360577730112709105014801025390625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:918866;s:10:\"size_after\";i:918866;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:399503;s:10:\"size_after\";i:399503;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:605174;s:10:\"size_after\";i:605174;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:389482;s:10:\"size_after\";i:389482;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:191686;s:10:\"size_after\";i:191686;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22028;s:10:\"size_after\";i:22028;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:547157;s:10:\"size_after\";i:547157;s:4:\"time\";d:0.70999999999999996447286321199499070644378662109375;}}}'),(14721,2664,'_wp_attached_file','2022/05/7583FB06-C593-4C67-AEA0-25B43DF7E577-e1656032466415.png'),(14722,2664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:865;s:4:\"file\";s:63:\"2022/05/7583FB06-C593-4C67-AEA0-25B43DF7E577-e1656032466415.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-139x300.png\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-473x1024.png\";s:5:\"width\";i:473;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-768x1662.png\";s:5:\"width\";i:768;s:6:\"height\";i:1662;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-710x1536.png\";s:5:\"width\";i:710;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-947x2048.png\";s:5:\"width\";i:947;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:49:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-1170x785.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:48:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:48:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:48:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:48:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-277x600.png\";s:5:\"width\";i:277;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:47:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"7583FB06-C593-4C67-AEA0-25B43DF7E577-496x1073.png\";s:5:\"width\";i:496;s:6:\"height\";i:1073;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14723,2664,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7716113;s:10:\"size_after\";i:7716113;s:4:\"time\";d:4.64999999999999857891452847979962825775146484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54556;s:10:\"size_after\";i:54556;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:481555;s:10:\"size_after\";i:481555;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:46643;s:10:\"size_after\";i:46643;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1132591;s:10:\"size_after\";i:1132591;s:4:\"time\";d:0.7199999999999999733546474089962430298328399658203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:987618;s:10:\"size_after\";i:987618;s:4:\"time\";d:0.7199999999999999733546474089962430298328399658203125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1613861;s:10:\"size_after\";i:1613861;s:4:\"time\";d:1.12999999999999989341858963598497211933135986328125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1201628;s:10:\"size_after\";i:1201628;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:417544;s:10:\"size_after\";i:417544;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:639455;s:10:\"size_after\";i:639455;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:407580;s:10:\"size_after\";i:407580;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:185120;s:10:\"size_after\";i:185120;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24299;s:10:\"size_after\";i:24299;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:523663;s:10:\"size_after\";i:523663;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}}}'),(14733,2669,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14734,2669,'_elementor_page_assets','a:0:{}'),(14735,2669,'_elementor_css','a:6:{s:4:\"time\";i:1651355798;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14736,2670,'_wp_page_template','template/template-onepage.php'),(14737,2670,'_elementor_edit_mode','builder'),(14738,2670,'_elementor_template_type','wp-page'),(14739,2670,'_elementor_version','3.6.5'),(14740,2670,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14741,2670,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":47,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bd8f1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Office\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethtown, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14742,2670,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14743,2670,'_elementor_page_assets','a:0:{}'),(14744,2670,'_elementor_css','a:6:{s:4:\"time\";i:1651355798;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14745,2671,'_wp_page_template','template/template-onepage.php'),(14746,2671,'_elementor_edit_mode','builder'),(14747,2671,'_elementor_template_type','wp-page'),(14748,2671,'_elementor_version','3.6.5'),(14749,2671,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14750,2671,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":47,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bd8f1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Office\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethton, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14751,2671,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:4:\"size\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:26:\"typography_text_decoration\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;s:5:\"align\";i:6;s:7:\"link_to\";i:6;s:13:\"open_lightbox\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:6;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:6;s:15:\"icon_self_align\";i:6;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:6;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:12;s:4:\"text\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:12;s:4:\"size\";i:12;s:11:\"icon_indent\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:6;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:6;s:4:\"zoom\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:6;}}}}}'),(14752,2671,'_elementor_page_assets','a:0:{}'),(14753,2671,'_elementor_css','a:6:{s:4:\"time\";i:1651355798;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14755,2672,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14756,2672,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14757,2672,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14758,2672,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14759,2672,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14760,2672,'_edit_last','1'),(14761,2672,'_wp_page_template','template/template-onepage.php'),(14762,2672,'_edit_lock','1653527545:1'),(14763,2672,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14764,2672,'fave_listing_page_content_area','0'),(14765,2672,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14766,2672,'fave_prop_no','9'),(14767,2672,'fave_properties_sort','d_date'),(14768,2672,'fave_listings_tabs','disable'),(14769,2672,'fave_properties_min_beds','0'),(14770,2672,'fave_properties_min_baths','0'),(14771,2672,'fave_agency_orderby','none'),(14772,2672,'fave_agency_order','ASC'),(14773,2672,'fave_agent_orderby','none'),(14774,2672,'fave_agent_order','ASC'),(14775,2672,'fave_page_header_image_opacity','0.35'),(14776,2672,'fave_page_header_search','0'),(14777,2672,'fave_header_type','elementor'),(14778,2672,'fave_adv_search','hide'),(14779,2672,'fave_header_full_screen','0'),(14780,2672,'fave_adv_search_enable','global'),(14781,2672,'fave_page_sidebar','right_sidebar'),(14782,2672,'fave_page_background','yes'),(14783,2672,'fave_adv_search_pos','under_menu'),(14784,2672,'fave_page_title','show'),(14785,2672,'fave_page_breadcrumb','show'),(14808,2672,'passster_activate_global_protection',NULL),(14788,2672,'passster_activate_protection',NULL),(14789,2672,'fave_main_menu_trans','no'),(14790,2672,'passster_protection_type','password'),(14791,2672,'_wpb_vc_js_status','false'),(14792,2672,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(14793,2672,'_elementor_edit_mode','builder'),(14794,2672,'_elementor_template_type','wp-page'),(14795,2672,'_elementor_version','3.6.5'),(14796,2672,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14797,2672,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Tennessee Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethton, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethton, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tennessee Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"tennessee\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14798,2672,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(14850,2679,'_wp_page_template','template/template-onepage.php'),(14851,2679,'_elementor_edit_mode','builder'),(14852,2679,'_elementor_template_type','wp-page'),(14800,2673,'_wp_page_template','template/template-onepage.php'),(14801,2673,'_elementor_edit_mode','builder'),(14802,2673,'_elementor_template_type','wp-page'),(14803,2673,'_elementor_version','3.1.1'),(14804,2673,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14805,2673,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14806,2673,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(14807,2673,'_elementor_css','a:6:{s:4:\"time\";i:1619975185;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14832,2676,'_elementor_css','a:6:{s:4:\"time\";i:1619975185;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14831,2676,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(14828,2676,'_elementor_version','3.1.1'),(14829,2676,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14830,2676,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14825,2676,'_wp_page_template','template/template-onepage.php'),(14826,2676,'_elementor_edit_mode','builder'),(14827,2676,'_elementor_template_type','wp-page'),(14817,2675,'_wp_page_template','template/template-onepage.php'),(14818,2675,'_elementor_edit_mode','builder'),(14819,2675,'_elementor_template_type','wp-page'),(14820,2675,'_elementor_version','3.1.1'),(14821,2675,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14822,2675,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14823,2675,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(14824,2675,'_elementor_css','a:6:{s:4:\"time\";i:1619975185;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14833,2677,'_wp_page_template','template/template-onepage.php'),(14834,2677,'_elementor_edit_mode','builder'),(14835,2677,'_elementor_template_type','wp-page'),(14836,2677,'_elementor_version','3.1.1'),(14837,2677,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14838,2677,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Asheville Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14839,2677,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(14840,2677,'_elementor_css','a:6:{s:4:\"time\";i:1619975185;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14841,2678,'_wp_page_template','template/template-onepage.php'),(14842,2678,'_elementor_edit_mode','builder'),(14843,2678,'_elementor_template_type','wp-page'),(14844,2678,'_elementor_version','3.1.1'),(14845,2678,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14846,2678,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Tennessee Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethton, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14847,2678,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(14848,2678,'_elementor_css','a:6:{s:4:\"time\";i:1619975185;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14849,2672,'_elementor_page_assets','a:0:{}'),(14853,2679,'_elementor_version','3.6.5'),(14854,2679,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14855,2679,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Tennessee Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethton, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14856,2679,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(14857,2679,'_elementor_page_assets','a:0:{}'),(14858,2680,'_wp_page_template','template/template-onepage.php'),(14859,2680,'_elementor_edit_mode','builder'),(14860,2680,'_elementor_template_type','wp-page'),(14861,2680,'_elementor_version','3.6.5'),(14862,2680,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14863,2680,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Tennessee Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethton, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"23 Mill Stone Drive, Asheville NC 28803\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14864,2680,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(14865,2680,'_elementor_page_assets','a:0:{}'),(14866,2681,'_wp_page_template','template/template-onepage.php'),(14867,2681,'_elementor_edit_mode','builder'),(14868,2681,'_elementor_template_type','wp-page'),(14869,2681,'_elementor_version','3.6.5'),(14870,2681,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14871,2681,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Tennessee Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethton, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"416 E. Elk Ave., Elizabethton, TN 37643\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Asheville\\/1753763\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tennessee Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"tennessee\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(14872,2681,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(14873,2681,'_elementor_page_assets','a:0:{}'),(14874,2672,'_elementor_css','a:6:{s:4:\"time\";i:1653527530;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:3;s:0:\"\";i:6;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14875,645,'_wp_page_template','default'),(14880,576,'fave_agent_visible','0'),(14883,2686,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/05/AJHeadshots-1-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"AJHeadshots-1-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"AJHeadshots-1-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"AJHeadshots-1-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:28:\"AJHeadshots-1-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"AJHeadshots-1-1-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"AJHeadshots-1-1-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:28:\"AJHeadshots-1-1-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"AJHeadshots-1-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:27:\"AJHeadshots-1-1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"AJHeadshots-1-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:27:\"AJHeadshots-1-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"AJHeadshots-1-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"AJHeadshots-1-1-496x744.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS RP\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1652383486\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"65\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"AJHeadshots-1-1.jpg\";}'),(14884,2686,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.7926733908208216661250844481401145458221435546875;s:5:\"bytes\";i:504063;s:11:\"size_before\";i:6468422;s:10:\"size_after\";i:5964359;s:4:\"time\";d:2.2400000000000002131628207280300557613372802734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4069;s:11:\"size_before\";i:42085;s:10:\"size_after\";i:38016;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:27885;s:11:\"size_before\";i:362686;s:10:\"size_after\";i:334801;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1796;s:11:\"size_before\";i:18778;s:10:\"size_after\";i:16982;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:34436;s:11:\"size_before\";i:452265;s:10:\"size_after\";i:417829;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:59171;s:11:\"size_before\";i:781932;s:10:\"size_after\";i:722761;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:105088;s:11:\"size_before\";i:1359136;s:10:\"size_after\";i:1254048;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:35561;s:11:\"size_before\";i:484714;s:10:\"size_after\";i:449153;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:11101;s:11:\"size_before\";i:150380;s:10:\"size_after\";i:139279;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:16818;s:11:\"size_before\";i:236609;s:10:\"size_after\";i:219791;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:10934;s:11:\"size_before\";i:146973;s:10:\"size_after\";i:136039;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:11943;s:11:\"size_before\";i:137084;s:10:\"size_after\";i:125141;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.75;s:5:\"bytes\";i:1030;s:11:\"size_before\";i:10567;s:10:\"size_after\";i:9537;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:16928;s:11:\"size_before\";i:202015;s:10:\"size_after\";i:185087;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:167303;s:11:\"size_before\";i:2083198;s:10:\"size_after\";i:1915895;s:4:\"time\";d:0.85999999999999998667732370449812151491641998291015625;}}}'),(14891,2689,'_wp_attached_file','2022/05/Screenshot-2.png'),(14892,2689,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1141;s:6:\"height\";i:1145;s:4:\"file\";s:24:\"2022/05/Screenshot-2.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Screenshot-2-1020x1024.png\";s:5:\"width\";i:1020;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-768x771.png\";s:5:\"width\";i:768;s:6:\"height\";i:771;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:25:\"Screenshot-2-1141x785.png\";s:5:\"width\";i:1141;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-598x600.png\";s:5:\"width\";i:598;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Screenshot-2-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Screenshot-2-496x498.png\";s:5:\"width\";i:496;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14893,2689,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4773624;s:10:\"size_after\";i:4773624;s:4:\"time\";d:5.13999999999999968025576890795491635799407958984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:130909;s:10:\"size_after\";i:130909;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1082724;s:10:\"size_after\";i:1082724;s:4:\"time\";d:1.20999999999999996447286321199499070644378662109375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39792;s:10:\"size_after\";i:39792;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:676446;s:10:\"size_after\";i:676446;s:4:\"time\";d:0.9899999999999999911182158029987476766109466552734375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:927415;s:10:\"size_after\";i:927415;s:4:\"time\";d:0.7199999999999999733546474089962430298328399658203125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:326826;s:10:\"size_after\";i:326826;s:4:\"time\";d:0.58999999999999996891375531049561686813831329345703125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:494647;s:10:\"size_after\";i:494647;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:319482;s:10:\"size_after\";i:319482;s:4:\"time\";d:0.56999999999999995115018691649311222136020660400390625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:438200;s:10:\"size_after\";i:438200;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21254;s:10:\"size_after\";i:21254;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:315929;s:10:\"size_after\";i:315929;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(14894,2691,'_wp_attached_file','2022/05/Agent-Fundamentals-MLD-6-30-2022-1.pdf'),(14895,2692,'_wp_attached_file','2022/05/LRD-Roster_012422-4.xlsx'),(14939,2707,'_elementor_version','3.5.5'),(14940,2707,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14941,2707,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14942,2707,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14943,2707,'_elementor_page_assets','a:0:{}'),(14944,2707,'_elementor_css','a:6:{s:4:\"time\";i:1645157177;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14945,2708,'_wp_page_template','template/template-page.php'),(14946,2708,'_elementor_edit_mode','builder'),(14947,2708,'_elementor_template_type','wp-page'),(14948,2708,'_elementor_version','3.5.5'),(14949,2708,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"216ee74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2602e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 105 N State Street -<\\/p><p style=\\\"text-align: center;\\\">Lexington, North Carolina 27293<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"363d16b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"bf088c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tennessee Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96a9bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 416 E. Elk Avenue -<\\/p><p style=\\\"text-align: center;\\\">Elizabethton, Tennessee 37643<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d53d11\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"tennessee\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"f5d031b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Raleigh Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acff562\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 4909 Unicon Drive, Ste. 105 -<\\/p>\\n<p style=\\\"text-align: center;\\\">Wake Forest, North Carolina 27587<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9835305\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"raleigh\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(14950,2708,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(14951,2708,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(14952,2708,'_elementor_page_assets','a:0:{}'),(14953,2708,'_elementor_css','a:6:{s:4:\"time\";i:1645157177;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(14955,2709,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14956,2709,'_edit_lock','1656030721:1'),(14957,2355,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:19:\"IMG_7616-scaled.jpg\";}}'),(14958,2709,'_thumbnail_id','2355'),(14959,2709,'_edit_last','1'),(14960,2709,'fave_agent_company','Lantern Realty and Development'),(14961,2709,'fave_agent_email','eudyrealestate@gmail.com'),(14962,2709,'fave_agent_visible','0'),(14963,2709,'fave_agent_position','Licensed Agent'),(14964,2709,'fave_agent_license','318003'),(14965,2709,'fave_agent_mobile','980-521-2950'),(14966,2709,'fave_agent_website','https://lantern-realty.com/'),(14967,2709,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(14968,2709,'fave_agent_logo','28'),(14969,2709,'fave_agent_agencies','45'),(14970,2709,'_primary_term_agent_category','10'),(14971,2709,'rs_page_bg_color',''),(14972,2711,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14973,2711,'_edit_lock','1656031000:1'),(14974,2711,'_thumbnail_id','2650'),(14975,2711,'_edit_last','1'),(14976,2711,'fave_agent_company','Lantern Realty and Development'),(14977,2711,'fave_agent_email','melindarmesimer@gmail.com'),(14978,2711,'fave_agent_visible','0'),(14979,2711,'fave_agent_position','Licensed Agent'),(14980,2711,'fave_agent_license','298085'),(14981,2711,'fave_agent_mobile','980-581-6077'),(14982,2711,'fave_agent_website','https://lantern-realty.com/'),(14983,2711,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(14984,2711,'fave_agent_logo','28'),(14985,2711,'fave_agent_agencies','45'),(14986,2711,'_primary_term_agent_category','10'),(14987,2711,'rs_page_bg_color',''),(14988,2713,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(14989,2713,'_edit_lock','1656031328:1'),(14990,2649,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:31:\"Headshot-agency-affiliation.png\";}}'),(14991,2713,'_thumbnail_id','2649'),(14992,2713,'_edit_last','1'),(14993,2713,'fave_agent_company','Lantern Realty and Development'),(14994,2713,'fave_agent_email','megstherealtor@gmail.com'),(14995,2713,'fave_agent_visible','0'),(14996,2713,'fave_agent_position','Licensed Agent'),(14997,2713,'fave_agent_license','337563'),(14998,2713,'fave_agent_mobile','704-852-2597'),(14999,2713,'fave_agent_website','https://lantern-realty.com/'),(15000,2713,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(15001,2713,'fave_agent_logo','28'),(15002,2713,'fave_agent_agencies','45'),(15003,2713,'_primary_term_agent_category','10'),(15004,2713,'rs_page_bg_color',''),(15005,2653,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1080;s:6:\"height\";i:978;s:4:\"file\";s:41:\"EACD56F5-E4D1-496E-9F8C-9518BCFFCC22.jpeg\";}}'),(15007,2716,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(15008,2716,'_edit_lock','1656031978:1'),(15009,2655,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2316;s:6:\"height\";i:2544;s:4:\"file\";s:12:\"IMG-1433.jpg\";}}'),(15010,2716,'_thumbnail_id','2655'),(15011,2716,'_edit_last','1'),(15012,2716,'fave_agent_company','Lantern Realty and Development'),(15013,2716,'fave_agent_email','colleenviterirealtor@gmail.com'),(15014,2716,'fave_agent_visible','0'),(15015,2716,'fave_agent_position','Licensed Agent'),(15016,2716,'fave_agent_license','338380'),(15017,2716,'fave_agent_mobile','704-960-3621'),(15018,2716,'fave_agent_website','https://lantern-realty.com/'),(15019,2716,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(15020,2716,'fave_agent_logo','28'),(15021,2716,'fave_agent_agencies','45'),(15022,2716,'_primary_term_agent_category','10'),(15023,2716,'rs_page_bg_color',''),(15024,2718,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(15025,2718,'_edit_lock','1656032333:1'),(15026,2662,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:828;s:6:\"height\";i:1792;s:4:\"file\";s:40:\"A78FEEFF-482A-48D8-9B4D-2ED89EC1FB81.png\";}}'),(15027,2718,'_thumbnail_id','2662'),(15028,2718,'_edit_last','1'),(15029,2718,'fave_agent_company','Lantern Realty and Development'),(15030,2718,'fave_agent_email','alexisdevinesmith@gmail.com'),(15031,2718,'fave_agent_visible','0'),(15032,2718,'fave_agent_position','Licensed Agent'),(15033,2718,'fave_agent_license','339491'),(15034,2718,'fave_agent_mobile','704-223-4228'),(15035,2718,'fave_agent_website','https://lantern-realty.com/'),(15036,2718,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(15037,2718,'fave_agent_logo','28'),(15038,2718,'fave_agent_agencies','757'),(15039,2718,'_primary_term_agent_category','7'),(15040,2718,'rs_page_bg_color',''),(15041,2720,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(15042,2720,'_edit_lock','1656032581:1'),(15043,2664,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1284;s:6:\"height\";i:2778;s:4:\"file\";s:40:\"7583FB06-C593-4C67-AEA0-25B43DF7E577.png\";}}'),(15044,2720,'_thumbnail_id','2664'),(15045,2720,'_edit_last','1'),(15046,2720,'fave_agent_company','Lantern Realty and Development'),(15047,2720,'fave_agent_email','mitzitimalexis@yahoo.com'),(15048,2720,'fave_agent_visible','0'),(15049,2720,'fave_agent_position','Licensed Agent'),(15050,2720,'fave_agent_license','337140'),(15051,2720,'fave_agent_mobile','704-223-4229'),(15052,2720,'fave_agent_website','https://lantern-realty.com/'),(15053,2720,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(15054,2720,'fave_agent_logo','28'),(15055,2720,'fave_agent_agencies','757'),(15056,2720,'_primary_term_agent_category','7'),(15057,2720,'rs_page_bg_color',''),(15058,2722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(15059,2722,'_edit_lock','1656033253:1'),(15060,2696,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1141;s:6:\"height\";i:1145;s:4:\"file\";s:16:\"Screenshot-2.png\";}}'),(15061,2722,'_thumbnail_id','2696'),(15062,2722,'_edit_last','1'),(15063,2722,'fave_agent_company','Lantern Realty and Development'),(15064,2722,'fave_agent_email','aweth.93@gmail.com'),(15065,2722,'fave_agent_visible','0'),(15066,2722,'fave_agent_position','Licensed Agent'),(15067,2722,'fave_agent_license','339304'),(15068,2722,'fave_agent_mobile','704-796-5738'),(15069,2722,'fave_agent_website','https://lantern-realty.com/'),(15070,2722,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(15071,2722,'fave_agent_logo','28'),(15072,2722,'fave_agent_agencies','45'),(15073,2722,'_primary_term_agent_category','7'),(15074,2722,'rs_page_bg_color',''),(15075,1685,'fave_agent_mobile','704-791-7475'),(15081,2725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:660;s:4:\"file\";s:59:\"2022/07/238289776_10104327108332416_32970513820961977_n.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-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:59:\"238289776_10104327108332416_32970513820961977_n-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:59:\"238289776_10104327108332416_32970513820961977_n-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-873x600.jpg\";s:5:\"width\";i:873;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:58:\"238289776_10104327108332416_32970513820961977_n-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:59:\"238289776_10104327108332416_32970513820961977_n-496x341.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:341;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:{}}}');
INSERT INTO `lrwp_postmeta` VALUES (15082,2725,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.540692179864178168458010986796580255031585693359375;s:5:\"bytes\";i:28927;s:11:\"size_before\";i:1138548;s:10:\"size_after\";i:1109621;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45844;s:10:\"size_after\";i:45844;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20776;s:10:\"size_after\";i:20776;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:192916;s:10:\"size_after\";i:192916;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:142228;s:10:\"size_after\";i:142228;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:210943;s:10:\"size_after\";i:210943;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:15765;s:11:\"size_before\";i:156372;s:10:\"size_after\";i:140607;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:243547;s:10:\"size_after\";i:243547;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1634;s:11:\"size_before\";i:13240;s:10:\"size_after\";i:11606;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11528;s:11:\"size_before\";i:112682;s:10:\"size_after\";i:101154;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(15085,2727,'_wp_attached_file','2022/07/280007879_104782758898297_1036531613923554789_n.jpg'),(15086,2727,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:887;s:6:\"height\";i:887;s:4:\"file\";s:59:\"2022/07/280007879_104782758898297_1036531613923554789_n.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"280007879_104782758898297_1036531613923554789_n-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:59:\"280007879_104782758898297_1036531613923554789_n-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:59:\"280007879_104782758898297_1036531613923554789_n-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:59:\"280007879_104782758898297_1036531613923554789_n-887x785.jpg\";s:5:\"width\";i:887;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:59:\"280007879_104782758898297_1036531613923554789_n-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:59:\"280007879_104782758898297_1036531613923554789_n-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:59:\"280007879_104782758898297_1036531613923554789_n-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:59:\"280007879_104782758898297_1036531613923554789_n-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:58:\"280007879_104782758898297_1036531613923554789_n-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:59:\"280007879_104782758898297_1036531613923554789_n-496x496.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:496;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:{}}}'),(15087,2727,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.915608382643338103434871300123631954193115234375;s:5:\"bytes\";i:33841;s:11:\"size_before\";i:1160684;s:10:\"size_after\";i:1126843;s:4:\"time\";d:0.5700000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:49399;s:10:\"size_after\";i:49399;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1782;s:11:\"size_before\";i:17718;s:10:\"size_after\";i:15936;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:212313;s:10:\"size_after\";i:212313;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:214484;s:10:\"size_after\";i:214484;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:108250;s:10:\"size_after\";i:108250;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:155969;s:10:\"size_after\";i:155969;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:8886;s:11:\"size_before\";i:115420;s:10:\"size_after\";i:106534;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:12638;s:11:\"size_before\";i:158787;s:10:\"size_after\";i:146149;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1087;s:11:\"size_before\";i:10042;s:10:\"size_after\";i:8955;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:9448;s:11:\"size_before\";i:118302;s:10:\"size_after\";i:108854;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}');
/*!40000 ALTER TABLE `lrwp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_posts`
--

DROP TABLE IF EXISTS `lrwp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_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=MyISAM AUTO_INCREMENT=2728 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_posts`
--

LOCK TABLES `lrwp_posts` WRITE;
/*!40000 ALTER TABLE `lrwp_posts` DISABLE KEYS */;
INSERT INTO `lrwp_posts` VALUES (1,1,'2018-08-20 00:26:23','2018-08-20 00:26:23','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','trash','open','open','','hello-world__trashed','','','2020-10-16 00:49:23','2020-10-16 00:49:23','',0,'http://lantern-realty.com/?p=1',0,'post','',0),(2,1,'2018-08-20 00:26:23','2018-08-20 00:26:23','<p>[vc_section full_width=\"stretch_row\" full_height=\"yes\" content_placement=\"middle\" css_animation=\"fadeIn\" css=\".vc_custom_1535990071877{padding-top: 10% !important;background-image: url(https://lantern-realty.com/wp-content/uploads/2018/08/Lantern_OpenHouse.png?id=56) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row css=\".vc_custom_1534901322962{margin-bottom: 250px !important;padding-right: 20px !important;padding-left: 20px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1534901068460{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 20px !important;padding-left: 20px !important;background-color: rgba(255,255,255,0.76) !important;*background-color: rgb(255,255,255) !important;}\"]</p>\n<h1>Property Search</h1>\n<p>[optima_express_quick_search style=\"twoline\" showPropertyType=\"false\"][/vc_column_text][/vc_column][/vc_row][/vc_section][vc_row content_placement=\"middle\" css=\".vc_custom_1535223457405{padding-top: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"top\" disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_btn title=\"Buy\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fhomes-for-sale-search%2F|title:Home%20Search||\"][vc_column_text css_animation=\"fadeIn\"]Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\'re one click away from discovering your next home![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Sell\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fvaluation-form%2F|title:Sell%20My%20Home||\"][vc_column_text css_animation=\"fadeIn\"]Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it\'s worth. Let us speak with you about selling your property and you\'ll learn why our previous clients love us. Click here to submit a home valuation request.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Contact\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:tel%3A9808582074|title:Call%20Lantern||\"][vc_column_text css_animation=\"fadeIn\"]Looking to speak with an agent now? Click here to contact an agent. We\'re available around the clock to provide you with the very best professional real estate representation.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner][text_with_icons columns=\"three_columns\" style=\"style_one\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-search\" title=\"Buy\" text=\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!\" read_more_text=\"Search Homes\" read_more_link=\"https://lantern-realty.com/homes-for-sale-search/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-home\" title=\"Sell\" text=\"Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.\" read_more_text=\"Submit a Valuation Request\" read_more_link=\"https://lantern-realty.com/valuation-form/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-phone\" title=\"Contact\" text=\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\" read_more_text=\"Contact an Agent\" read_more_link=\"tel:9808582074\"][/text_with_icons][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\"][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Listings</h1>\n<p>[optima_express_gallery_slider height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"pd\" maxResults=\"25\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<h1>Listed this Week</h1>\n<p>[optima_express_gallery_slider id=\"813462\" height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"ds\" maxResults=\"25\"][/vc_column_text][houzez-agents agents_type=\"Carousel\" agent_category=\"front-page\" agent_city=\"\" custom_title=\"Lantern Agents\" custom_subtitle=\"\" columns=\"3\" posts_limit=\"15\" offset=\"\" orderby=\"rand\" order=\"ASC\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\">See what clients are saying about Lantern Agents</h1>\n<p>[/vc_column_text][vc_single_image image=\"276\" img_size=\"medium\" alignment=\"center\" css_animation=\"bounceInLeft\"][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItbGlrZSUyMiUyMHN0eWxlJTNEJTIyYWxpZ24tY29udGVudCUzQSUyMGNlbnRlciUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLWxheW91dCUzRCUyMnN0YW5kYXJkJTIyJTIwZGF0YS1hY3Rpb24lM0QlMjJyZWNvbW1lbmQlMjIlMjBkYXRhLXNpemUlM0QlMjJzbWFsbCUyMiUyMGRhdGEtc2hvdy1mYWNlcyUzRCUyMmZhbHNlJTIyJTIwZGF0YS1zaGFyZSUzRCUyMmZhbHNlJTIyJTNFJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column_inner][vc_column_inner width=\"3/4\"][houzez-testimonials testimonials_type=\"slides\" posts_limit=\"10\" offset=\"\" orderby=\"rand\" order=\"ASC\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Find Homes for Sale in these Communities</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Kannapolis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DKannapolis%26propertyType%3DSFR%26status%3Dactive|title:Kannapolis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Concord\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DConcord%26propertyType%3DSFR%26status%3Dactive|title:Concord||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Landis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DLandis%26propertyType%3DSFR%26status%3Dactive|title:Landis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"China Grove\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DChina%20Grove%26propertyType%3DSFR%26status%3Dactive|title:China%20Grove||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Salisbury\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DSalisbury%26propertyType%3DSFR%26status%3Dactive|title:Salisbury||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Rockwell\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DRockwell%26propertyType%3DSFR%26status%3Dactive|title:Rockwell||\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Charlotte\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCharlotte%26propertyType%3DSFR%26status%3Dactive|title:Charlotte||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Huntersville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DHuntersville%26propertyType%3DSFR%26status%3Dactive|title:Huntersville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Cornelius\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCornelius%26propertyType%3DSFR%26status%3Dactive|title:Cornelius||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mooresville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMooresville%26propertyType%3DSFR%26status%3Dactive|title:Mooresville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mount Pleasant\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMount%20Pleasant%26propertyType%3DSFR%26status%3Dactive|title:Mount%20Pleasant||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Gold Hill\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DGold%20Hill%26propertyType%3DSFR%26status%3Dactive|title:Gold%20Hill||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner][hz-section-title hz_section_title=\"Follow Lantern on Facebook\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][/vc_column_inner][/vc_row_inner][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItcGFnZSUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLXRhYnMlM0QlMjJ0aW1lbGluZSUyMiUyMGRhdGEtd2lkdGglM0QlMjI1MDAlMjIlMjBkYXRhLWhlaWdodCUzRCUyMjEwMDAlMjIlMjBkYXRhLXNtYWxsLWhlYWRlciUzRCUyMnRydWUlMjIlMjBkYXRhLWFkYXB0LWNvbnRhaW5lci13aWR0aCUzRCUyMnRydWUlMjIlMjBkYXRhLWhpZGUtY292ZXIlM0QlMjJmYWxzZSUyMiUyMGRhdGEtc2hvdy1mYWNlcGlsZSUzRCUyMnRydWUlMjIlM0UlM0NibG9ja3F1b3RlJTIwY2l0ZSUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBjbGFzcyUzRCUyMmZiLXhmYm1sLXBhcnNlLWlnbm9yZSUyMiUzRSUzQ2ElMjBocmVmJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZmFjZWJvb2suY29tJTJGbGFudGVybnJlYWx0eSUyMiUzRUxhbnRlcm4lMjBSZWFsdHklMjAlMjZhbXAlM0IlMjBEZXZlbG9wbWVudCUyQyUyMExMQyUzQyUyRmElM0UlM0MlMkZibG9ja3F1b3RlJTNFJTNDJTJGZGl2JTNFJTBBJTBBJTBBJTNDJTIxLS0lMjBMb2FkJTIwRmFjZWJvb2slMjBTREslMjBmb3IlMjBKYXZhU2NyaXB0JTIwLS0lM0UlMEElM0NkaXYlMjBpZCUzRCUyMmZiLXJvb3QlMjIlM0UlM0MlMkZkaXYlM0UlMEElM0NzY3JpcHQlM0UlMjhmdW5jdGlvbiUyOGQlMkMlMjBzJTJDJTIwaWQlMjklMjAlN0IlMEElMjAlMjB2YXIlMjBqcyUyQyUyMGZqcyUyMCUzRCUyMGQuZ2V0RWxlbWVudHNCeVRhZ05hbWUlMjhzJTI5JTVCMCU1RCUzQiUwQSUyMCUyMGlmJTIwJTI4ZC5nZXRFbGVtZW50QnlJZCUyOGlkJTI5JTI5JTIwcmV0dXJuJTNCJTBBJTIwJTIwanMlMjAlM0QlMjBkLmNyZWF0ZUVsZW1lbnQlMjhzJTI5JTNCJTIwanMuaWQlMjAlM0QlMjBpZCUzQiUwQSUyMCUyMGpzLnNyYyUyMCUzRCUyMCUyN2h0dHBzJTNBJTJGJTJGY29ubmVjdC5mYWNlYm9vay5uZXQlMkZlbl9VUyUyRnNkayUyRnhmYm1sLmN1c3RvbWVyY2hhdC5qcyUyM3hmYm1sJTNEMSUyNnZlcnNpb24lM0R2Mi4xMiUyNmF1dG9Mb2dBcHBFdmVudHMlM0QxJTI3JTNCJTBBJTIwJTIwZmpzLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlJTI4anMlMkMlMjBmanMlMjklM0IlMEElN0QlMjhkb2N1bWVudCUyQyUyMCUyN3NjcmlwdCUyNyUyQyUyMCUyN2ZhY2Vib29rLWpzc2RrJTI3JTI5JTI5JTNCJTNDJTJGc2NyaXB0JTNFJTBBJTBBJTNDJTIxLS0lMjBZb3VyJTIwY3VzdG9tZXIlMjBjaGF0JTIwY29kZSUyMC0tJTNFJTBBJTNDZGl2JTIwY2xhc3MlM0QlMjJmYi1jdXN0b21lcmNoYXQlMjIlMEElMjAlMjBhdHRyaWJ1dGlvbiUzRHNldHVwX3Rvb2wlMEElMjAlMjBwYWdlX2lkJTNEJTIyMTgyMTczMTk1OTU1NjUzJTIyJTBBJTIwJTIwbG9nZ2VkX2luX2dyZWV0aW5nJTNEJTIySGklMjElMjBXb3VsZCUyMHlvdSUyMGxpa2UlMjB0byUyMGNvbm5lY3QlMjB3aXRoJTIwYSUyMExhbnRlcm4lMjBBZ2VudCUyMG5vdyUzRiUyMiUwQSUyMCUyMGxvZ2dlZF9vdXRfZ3JlZXRpbmclM0QlMjJIaSUyMSUyMFdvdWxkJTIweW91JTIwbGlrZSUyMHRvJTIwY29ubmVjdCUyMHdpdGglMjBhJTIwTGFudGVybiUyMEFnZW50JTIwbm93JTNGJTIyJTNFJTBBJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column][vc_column width=\"1/2\"][hz-section-title hz_section_title=\"Kannapolis Community News\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][vc_wp_rss items=\"7\" options=\"show_summary,show_date\" url=\"http://www.kannapolisnc.gov/Community/News\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Partners</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://www.hwahomewarranty.com/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"1442\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://geico.widen.net/s/wteghfnoeo\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"http://www.terrywhitesell.com/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"1930\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://ryanivory.excellencebyarc.com/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2188\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://alcova.com/apply?lo=skteam\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n','Lantern Realty and Development - Home','','publish','closed','open','','sample-page','','','2021-12-10 13:39:07','2021-12-10 13:39:07','',0,'http://lantern-realty.com/?page_id=2',0,'page','',0),(1455,1,'2020-12-01 01:48:03','2020-12-01 01:48:03','<p>[vc_section full_width=\"stretch_row\" full_height=\"yes\" content_placement=\"middle\" css_animation=\"fadeIn\" css=\".vc_custom_1535990071877{padding-top: 10% !important;background-image: url(https://lantern-realty.com/wp-content/uploads/2018/08/Lantern_OpenHouse.png?id=56) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row css=\".vc_custom_1534901322962{margin-bottom: 250px !important;padding-right: 20px !important;padding-left: 20px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1534901068460{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 20px !important;padding-left: 20px !important;background-color: rgba(255,255,255,0.76) !important;*background-color: rgb(255,255,255) !important;}\"]</p>\n<h1>Property Search</h1>\n<p>[optima_express_quick_search style=\"twoline\" showPropertyType=\"false\"][/vc_column_text][/vc_column][/vc_row][/vc_section][vc_row content_placement=\"middle\" css=\".vc_custom_1535223457405{padding-top: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"top\" disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_btn title=\"Buy\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fhomes-for-sale-search%2F|title:Home%20Search||\"][vc_column_text css_animation=\"fadeIn\"]Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\'re one click away from discovering your next home![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Sell\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fvaluation-form%2F|title:Sell%20My%20Home||\"][vc_column_text css_animation=\"fadeIn\"]Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it\'s worth. Let us speak with you about selling your property and you\'ll learn why our previous clients love us. Click here to submit a home valuation request.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Contact\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:tel%3A9808582074|title:Call%20Lantern||\"][vc_column_text css_animation=\"fadeIn\"]Looking to speak with an agent now? Click here to contact an agent. We\'re available around the clock to provide you with the very best professional real estate representation.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner][text_with_icons columns=\"three_columns\" style=\"style_one\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-search\" title=\"Buy\" text=\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!\" read_more_text=\"Search Homes\" read_more_link=\"https://lantern-realty.com/homes-for-sale-search/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-home\" title=\"Sell\" text=\"Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.\" read_more_text=\"Submit a Valuation Request\" read_more_link=\"https://lantern-realty.com/valuation-form/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-phone\" title=\"Contact\" text=\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\" read_more_text=\"Contact an Agent\" read_more_link=\"tel:9808582074\"][/text_with_icons][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\"][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Listings</h1>\n<p>[optima_express_gallery_slider height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"pd\" maxResults=\"25\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<h1>Listed this Week</h1>\n<p>[optima_express_gallery_slider id=\"813462\" height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"ds\" maxResults=\"25\"][/vc_column_text][houzez-agents agents_type=\"Carousel\" agent_category=\"front-page\" agent_city=\"\" custom_title=\"Lantern Agents\" custom_subtitle=\"\" columns=\"3\" posts_limit=\"15\" offset=\"\" orderby=\"rand\" order=\"ASC\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\">See what clients are saying about Lantern Agents</h1>\n<p>[/vc_column_text][vc_single_image image=\"276\" img_size=\"medium\" alignment=\"center\" css_animation=\"bounceInLeft\"][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItbGlrZSUyMiUyMHN0eWxlJTNEJTIyYWxpZ24tY29udGVudCUzQSUyMGNlbnRlciUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLWxheW91dCUzRCUyMnN0YW5kYXJkJTIyJTIwZGF0YS1hY3Rpb24lM0QlMjJyZWNvbW1lbmQlMjIlMjBkYXRhLXNpemUlM0QlMjJzbWFsbCUyMiUyMGRhdGEtc2hvdy1mYWNlcyUzRCUyMmZhbHNlJTIyJTIwZGF0YS1zaGFyZSUzRCUyMmZhbHNlJTIyJTNFJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column_inner][vc_column_inner width=\"3/4\"][houzez-testimonials testimonials_type=\"slides\" posts_limit=\"10\" offset=\"\" orderby=\"rand\" order=\"ASC\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Find Homes for Sale in these Communities</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Kannapolis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DKannapolis%26propertyType%3DSFR%26status%3Dactive|title:Kannapolis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Concord\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DConcord%26propertyType%3DSFR%26status%3Dactive|title:Concord||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Landis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DLandis%26propertyType%3DSFR%26status%3Dactive|title:Landis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"China Grove\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DChina%20Grove%26propertyType%3DSFR%26status%3Dactive|title:China%20Grove||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Salisbury\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DSalisbury%26propertyType%3DSFR%26status%3Dactive|title:Salisbury||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Rockwell\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DRockwell%26propertyType%3DSFR%26status%3Dactive|title:Rockwell||\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Charlotte\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCharlotte%26propertyType%3DSFR%26status%3Dactive|title:Charlotte||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Huntersville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DHuntersville%26propertyType%3DSFR%26status%3Dactive|title:Huntersville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Cornelius\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCornelius%26propertyType%3DSFR%26status%3Dactive|title:Cornelius||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mooresville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMooresville%26propertyType%3DSFR%26status%3Dactive|title:Mooresville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mount Pleasant\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMount%20Pleasant%26propertyType%3DSFR%26status%3Dactive|title:Mount%20Pleasant||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Gold Hill\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DGold%20Hill%26propertyType%3DSFR%26status%3Dactive|title:Gold%20Hill||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner][hz-section-title hz_section_title=\"Follow Lantern on Facebook\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][/vc_column_inner][/vc_row_inner][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItcGFnZSUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLXRhYnMlM0QlMjJ0aW1lbGluZSUyMiUyMGRhdGEtd2lkdGglM0QlMjI1MDAlMjIlMjBkYXRhLWhlaWdodCUzRCUyMjEwMDAlMjIlMjBkYXRhLXNtYWxsLWhlYWRlciUzRCUyMnRydWUlMjIlMjBkYXRhLWFkYXB0LWNvbnRhaW5lci13aWR0aCUzRCUyMnRydWUlMjIlMjBkYXRhLWhpZGUtY292ZXIlM0QlMjJmYWxzZSUyMiUyMGRhdGEtc2hvdy1mYWNlcGlsZSUzRCUyMnRydWUlMjIlM0UlM0NibG9ja3F1b3RlJTIwY2l0ZSUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBjbGFzcyUzRCUyMmZiLXhmYm1sLXBhcnNlLWlnbm9yZSUyMiUzRSUzQ2ElMjBocmVmJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZmFjZWJvb2suY29tJTJGbGFudGVybnJlYWx0eSUyMiUzRUxhbnRlcm4lMjBSZWFsdHklMjAlMjZhbXAlM0IlMjBEZXZlbG9wbWVudCUyQyUyMExMQyUzQyUyRmElM0UlM0MlMkZibG9ja3F1b3RlJTNFJTNDJTJGZGl2JTNFJTBBJTBBJTBBJTNDJTIxLS0lMjBMb2FkJTIwRmFjZWJvb2slMjBTREslMjBmb3IlMjBKYXZhU2NyaXB0JTIwLS0lM0UlMEElM0NkaXYlMjBpZCUzRCUyMmZiLXJvb3QlMjIlM0UlM0MlMkZkaXYlM0UlMEElM0NzY3JpcHQlM0UlMjhmdW5jdGlvbiUyOGQlMkMlMjBzJTJDJTIwaWQlMjklMjAlN0IlMEElMjAlMjB2YXIlMjBqcyUyQyUyMGZqcyUyMCUzRCUyMGQuZ2V0RWxlbWVudHNCeVRhZ05hbWUlMjhzJTI5JTVCMCU1RCUzQiUwQSUyMCUyMGlmJTIwJTI4ZC5nZXRFbGVtZW50QnlJZCUyOGlkJTI5JTI5JTIwcmV0dXJuJTNCJTBBJTIwJTIwanMlMjAlM0QlMjBkLmNyZWF0ZUVsZW1lbnQlMjhzJTI5JTNCJTIwanMuaWQlMjAlM0QlMjBpZCUzQiUwQSUyMCUyMGpzLnNyYyUyMCUzRCUyMCUyN2h0dHBzJTNBJTJGJTJGY29ubmVjdC5mYWNlYm9vay5uZXQlMkZlbl9VUyUyRnNkayUyRnhmYm1sLmN1c3RvbWVyY2hhdC5qcyUyM3hmYm1sJTNEMSUyNnZlcnNpb24lM0R2Mi4xMiUyNmF1dG9Mb2dBcHBFdmVudHMlM0QxJTI3JTNCJTBBJTIwJTIwZmpzLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlJTI4anMlMkMlMjBmanMlMjklM0IlMEElN0QlMjhkb2N1bWVudCUyQyUyMCUyN3NjcmlwdCUyNyUyQyUyMCUyN2ZhY2Vib29rLWpzc2RrJTI3JTI5JTI5JTNCJTNDJTJGc2NyaXB0JTNFJTBBJTBBJTNDJTIxLS0lMjBZb3VyJTIwY3VzdG9tZXIlMjBjaGF0JTIwY29kZSUyMC0tJTNFJTBBJTNDZGl2JTIwY2xhc3MlM0QlMjJmYi1jdXN0b21lcmNoYXQlMjIlMEElMjAlMjBhdHRyaWJ1dGlvbiUzRHNldHVwX3Rvb2wlMEElMjAlMjBwYWdlX2lkJTNEJTIyMTgyMTczMTk1OTU1NjUzJTIyJTBBJTIwJTIwbG9nZ2VkX2luX2dyZWV0aW5nJTNEJTIySGklMjElMjBXb3VsZCUyMHlvdSUyMGxpa2UlMjB0byUyMGNvbm5lY3QlMjB3aXRoJTIwYSUyMExhbnRlcm4lMjBBZ2VudCUyMG5vdyUzRiUyMiUwQSUyMCUyMGxvZ2dlZF9vdXRfZ3JlZXRpbmclM0QlMjJIaSUyMSUyMFdvdWxkJTIweW91JTIwbGlrZSUyMHRvJTIwY29ubmVjdCUyMHdpdGglMjBhJTIwTGFudGVybiUyMEFnZW50JTIwbm93JTNGJTIyJTNFJTBBJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column][vc_column width=\"1/2\"][hz-section-title hz_section_title=\"Kannapolis Community News\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][vc_wp_rss items=\"7\" options=\"show_summary,show_date\" url=\"http://www.kannapolisnc.gov/Community/News\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Partners</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://www.hwahomewarranty.com/\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"1442\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://geico.widen.net/s/wteghfnoeo\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"http://www.terrywhitesell.com/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n','Lantern Realty and Development - Home','','inherit','closed','closed','','2-revision-v1','','','2020-12-01 01:48:03','2020-12-01 01:48:03','',2,'https://lantern-realty.com/2-revision-v1/',0,'revision','',0),(3,1,'2018-08-20 00:26:23','2018-08-20 00:26:23','<h2>Who we are</h2>\r\nOur website address is: http://lantern-realty.com.\r\n<h2>What personal data we collect and why we collect it</h2>\r\n<h3>Comments</h3>\r\nWhen 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.\r\n\r\nAn 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.\r\n<h3>Media</h3>\r\nIf 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.\r\n<h3>Contact forms</h3>\r\n<h3>Cookies</h3>\r\nIf 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.\r\n\r\nIf you have an account and you log in to this site, 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.\r\n\r\nWhen 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.\r\n\r\nIf 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.\r\n<h3>Embedded content from other websites</h3>\r\nArticles 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.\r\n\r\nThese 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.\r\n<h3>Analytics</h3>\r\n<h2>Who we share your data with</h2>\r\n<h2>How long we retain your data</h2>\r\nIf 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.\r\n\r\nFor 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.\r\n<h2>What rights you have over your data</h2>\r\nIf 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.\r\n<h2>Where we send your data</h2>\r\nVisitor comments may be checked through an automated spam detection service.\r\n<h2>Your contact information</h2>\r\n<h2>Additional information</h2>\r\n<h3>How we protect your data</h3>\r\n<h3>What data breach procedures we have in place</h3>\r\n<h3>What third parties we receive data from</h3>\r\n<h3>What automated decision making and/or profiling we do with user data</h3>\r\n<h3>Industry regulatory disclosure requirements</h3>','Privacy Policy','','publish','closed','open','','privacy-policy','','','2018-08-25 19:42:13','2018-08-25 19:42:13','',0,'http://lantern-realty.com/?page_id=3',0,'page','',0),(4,1,'2021-06-24 11:32:28','2018-08-20 00:27:59','Home','Home','Home','publish','closed','closed','','home','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/2018/08/20/home/',1,'nav_menu_item','',0),(5,1,'2021-06-24 11:32:28','2018-08-20 00:27:59','Featured Listings','Lantern Properties','Featured Listings','publish','closed','closed','','featured-listings','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/2018/08/20/featured-listings/',2,'nav_menu_item','',0),(6,1,'2021-06-24 11:32:28','2018-08-20 00:27:59','Property Search','Property Search','Property Search','publish','closed','closed','','property-search','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/2018/08/20/property-search/',5,'nav_menu_item','',0),(7,1,'2021-06-24 11:32:28','2018-08-20 00:27:59','Search','Search','Search','publish','closed','closed','','search','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/2018/08/20/search/',6,'nav_menu_item','',0),(206,1,'2021-06-24 11:32:28','2018-08-24 22:10:32','','By Market','','publish','closed','closed','','by-market','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=206',7,'nav_menu_item','',0),(207,1,'2021-06-24 11:32:28','2018-08-24 22:10:32','','Charlotte','','publish','closed','closed','','charlotte','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=207',12,'nav_menu_item','',0),(150,1,'2021-06-24 11:32:28','2018-08-24 18:52:25','','Active Listings','','publish','closed','closed','','active-listings','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=150',3,'nav_menu_item','',0),(151,1,'2021-06-24 11:32:28','2018-08-24 18:52:25','','Recently Sold','','publish','closed','closed','','recently-sold','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=151',4,'nav_menu_item','',0),(14,1,'2021-06-24 11:32:28','2018-08-20 00:27:59','Property Organizer','Property Organizer','Property Organizer','publish','closed','closed','','property-organizer','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/2018/08/20/property-organizer/',14,'nav_menu_item','',0),(15,1,'2021-06-24 11:32:28','2018-08-20 00:27:59','Valuation Request','Valuation Request','Valuation Request','publish','closed','closed','','valuation-request','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/2018/08/20/valuation-request/',21,'nav_menu_item','',0),(16,1,'2021-06-24 11:32:28','2018-08-20 00:27:59','Contact','Contact','Contact','publish','closed','closed','','contact','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/2018/08/20/contact/',30,'nav_menu_item','',0),(320,1,'2018-09-01 21:40:06','2018-09-01 21:40:06','','Wanda_Prince','','inherit','open','closed','','wanda_prince','','','2018-09-01 21:40:06','2018-09-01 21:40:06','',319,'https://lantern-realty.com/wp-content/uploads/2018/09/Wanda_Prince.jpg',0,'attachment','image/jpeg',0),(20,1,'2018-08-20 00:38:57','2018-08-20 00:38:57','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]\nLantern Realty and Development \"[your-subject]\"\n[your-name] <wordpress@lantern-realty.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Lantern Realty and Development (http://lantern-realty.com)\nckeziah127@gmail.com\nReply-To: [your-email]\n\n0\n0\n\nLantern Realty and Development \"[your-subject]\"\nLantern Realty and Development <wordpress@lantern-realty.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Lantern Realty and Development (http://lantern-realty.com)\n[your-email]\nReply-To: ckeziah127@gmail.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2018-08-20 00:38:57','2018-08-20 00:38:57','',0,'http://lantern-realty.com/?post_type=wpcf7_contact_form&p=20',0,'wpcf7_contact_form','',0),(21,1,'2018-08-20 00:47:15','2018-08-20 00:47:15','','Lantern Realty and Development','','inherit','open','closed','','lantern_3_rev_logo','','','2018-08-20 00:48:50','2018-08-20 00:48:50','',0,'http://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO.jpg',0,'attachment','image/jpeg',0),(22,1,'2018-08-20 00:50:13','2018-08-20 00:50:13','','Facebook Logo','','inherit','open','closed','','facebook-logo','','','2018-08-20 00:50:13','2018-08-20 00:50:13','',0,'http://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg',0,'attachment','image/jpeg',0),(28,1,'2018-08-20 00:57:41','2018-08-20 00:57:41','http://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg','cropped-Facebook-Logo.jpg','','inherit','open','closed','','cropped-facebook-logo-jpg','','','2018-08-20 00:57:41','2018-08-20 00:57:41','',0,'http://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg',0,'attachment','image/jpeg',0),(400,1,'2019-01-13 22:23:54','2019-01-13 22:23:54','','Lindsey McCauley','','publish','closed','closed','','lindsey-mccauley','','','2020-09-19 19:40:09','2020-09-19 19:40:09','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=400',69,'houzez_agent','',0),(401,1,'2019-01-13 22:23:37','2019-01-13 22:23:37','','Lindsey_McCauley','','inherit','open','closed','','lindsey_mccauley','','','2019-01-13 22:23:37','2019-01-13 22:23:37','',400,'https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley.jpg',0,'attachment','image/jpeg',0),(37,1,'2018-08-21 23:46:02','2018-08-21 23:46:02','Welcome! I appreciate you taking the time to see what I am all about. As you already know, my name is Deana Keziah Petty and I\'m a licensed Realtor withLantern Realty &amp; Development. Born and raised in Cabarrus County, I am the expert in this market and absolutely love working in it. Whether you are looking to purchase land, a new home, commercial or vacation property, rent a home or even lease a building for a business, I have experience in just about every different type of a real estate transaction that there is. I enjoy making numbers \"work\", so lets discuss your needs and find the property that fits your life. I also have extensive experience in assisting clients with challenging financial obstacles. Please, don\'t count yourself out of qualifying to make a purchase until you have spoken with me. Outside of helping others with their real estate needs, I am a wife to my high school sweetheart and a mommy to our son and daughter.','Deana Petty','','publish','closed','closed','','deana-petty','','','2020-10-18 00:09:36','2020-10-18 00:09:36','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=37',1,'houzez_agent','',0),(38,1,'2018-08-21 23:45:46','2018-08-21 23:45:46','','Deana Petty','','inherit','open','closed','','deanaagent','','','2018-08-21 23:45:55','2018-08-21 23:45:55','',37,'http://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT.jpg',0,'attachment','image/jpeg',0),(319,1,'2018-09-01 21:40:34','2018-09-01 21:40:34','','Wanda Prince','','trash','closed','closed','','wanda-prince__trashed','','','2020-09-19 19:28:29','2020-09-19 19:28:29','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=319',47,'houzez_agent','',0),(45,1,'2018-08-22 00:29:55','2018-08-22 00:29:55','','Lantern - Kannapolis','','publish','closed','closed','','lantern-realty-and-development','','','2020-10-18 19:27:22','2020-10-18 19:27:22','',0,'http://lantern-realty.com/?post_type=houzez_agency&#038;p=45',0,'houzez_agency','',0),(1610,1,'2021-02-24 00:27:05','2021-02-24 00:27:05','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:27:05','2021-02-24 00:27:05','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(56,1,'2018-08-22 00:50:37','2018-08-22 00:50:37','','Lantern_OpenHouse','','inherit','open','closed','','lantern_openhouse','','','2018-08-22 00:50:37','2018-08-22 00:50:37','',2,'http://lantern-realty.com/wp-content/uploads/2018/08/Lantern_OpenHouse.png',0,'attachment','image/png',0),(1609,1,'2021-02-24 00:24:59','2021-02-24 00:24:59','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:24:59','2021-02-24 00:24:59','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1608,1,'2021-02-24 00:24:59','2021-02-24 00:24:59','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:24:59','2021-02-24 00:24:59','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1607,1,'2021-02-24 00:24:59','2021-02-24 00:24:59','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:24:59','2021-02-24 00:24:59','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1606,1,'2021-02-24 00:24:43','2021-02-24 00:24:43','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:24:43','2021-02-24 00:24:43','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1605,1,'2021-02-24 00:24:43','2021-02-24 00:24:43','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:24:43','2021-02-24 00:24:43','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1604,1,'2021-02-24 00:24:43','2021-02-24 00:24:43','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:24:43','2021-02-24 00:24:43','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1620,1,'2021-02-24 00:48:12','2021-02-24 00:48:12','<h2>Lantern Realty  - Asheville Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										23 Mill Stone Drive, Asheville NC 28803</li>\n 	<li>\n					<a href=\"tel:8287720220\">\n(828) 772-0220\n</a></li>\n 	<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">\nklawingrealtor@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:8287720220\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:8287720220\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Asheville Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA North Carolinian for the last 18 years, I am originally from New Jersey....\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:48:12','2021-02-24 00:48:12','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1619,1,'2021-02-24 00:47:18','2021-02-24 00:47:18','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:47:18','2021-02-24 00:47:18','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1615,1,'2021-02-24 00:27:38','2021-02-24 00:27:38','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:27:38','2021-02-24 00:27:38','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1603,1,'2021-02-24 00:24:28','2021-02-24 00:24:28','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:24:28','2021-02-24 00:24:28','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1602,1,'2021-02-24 00:24:27','2021-02-24 00:24:27','<h2>Lantern Realty  - Mooresville Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\">								</a>\n<ul>\n 	<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117</li>\n 	<li>\n					<a href=\"tel:7049809379\">\n(704) 980-9379\n</a></li>\n 	<li>\n					<a href=\"mailto:LanternRealtyMooresville@gmail.com\">\nLanternRealtyMooresville@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:7042980087\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:7042980087\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Mooresville Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:24:27','2021-02-24 00:24:27','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1601,1,'2021-02-24 00:24:26','2021-02-24 00:24:26','<h2>Lantern Realty  - Mooresville Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\">								</a>\n<ul>\n 	<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117</li>\n 	<li>\n					<a href=\"tel:7049809379\">\n(704) 980-9379\n</a></li>\n 	<li>\n					<a href=\"mailto:LanternRealtyMooresville@gmail.com\">\nLanternRealtyMooresville@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:7042980087\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:7042980087\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Mooresville Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:24:26','2021-02-24 00:24:26','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1600,1,'2021-02-24 00:21:52','2021-02-24 00:21:52','<h2>Lantern Realty  - Mooresville Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\">								</a>\n<ul>\n 	<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117</li>\n 	<li>\n					<a href=\"tel:7049809379\">\n(704) 980-9379\n</a></li>\n 	<li>\n					<a href=\"mailto:LanternRealtyMooresville@gmail.com\">\nLanternRealtyMooresville@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:7042980087\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:7042980087\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Mooresville Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:21:52','2021-02-24 00:21:52','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(94,1,'2018-08-24 16:59:02','2018-08-24 16:59:02','[vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\">Lantern Featured Listings</h1>\r\n[optima_express_featured sortBy=\"ds\" displayType=\"grid\" resultsPerPage=\"27\" header=\"false\" includeMap=\"true\" status=\"active\"][/vc_column_text][/vc_column][/vc_row]','Lantern Listings','','publish','closed','closed','','lantern-listings','','','2018-08-24 17:04:15','2018-08-24 17:04:15','',0,'http://lantern-realty.com/?page_id=94',0,'page','',0),(1597,0,'2021-02-23 05:08:28','2021-02-23 05:08:28','','Pam Lambert-6','','inherit','','closed','','pam-lambert-6','','','2021-02-23 05:08:28','2021-02-23 05:08:28','',0,'https://lantern-realty.com/pam-lambert-6/',0,'attachment','image/jpeg',0),(1598,1,'2021-02-24 00:18:26','2021-02-24 00:18:26','','Lantern - Asheville','','publish','closed','closed','','lantern-asheville','','','2021-02-24 00:48:28','2021-02-24 00:48:28','',0,'https://lantern-realty.com/?post_type=houzez_agency&#038;p=1598',0,'houzez_agency','',0),(1599,1,'2021-02-24 00:21:52','2021-02-24 00:21:52','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','publish','closed','closed','','lantern-asheville','','','2021-02-24 01:39:45','2021-02-24 01:39:45','',1279,'https://lantern-realty.com/?page_id=1599',0,'page','',0),(101,1,'2018-08-24 17:11:34','2018-08-24 17:11:34','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Principal Broker - Tennessee                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/03/VideoCapture_20210526-184249-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brianne is a life-long resident of Rowan County and resides in China Grove. An... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Buying and selling real estate can be quite stressful. A Realtor’s® job is to... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lexington Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 105 N State Street -</p><p style=\"text-align: center;\">Lexington, North Carolina 27293</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Tennessee Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 416 E. Elk Avenue -</p><p style=\"text-align: center;\">Elizabethton, Tennessee 37643</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Principal Broker - Tennessee                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Raleigh Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 4909 Unicon Drive, Ste. 105 -</p>\n<p style=\"text-align: center;\">Wake Forest, North Carolina 27587</p>		\n        <!--start agents module-->\n                            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','publish','closed','closed','','the-lantern-team','','','2022-06-24 00:21:28','2022-06-24 00:21:28','',0,'http://lantern-realty.com/?page_id=101',0,'page','',0),(448,1,'2019-02-08 19:27:00','2019-02-08 19:27:00','','Terry Whitesell','','publish','closed','closed','','terry-whitesell','','','2019-02-08 19:44:46','2019-02-08 19:44:46','',0,'https://lantern-realty.com/?post_type=houzez_partner&#038;p=448',0,'houzez_partner','',0),(449,1,'2019-02-08 19:26:42','2019-02-08 19:26:42','','PARTNER - Terry Whitesell','','inherit','open','closed','','partner-terry-whitesell','','','2019-02-08 19:26:42','2019-02-08 19:26:42','',448,'https://lantern-realty.com/wp-content/uploads/2019/02/PARTNER-Terry-Whitesell.jpg',0,'attachment','image/jpeg',0),(105,1,'2018-08-24 17:19:49','2018-08-24 17:19:49','My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have been in Real Estate since 2007. I am a Real Estate Specialist in Rowan, Cabarrus, Iredell and surrounding counties. I have lived in this area for over 40 years, so I have been a part of all the changes that have taken place over the years. I am actively on the Kannapolis planning/zoning board. I have an excellent working knowledge of home values, recent sales comps, and the buyer profile. I offer full service. I look forward to helping you with all your Real Estate needs. Specialties: Buyers Agent, Listing Agent, Foreclosures, Short Sales, First Time Home Buyers, New Construction, Relocation, VA purchases','Paula Severt','','publish','closed','closed','','paula-severt','','','2020-09-19 20:32:41','2020-09-19 20:32:41','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=105',3,'houzez_agent','',0),(106,1,'2018-08-24 17:19:25','2018-08-24 17:19:25','','Paula_Severt_1','','inherit','open','closed','','paula_severt_1','','','2018-08-24 17:19:25','2018-08-24 17:19:25','',105,'http://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1.jpg',0,'attachment','image/jpeg',0),(2268,1,'2022-02-18 01:41:50','2022-02-18 01:41:50','<div>\n<div>\n<div>\n<div>\n<div>Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and UNC Charlotte. In 2005, Annie started teaching at Jay M.Robinson High School where she continues to be the director of the Theatre program.  In addition to her love of teaching, the loves of Annie’s life are her children, Traton and Kylie, future step-son, Owen, and fiancé, Jason Kamp.  In 2016, Annie decided to embark on a new endeavor- her real estate career.  “People may not realize that Real Estate and Theatre have a lot in common.  Just like a theatre production, every real estate transaction has it’s own unique set of attributes and we get to collaborate with others to accomplish the goal.”  Annie loves working with families to help make the home buying and selling journey a success!</div>\n</div>\n</div>\n</div>\n</div>','Annie Boger Kamp','','inherit','closed','closed','','111-revision-v1','','','2022-02-18 01:41:50','2022-02-18 01:41:50','',111,'https://lantern-realty.com/?p=2268',0,'revision','',0),(111,1,'2018-08-24 17:31:37','2018-08-24 17:31:37','<div>\n<div>\n<div>\n<div>\n<div>Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and UNC Charlotte. In 2005, Annie started teaching at Jay M.Robinson High School where she continues to be the director of the Theatre program.  In addition to her love of teaching, the loves of Annie’s life are her children, Traton and Kylie, future step-son, Owen, and fiancé, Jason Kamp.  In 2016, Annie decided to embark on a new endeavor- her real estate career.  “People may not realize that Real Estate and Theatre have a lot in common.  Just like a theatre production, every real estate transaction has it’s own unique set of attributes and we get to collaborate with others to accomplish the goal.”  Annie loves working with families to help make the home buying and selling journey a success!</div>\n</div>\n</div>\n</div>\n</div>','Annie Boger Kamp','','publish','closed','closed','','annie-boger','','','2022-02-18 01:41:56','2022-02-18 01:41:56','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=111',13,'houzez_agent','',0),(112,1,'2018-08-24 17:31:27','2018-08-24 17:31:27','','Annie_Boger','','inherit','open','closed','','annie_boger','','','2018-08-24 17:31:27','2018-08-24 17:31:27','',111,'http://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg',0,'attachment','image/jpeg',0),(1595,6,'2021-02-22 15:06:06','2021-02-22 15:06:06','<div dir=\"ltr\">See below...<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: KINDLE - Marketing<br>Time: Feb 23, 2021 10:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/81118139845?pwd=ODZXczF1M0NDZmZjSzBmcUxDQVdtZz09\">https://us02web.zoom.us/j/81118139845?pwd=ODZXczF1M0NDZmZjSzBmcUxDQVdtZz09</a><br><br>Meeting ID: 811 1813 9845<br>Passcode: 836235<br>One tap mobile<br>+19292056099,,81118139845#,,,,*836235# US (New York)<br>+13017158592,,81118139845#,,,,*836235# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 811 1813 9845<br>Passcode: 836235<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kbP3UXAmlM\">https://us02web.zoom.us/u/kbP3UXAmlM</a><br><br><div><br></div>','Kindle Class - Marketing','','publish','closed','open','','kindle-class-marketing','','','2021-02-22 15:06:06','2021-02-22 15:06:06','',0,'https://lantern-realty.com/?p=1595',0,'post','',0),(1593,0,'2021-02-18 17:52:43','2021-02-18 17:52:43','','KW6783106_02','','inherit','','closed','','kw6783106_02','','','2021-02-18 17:52:43','2021-02-18 17:52:43','',0,'https://lantern-realty.com/kw6783106_02/',0,'attachment','image/jpeg',0),(114,1,'2018-08-24 17:38:32','2018-08-24 17:38:32','My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development. I have been in real estate for 4+ years and am licensed in both NC and SC. I am also GRI certified and have my Senior Real Estate Specialist certification. Real estate investing is my true passion. My goal is to help increase the value of homes in neighborhoods we invest in while making a good house affordable to as many potential home owners as possible. I am a lifelong resident of Kannapolis and currently serve on the Kannapolis Planning Zoning Board. I was raised in a very vibrant Kannapolis during the prosperous years of Cannon Mills. I’m excited to raise my kids in a new era of prosperity for Kannapolis, and be a small part of its rebirth. Last year I helped over 30 families achieve their real estate goals. Let us help me achieve yours in 2018.','Chris Puckett','','publish','closed','closed','','chris-puckett','','','2020-09-19 20:32:36','2020-09-19 20:32:36','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=114',2,'houzez_agent','',0),(120,1,'2018-08-24 17:56:50','2018-08-24 17:56:50','Raised in China Grove, NC, Krysta graduated from South Rowan High School and has lived in the greater Charlotte area for the majority of her life. After years of dreaming, Krysta obtained her North Carolina real estate license in 2017. She then transitioned to a full time career as a North Carolina Real Estate Broker. Krysta has a passion to walk sellers and buyers through the transition of selling or buying real estate. Krysta and her husband, Adam, have a son named Parker. They enjoy the outdoors, traveling, and spending time with family and friends. Give Krysta a call today with all of your real estate needs.','Krysta Kemp','','trash','closed','closed','','krysta-kemp__trashed','','','2020-09-19 19:43:28','2020-09-19 19:43:28','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=120',43,'houzez_agent','',0),(1590,1,'2021-02-18 14:24:51','2021-02-18 14:24:51','','rick_wilson','','inherit','','closed','','rick_wilson','','','2021-02-18 14:24:51','2021-02-18 14:24:51','',853,'https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg',0,'attachment','image/jpeg',0),(1591,1,'2021-02-18 14:29:15','2021-02-18 14:29:15','<!-- wp:paragraph -->\n<p>My name is Brenda Bingham and I have lived in the Concord area since 2007. I was born and raised in Wyoming, and after moving around the country my family and I have decided that the NC climate is the one for us. I have been a realtor since my children graduated high school, having been a stay-at-home mom for years. I discovered all of the extra time I had on my hands was pretty boring. Helping people is something I enjoy doing so I thought that real estate would be a good choice for me. It was. I enjoy meeting new people, making new friends, and hearing a good story (anything about dogs always catches my attention.) Being able to assist these new friends through a major step in their life is a bonus. I believe it\'s my duty to help guide my clients through the process and also educate them. I do this through honesty, integrity, communication, and the desire to help.</p>\n<!-- /wp:paragraph -->','Brenda Bingham','','inherit','closed','closed','','1520-revision-v1','','','2021-02-18 14:29:15','2021-02-18 14:29:15','',1520,'https://lantern-realty.com/1520-revision-v1/',0,'revision','',0),(119,1,'2018-08-24 17:43:08','2018-08-24 17:43:08','','Chris Puckett','','inherit','open','closed','','chris-puckett-2','','','2018-08-24 17:43:08','2018-08-24 17:43:08','',114,'http://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett.jpg',0,'attachment','image/jpeg',0),(121,1,'2018-08-24 17:56:14','2018-08-24 17:56:14','','Krysta_Kemp','','inherit','open','closed','','krysta_kemp','','','2018-08-24 17:56:14','2018-08-24 17:56:14','',120,'http://lantern-realty.com/wp-content/uploads/2018/08/Krysta_Kemp.jpg',0,'attachment','image/jpeg',0),(123,1,'2018-08-24 18:08:10','2018-08-24 18:08:10','','Woody Brown','','trash','closed','closed','','woody-brown__trashed','','','2020-09-19 19:19:01','2020-09-19 19:19:01','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=123',14,'houzez_agent','',0),(124,1,'2018-08-24 18:07:52','2018-08-24 18:07:52','','Woody_Brown','','inherit','open','closed','','woody_brown','','','2018-08-24 18:07:52','2018-08-24 18:07:52','',123,'http://lantern-realty.com/wp-content/uploads/2018/08/Woody_Brown.jpg',0,'attachment','image/jpeg',0),(126,1,'2018-08-24 18:09:04','2018-08-24 18:09:04','','Elizabeth Brown','','publish','closed','closed','','elizabeth-brown','','','2020-09-19 19:18:39','2020-09-19 19:18:39','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=126',15,'houzez_agent','',0),(127,1,'2018-08-24 18:08:54','2018-08-24 18:08:54','','Elizabeth_Brown','','inherit','open','closed','','elizabeth_brown','','','2018-08-24 18:08:54','2018-08-24 18:08:54','',126,'http://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown.jpg',0,'attachment','image/jpeg',0),(129,1,'2018-08-24 18:10:02','2018-08-24 18:10:02','My name is Jennifer Wood. I was born and raised in Kannapolis, NC. With being in the Kannapolis area my whole life, I understand the towns, schools and everything the area has to offer. I have many years experience in customer service and truly enjoy working with people. I would enjoy the opportunity to help buyers and seller in fulfilling all of their real estate needs.','Jennifer Wood','','trash','closed','closed','','jennifer-wood__trashed','','','2020-09-19 19:29:39','2020-09-19 19:29:39','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=129',60,'houzez_agent','',0),(130,1,'2018-08-24 18:09:53','2018-08-24 18:09:53','','Jennifer_Wood','','inherit','open','closed','','jennifer_wood','','','2018-08-24 18:09:53','2018-08-24 18:09:53','',129,'http://lantern-realty.com/wp-content/uploads/2018/08/Jennifer_Wood.jpg',0,'attachment','image/jpeg',0),(132,1,'2018-08-24 18:10:58','2018-08-24 18:10:58','','Grant Stevens','','trash','closed','closed','','grant-stevens__trashed','','','2020-09-19 19:29:07','2020-09-19 19:29:07','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=132',53,'houzez_agent','',0),(133,1,'2018-08-24 18:10:48','2018-08-24 18:10:48','','Grant Stevens','','inherit','open','closed','','grant-stevens','','','2018-08-24 18:10:48','2018-08-24 18:10:48','',132,'http://lantern-realty.com/wp-content/uploads/2018/08/Grant-Stevens.jpg',0,'attachment','image/jpeg',0),(1589,1,'2021-02-18 14:24:37','2021-02-18 14:24:37','<!-- wp:paragraph -->\n<p>Richard, originally from Florida, has made North Carolina his permanent home. However, he is no stranger to the area. He and his family have owned property, farmed land and have had business interest in NC for over 100 years. He began his career in real estate 19 years ago and has been recognized as an expert in the industry. His prior experience, as a financial<br>consultant, helped him develop exceptional analytical techniques, an in depth knowledge of financial matters, strong negotiation skills and professionalism that have proven invaluable to his clients. Besides being a Realtor, he still maintains his Chartered Financial Consultant designation, as well as holding a degree in Marketing. This education, training and<br>background supports his mission to provide the higest level of servce, and to exceed expectations. His purpose is to help others find that place called home. For Richard, real estate is more than a job. It\'s his calling. Whether you are a buyer or seller, you can have faith in Richard to be a trusted expert adviser who focuses on your wants, needs and the fulfillment of your dreams.</p>\n<!-- /wp:paragraph -->','Rick Wilson','','inherit','closed','closed','','853-revision-v1','','','2021-02-18 14:24:37','2021-02-18 14:24:37','',853,'https://lantern-realty.com/853-revision-v1/',0,'revision','',0),(135,1,'2018-08-24 18:11:42','2018-08-24 18:11:42','','Amy Evans','','publish','closed','closed','','amy-evans','','','2020-09-19 19:25:28','2020-09-19 19:25:28','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=135',34,'houzez_agent','',0),(136,1,'2018-08-24 18:11:35','2018-08-24 18:11:35','','Amy Evans','','inherit','open','closed','','amy-evans','','','2018-08-24 18:11:35','2018-08-24 18:11:35','',135,'http://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans.jpg',0,'attachment','image/jpeg',0),(138,1,'2018-08-24 18:12:32','2018-08-24 18:12:32','Born and raised in the once small town of Harrisburg, this father of two is a true Cabarrus County local! As a Central Cabarrus graduate with the class of 06’ Kyle went on to obtain a bachelor’s degree from UNC Charlotte. Kyle hasn’t moved far from his original home place and enjoys raising his sons in the same town in which he grew up. Needless to say he knows his way around the area from the South Carolina border through the Shores of Lake Norman and High Rock Lake. Kyle and his wife, Krista, purchased their first home in 2014 and he was instantly hooked on real estate. He became a licensed real broker just a couple years later and is ready to help you reach your goals.\r\n<ul>\r\n 	<li>Member of the Nation Association of Realtors</li>\r\n 	<li>Member of the Charlotte Regional Realtors Association</li>\r\n 	<li>Member of the Carolinas Multiple Listing Service</li>\r\n 	<li>Works with buyers and sellers</li>\r\n 	<li>B.S. Mechanical Engineering Technology</li>\r\n</ul>','Kyle Runyon','','trash','closed','closed','','kyle-runyon__trashed','','','2020-09-19 19:28:50','2020-09-19 19:28:50','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=138',50,'houzez_agent','',0),(139,1,'2018-08-24 18:12:26','2018-08-24 18:12:26','','Kyle_Runyon','','inherit','open','closed','','kyle_runyon','','','2018-08-24 18:12:26','2018-08-24 18:12:26','',138,'http://lantern-realty.com/wp-content/uploads/2018/08/Kyle_Runyon.jpg',0,'attachment','image/jpeg',0),(141,1,'2018-08-24 18:13:22','2018-08-24 18:13:22','','Ethan Stillinger','','publish','closed','closed','','ethan-stillinger','','','2020-09-19 20:11:14','2020-09-19 20:11:14','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=141',96,'houzez_agent','',0),(142,1,'2018-08-24 18:13:14','2018-08-24 18:13:14','','Ethan_Stillinger','','inherit','open','closed','','ethan_stillinger','','','2018-08-24 18:13:14','2018-08-24 18:13:14','',141,'http://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger.jpg',0,'attachment','image/jpeg',0),(144,1,'2018-08-24 18:14:13','2018-08-24 18:14:13','','Wesley Cooke','','trash','closed','closed','','wesley-cook__trashed','','','2020-09-19 19:21:53','2020-09-19 19:21:53','',0,'http://lantern-realty.com/?post_type=houzez_agent&#038;p=144',21,'houzez_agent','',0),(145,1,'2018-08-24 18:14:09','2018-08-24 18:14:09','','Wesley_Cook','','inherit','open','closed','','wesley_cook','','','2018-08-24 18:14:09','2018-08-24 18:14:09','',144,'http://lantern-realty.com/wp-content/uploads/2018/08/Wesley_Cook.jpg',0,'attachment','image/jpeg',0),(467,1,'2019-05-30 01:21:10','2019-05-30 01:21:10','','Farm Bureau','','inherit','open','closed','','farm-bureau','','','2019-05-30 01:21:10','2019-05-30 01:21:10','',0,'https://lantern-realty.com/wp-content/uploads/2019/05/Farm-Bureau.png',0,'attachment','image/png',0),(1585,1,'2021-02-18 14:14:05','2021-02-18 14:14:05','Courtney is a native North Carolinian and long time resident of Kannapolis. She is a recent\nempty nester with both of her boys attending college. Those who know Courtney best can\nattest to her love of animals - you will often see her with her Labrador Retriever Molly in tow.\nHelping you find your dream home is her passion - let Courtney “light your way home”.','Courtney Hedrick','','inherit','closed','closed','','377-revision-v1','','','2021-02-18 14:14:05','2021-02-18 14:14:05','',377,'https://lantern-realty.com/377-revision-v1/',0,'revision','',0),(1586,1,'2021-02-18 14:14:22','2021-02-18 14:14:22','','Will Hedrick','','inherit','closed','closed','','608-revision-v1','','','2021-02-18 14:14:22','2021-02-18 14:14:22','',608,'https://lantern-realty.com/608-revision-v1/',0,'revision','',0),(1587,1,'2021-02-18 14:14:44','2021-02-18 14:14:44','I am a local having grown up in Concord leaving only for a 20-year military mission with my husband, Brent, to Anchorage, Alaska. Moved back to the area to be closer to family. Have raised two wonderful children, Courtney and Parker. Devoted to God and enjoy singing in my church choir and Praise Team. I am professional, committed and eager in assisting my clients with their best interest in mind. Call me and let me gain your trust and \"light your way home\".\n\nYour Property = My Priority','Cindy Widenhouse','','inherit','closed','closed','','373-revision-v1','','','2021-02-18 14:14:44','2021-02-18 14:14:44','',373,'https://lantern-realty.com/373-revision-v1/',0,'revision','',0),(1588,1,'2021-02-18 14:16:54','2021-02-18 14:16:54','','Lisa Pricher','','inherit','closed','closed','','487-revision-v1','','','2021-02-18 14:16:54','2021-02-18 14:16:54','',487,'https://lantern-realty.com/487-revision-v1/',0,'revision','',0),(149,1,'2021-06-24 11:32:28','2018-08-24 18:49:32',' ','','','publish','closed','closed','','149','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=149',31,'nav_menu_item','',0),(152,1,'2018-08-24 18:54:23','2018-08-24 18:54:23','[vc_row][vc_column][vc_column_text][optima_express_featured sortBy=\"ds\" displayType=\"grid\" resultsPerPage=\"27\" header=\"false\" includeMap=\"true\" status=\"sold\"][/vc_column_text][/vc_column][/vc_row]','Recently Sold','','publish','closed','closed','','recently-sold','','','2018-09-02 19:33:48','2018-09-02 19:33:48','',0,'http://lantern-realty.com/?page_id=152',0,'page','',0),(1658,6,'2021-02-26 16:06:33','2021-02-26 16:06:33','<div dir=\"ltr\">Good Morning, hope you all had a great week.  Just a few notes as we head into the weekend. <div><br></div><div>- CCAR will not be offering free CE/GenUp classes until September.  So if you are waiting to take yours, go ahead and get them done.  </div><div>-  Attached is an updated Education calendar for March.  We have added some really good classes.  If you have recommendations for classes please let me know.</div><div>- Dont forget our team meeting this coming Wednesday at 11 on Zoom.  Terry Whitesell will be speaking regarding VA loans and mobile homes.  We are also scheduled to have a representative from PrimeStreet with us to discuss PrimeStreets lead gen platform.  </div><div>- Please also keep in mind if you have a COMING SOON listing and how it needs to be properly handled to avoid getting in hot water with the Commission or Canopy.  Make sure you have the Coming Soon agreement signed by your BIC and your listing agreement properly filled out.  Canopy is really bearing down on Coming Soons that immediately go into Active status then to UCS status.  There is nothing wrong with this, but it does raise  a red flag for Canopy.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/LRD-Roster_022521.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> LRD-Roster_022521.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/2021-Educational-Calendar-2.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-9','','','2021-02-26 16:06:33','2021-02-26 16:06:33','',0,'https://lantern-realty.com/?p=1658',0,'post','',0),(1584,1,'2021-02-18 14:12:20','2021-02-18 14:12:20','','April Bird','','inherit','closed','closed','','565-revision-v1','','','2021-02-18 14:12:20','2021-02-18 14:12:20','',565,'https://lantern-realty.com/565-revision-v1/',0,'revision','',0),(156,1,'2021-06-24 11:32:28','2018-08-24 19:24:56','','Buyers','','publish','closed','closed','','buyers','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=156',13,'nav_menu_item','',0),(157,1,'2021-06-24 11:32:28','2018-08-24 19:24:56','','Sellers','','publish','closed','closed','','sellers','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=157',20,'nav_menu_item','',0),(1736,1,'2021-04-14 00:31:16','2021-04-14 00:31:16','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2021-04-14 00:31:16','2021-04-14 00:31:16','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(387,1,'2018-11-02 19:32:59','2018-11-02 19:32:59','','Lisa_Crowder','','inherit','open','closed','','lisa_crowder','','','2018-11-02 19:32:59','2018-11-02 19:32:59','',0,'https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg',0,'attachment','image/jpeg',0),(393,1,'2019-01-04 23:39:54','2019-01-04 23:39:54','As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity to work with\nsuch an awesome team at Lantern Realty &amp;amp; Development. As I have already witnessed a lot of changes\nand growth in our area over the past 40+ years, I am looking forward to what is in store for our\ncommunity and the citizens within it.\nAs your realtor, I am excited to be a part of helping you accomplish your goals in buying and/or selling\nyour home or property. One of my goals as a realtor is to help others find solutions to their housing\nneeds. As Zig Ziglar stated, “You can get everything in life you want if you will just help enough other\npeople get what they want.” With honesty and integrity, we can all succeed. I look forward to working\nwith you in the future.','Lynnette Gearing','','publish','closed','closed','','lynnette-gearing','','','2020-09-19 19:31:34','2020-09-19 19:31:34','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=393',41,'houzez_agent','',0),(394,1,'2019-01-04 23:37:56','2019-01-04 23:37:56','','Lynnette Gearing','','inherit','open','closed','','lynnette-gearing','','','2019-01-04 23:37:56','2019-01-04 23:37:56','',393,'https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing.jpg',0,'attachment','image/jpeg',0),(166,1,'2021-06-24 11:32:28','2018-08-24 20:26:49','','Saved Searches','','publish','closed','closed','','saved-searches','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=166',15,'nav_menu_item','',0),(167,1,'2021-06-24 11:32:28','2018-08-24 20:26:49','','Saved Listings','','publish','closed','closed','','saved-listings','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=167',16,'nav_menu_item','',0),(172,1,'2018-08-24 21:05:15','2018-08-24 21:05:15','','Lantern_HiRes','','inherit','open','closed','','lantern_3_rev_logo-2','','','2018-08-24 21:06:35','2018-08-24 21:06:35','',101,'http://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1.jpg',0,'attachment','image/jpeg',0),(1582,6,'2021-02-17 22:28:05','2021-02-17 22:28:05','<div dir=\"ltr\">See invite below...<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Helping Your Client Buy Land<br>Time: Feb 18, 2021 01:00 PM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/83387879516?pwd=K29Mczg4aWp2RlFmWEQraFpUWGJKZz09\">https://us02web.zoom.us/j/83387879516?pwd=K29Mczg4aWp2RlFmWEQraFpUWGJKZz09</a><br><br>Meeting ID: 833 8787 9516<br>Passcode: 858471<br>One tap mobile<br>+13126266799,,83387879516#,,,,*858471# US (Chicago)<br>+19292056099,,83387879516#,,,,*858471# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 833 8787 9516<br>Passcode: 858471<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kbushBoTkX\">https://us02web.zoom.us/u/kbushBoTkX</a><br><br><div><br></div>','Class - Thur. 2/18 @ 1pm - How to Help Your Client Buy Land','','publish','closed','open','','class-thur-2-18-1pm-how-to-help-your-client-buy-land','','','2021-02-17 22:28:05','2021-02-17 22:28:05','',0,'https://lantern-realty.com/?p=1582',0,'post','',0),(1579,6,'2021-02-17 13:46:06','2021-02-17 13:46:06','<div dir=\"ltr\">Good Morning All,  I recently received the attached slides from Canopy regarding changes to the NAR Code of Ethics and Fair Housing.  <div><br></div><div>As we move forward in this ever diversified world, we need to be aware of our message that we put forward on a daily basis.  Hopefully these two presentations will clarify any ambiguity for you.  </div><div><br></div><div>Here is a link to a presentation recently given called \"What You Say Can Be Used Against You\" that may prove helpful as well. </div><div><br></div><div> <a href=\"https://www.youtube.com/watch?v=z03iPNs_Y-4&amp;feature=youtu.be\">https://www.youtube.com/watch?v=z03iPNs_Y-4&amp;feature=youtu.be</a></div><div><br></div><div>Thanks again for all you do!<br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Fair-Housing-slides-Canopy-MLS.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/pdf-32.png\' alt=\'pdf icon\' /> Fair-Housing-slides-Canopy-MLS.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Professional-Standards-Changes-2020.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/pdf-32.png\' alt=\'pdf icon\' /> Professional-Standards-Changes-2020.pdf</a><br /></div>','Fair Housing &amp; Professional Standards','','publish','closed','open','','fair-housing-professional-standards','','','2021-02-17 13:46:06','2021-02-17 13:46:06','',0,'https://lantern-realty.com/?p=1579',0,'post','',0),(1580,6,'2021-02-17 13:46:05','2021-02-17 13:46:05','','Fair-Housing-slides-Canopy-MLS.pdf','','inherit','closed','closed','','fair-housing-slides-canopy-mls','','','2021-02-17 13:46:05','2021-02-17 13:46:05','',1579,'https://lantern-realty.com/wp-content/uploads/2021/02/Fair-Housing-slides-Canopy-MLS.pdf',0,'attachment','application/pdf',0),(1581,6,'2021-02-17 13:46:06','2021-02-17 13:46:06','','Professional-Standards-Changes-2020.pdf','','inherit','closed','closed','','professional-standards-changes-2020','','','2021-02-17 13:46:06','2021-02-17 13:46:06','',1579,'https://lantern-realty.com/wp-content/uploads/2021/02/Professional-Standards-Changes-2020.pdf',0,'attachment','application/pdf',0),(1576,6,'2021-02-16 13:36:19','2021-02-16 13:36:19','<div dir=\"ltr\"> Here is the zoom invite.<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: FORMS Class<br>Time: Feb 16, 2021 01:00 PM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/87984911866?pwd=OVY5Y1dRc1JxQmdFTXN4ellpdkNHUT09\">https://us02web.zoom.us/j/87984911866?pwd=OVY5Y1dRc1JxQmdFTXN4ellpdkNHUT09</a><br><br>Meeting ID: 879 8491 1866<br>Passcode: 075819<br>One tap mobile<br>+19292056099,,87984911866#,,,,*075819# US (New York)<br>+13017158592,,87984911866#,,,,*075819# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 879 8491 1866<br>Passcode: 075819<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kt0GJSuIv\">https://us02web.zoom.us/u/kt0GJSuIv</a><br><br><div><br></div>','Forms Class - Today @ 1pm','','publish','closed','open','','forms-class-today-1pm','','','2021-02-16 13:36:19','2021-02-16 13:36:19','',0,'https://lantern-realty.com/?p=1576',0,'post','',0),(1577,0,'2021-02-16 16:16:07','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-02-16 16:16:07','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1577',0,'post','',0),(1578,0,'2021-02-16 18:36:17','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-02-16 18:36:17','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1578',0,'post','',0),(186,1,'2018-08-24 21:29:36','2018-08-24 21:29:36','','team1','','inherit','open','closed','','team1','','','2018-08-24 21:29:36','2018-08-24 21:29:36','',101,'http://lantern-realty.com/wp-content/uploads/2018/08/team1.jpg',0,'attachment','image/jpeg',0),(187,1,'2018-08-24 21:29:38','2018-08-24 21:29:38','','team2','','inherit','open','closed','','team2','','','2018-08-24 21:29:38','2018-08-24 21:29:38','',101,'http://lantern-realty.com/wp-content/uploads/2018/08/team2.jpg',0,'attachment','image/jpeg',0),(188,1,'2018-08-24 21:29:41','2018-08-24 21:29:41','','team3','','inherit','open','closed','','team3','','','2018-08-24 21:29:41','2018-08-24 21:29:41','',101,'http://lantern-realty.com/wp-content/uploads/2018/08/team3.jpg',0,'attachment','image/jpeg',0),(192,1,'2018-08-24 21:36:59','2018-08-24 21:36:59','','team4','','inherit','open','closed','','team4','','','2018-08-24 21:36:59','2018-08-24 21:36:59','',101,'http://lantern-realty.com/wp-content/uploads/2018/08/team4.jpg',0,'attachment','image/jpeg',0),(193,1,'2018-08-24 21:37:03','2018-08-24 21:37:03','','team5','','inherit','open','closed','','team5','','','2018-08-24 21:37:03','2018-08-24 21:37:03','',101,'http://lantern-realty.com/wp-content/uploads/2018/08/team5.jpg',0,'attachment','image/jpeg',0),(194,1,'2018-08-24 21:37:06','2018-08-24 21:37:06','','team6','','inherit','open','closed','','team6','','','2018-08-24 21:37:06','2018-08-24 21:37:06','',101,'http://lantern-realty.com/wp-content/uploads/2018/08/team6.jpg',0,'attachment','image/jpeg',0),(195,1,'2018-08-24 21:37:09','2018-08-24 21:37:09','','team7','','inherit','open','closed','','team7','','','2018-08-24 21:37:09','2018-08-24 21:37:09','',101,'http://lantern-realty.com/wp-content/uploads/2018/08/team7.jpg',0,'attachment','image/jpeg',0),(196,1,'2018-08-24 21:37:11','2018-08-24 21:37:11','','team8','','inherit','open','closed','','team8','','','2018-08-24 21:37:11','2018-08-24 21:37:11','',101,'http://lantern-realty.com/wp-content/uploads/2018/08/team8.jpg',0,'attachment','image/jpeg',0),(208,1,'2021-06-24 11:32:28','2018-08-24 22:10:32','','Kannapolis/Concord','','publish','closed','closed','','kannapolis-concord','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=208',8,'nav_menu_item','',0),(209,1,'2021-06-24 11:32:28','2018-08-24 22:10:32','','Lake Norman','','publish','closed','closed','','lake-norman','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=209',11,'nav_menu_item','',0),(210,1,'2021-06-24 11:32:28','2018-08-24 22:10:32','','Rockwell/Granite Quary','','publish','closed','closed','','rockwell-granite-quary','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=210',10,'nav_menu_item','',0),(211,1,'2021-06-24 11:32:28','2018-08-24 22:10:32','','Salisbury','','publish','closed','closed','','salisbury','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=211',9,'nav_menu_item','',0),(212,1,'2021-06-24 11:32:28','2018-08-24 22:13:55','','Market Reports','','publish','closed','closed','','market-reports','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=212',22,'nav_menu_item','',0),(213,1,'2021-06-24 11:32:28','2018-08-24 22:13:55','','Charlotte','','publish','closed','closed','','charlotte-2','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=213',28,'nav_menu_item','',0),(214,1,'2021-06-24 11:32:28','2018-08-24 22:13:55','','Kannapolis/Concord','','publish','closed','closed','','kannapolis-concord-2','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=214',23,'nav_menu_item','',0),(215,1,'2021-06-24 11:32:28','2018-08-24 22:13:55','','Lake Norman','','publish','closed','closed','','lake-norman-2','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=215',27,'nav_menu_item','',0),(216,1,'2021-06-24 11:32:28','2018-08-24 22:13:55','','Landis/China Grove','','publish','closed','closed','','landis-china-grove','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=216',24,'nav_menu_item','',0),(217,1,'2021-06-24 11:32:28','2018-08-24 22:13:55','','Rockwell/Granite Quary','','publish','closed','closed','','rockwell-granite-quary-2','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=217',26,'nav_menu_item','',0),(218,1,'2021-06-24 11:32:28','2018-08-24 22:13:55','','Salisbury','','publish','closed','closed','','salisbury-2','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=218',25,'nav_menu_item','',0),(1575,1,'2021-02-16 00:50:04','2021-02-16 00:50:04','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">								</a>\n<h1>Meet the Lantern Team</h1>\n&nbsp; &nbsp; &nbsp;The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.\n<h2>Lantern Founders</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nWelcome! I appreciate you taking the time to see what I am all about....\n<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nMy name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...\n<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nMy name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 -\nCovering Kannapolis and Southern Rowan County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBrenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a resident of Cabarrus County for almost 30 years and absolutely...\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Concord area since 2003, and have enjoyed watching our...\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCourtney is a native North Carolinian and long time resident of Kannapolis. She is...\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAshley Hines a real estate professional, she recognizes and values the trust her clients...\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHelping folks find a home that fits their needs, or helping someone sell a...\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWelcome to Lantern Realty and Development!&nbsp; I have been an active member of the...\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Kimberly Trask and I have lived in Cabarrus County since 2013....\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a local having grown up in Concord leaving only for a 20-year...\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144\nCovering Rowan County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have over twenty years experience in New home construction and Real estate sales....\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMelissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>\n<p style=\"text-align: center;\">6477 Morehead Road Harrisburg, North Carolina 28075\nCovering Greater Cabarrus County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThanks for checking out my profile! My name is Meredith Christy and the three...\n<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWhether you’re a first-time home buyer in search of your dream home, a seller...\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...\n<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n<a href=\"https://lantern-realty.com/agent/lisa-pricher/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"><strong>Lisa Pricher</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn in the beautiful and modern city of Ningbo, China, I worked as a...\n<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>\n<p style=\"text-align: center;\">118 East Main Street Albemarle, North Carolina 28001\nCovering Stanly County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a Realtor, Sheila’s first priority is to make her clients happy and build...\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Amanda Cody and I have over 16 years’ experience as a...\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Mike Fullerton, I have been selling Real Estate in the Stanly...\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117\nCovering Iredell County and Lake Norman Area</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Join Lantern','','inherit','closed','closed','','1574-revision-v1','','','2021-02-16 00:50:04','2021-02-16 00:50:04','',1574,'https://lantern-realty.com/1574-revision-v1/',0,'revision','',0),(237,1,'2018-08-25 14:59:51','2018-08-25 14:59:51','<p>[vc_row][vc_column][vc_tta_tour style=\"modern\" color=\"sky\" active_section=\"1\" pagination_style=\"flat-square\" pagination_color=\"white\" css_animation=\"fadeIn\"][vc_tta_section title=\"Mortgage Calculator\" tab_id=\"1535209479293-2b8ae16b-c388\"][vc_row_inner][vc_column_inner][vc_column_text][mortgage interest_rate=\"6\" mortgage_term=\"30\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Affordability Calculator\" tab_id=\"1535209479306-17ac3411-03a1\"][vc_row_inner][vc_column_inner][vc_column_text][affordability interest_rate=\"6\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Closing Cost Calculator\" tab_id=\"1535209681820-c11b17c7-9315\"][vc_row_inner][vc_column_inner][vc_column_text][closingcosts][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_tta_section][/vc_tta_tour][vc_row_inner][vc_column_inner][vc_single_image image=\"536\" img_size=\"medium\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"http://lanternrealty.freedompremier.com/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_separator][vc_column_text][optima_express_featured sortBy=\"pd\" propertyType=\"SFR,CND\" displayType=\"grid\" resultsPerPage=\"9\" header=\"false\" includeMap=\"false\" status=\"active\"][/vc_column_text][/vc_column][/vc_row]</p>\n','Home Buying Calculators','','publish','closed','closed','','home-buying-calculators','','','2019-11-04 21:30:03','2019-11-04 21:30:03','',0,'http://lantern-realty.com/?page_id=237',0,'page','',0),(868,1,'2020-10-10 17:15:48','2020-10-10 17:15:48','','ERP Subscription','','trash','closed','closed','','erp-subscription__trashed','','','2020-10-11 16:58:42','2020-10-11 16:58:42','',0,'https://lantern-realty.com/erp-subscription/',0,'page','',0),(247,1,'2021-06-24 11:32:28','2018-08-25 15:20:30',' ','','','publish','closed','closed','','247','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'http://lantern-realty.com/?p=247',17,'nav_menu_item','',0),(248,1,'2018-08-25 15:26:43','2018-08-25 15:26:43','','Diane C.','','publish','closed','closed','','testimonial-title','','','2018-08-25 15:29:54','2018-08-25 15:29:54','',0,'http://lantern-realty.com/?post_type=houzez_testimonials&#038;p=248',0,'houzez_testimonials','',0),(253,1,'2018-08-25 15:30:36','2018-08-25 15:30:36','','Joyce L.','','publish','closed','closed','','joyce-l','','','2018-08-25 15:30:36','2018-08-25 15:30:36','',0,'http://lantern-realty.com/?post_type=houzez_testimonials&#038;p=253',0,'houzez_testimonials','',0),(255,1,'2018-08-25 15:31:12','2018-08-25 15:31:12','','Lee D.','','publish','closed','closed','','lee-d','','','2018-08-25 15:44:47','2018-08-25 15:44:47','',0,'http://lantern-realty.com/?post_type=houzez_testimonials&#038;p=255',0,'houzez_testimonials','',0),(257,1,'2018-08-25 15:31:34','2018-08-25 15:31:34','','Candy H.','','publish','closed','closed','','candy-h','','','2018-08-25 15:42:05','2018-08-25 15:42:05','',0,'http://lantern-realty.com/?post_type=houzez_testimonials&#038;p=257',0,'houzez_testimonials','',0),(259,1,'2018-08-25 15:32:03','2018-08-25 15:32:03','','Jessica P.','','publish','closed','closed','','jessica-p','','','2018-08-25 15:42:53','2018-08-25 15:42:53','',0,'http://lantern-realty.com/?post_type=houzez_testimonials&#038;p=259',0,'houzez_testimonials','',0),(261,1,'2018-08-25 15:32:37','2018-08-25 15:32:37','','Joe K.','','publish','closed','closed','','joe-k','','','2018-08-25 15:32:37','2018-08-25 15:32:37','',0,'http://lantern-realty.com/?post_type=houzez_testimonials&#038;p=261',0,'houzez_testimonials','',0),(263,1,'2018-08-25 15:33:03','2018-08-25 15:33:03','','Jeremy A.','','publish','closed','closed','','jeremy-a','','','2018-08-25 15:33:03','2018-08-25 15:33:03','',0,'http://lantern-realty.com/?post_type=houzez_testimonials&#038;p=263',0,'houzez_testimonials','',0),(1574,1,'2021-02-16 00:50:15','0000-00-00 00:00:00','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">								</a>\n<h1>Meet the Lantern Team</h1>\n&nbsp; &nbsp; &nbsp;The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.\n<h2>Lantern Founders</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nWelcome! I appreciate you taking the time to see what I am all about....\n<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nMy name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...\n<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nMy name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 -\nCovering Kannapolis and Southern Rowan County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBrenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a resident of Cabarrus County for almost 30 years and absolutely...\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Concord area since 2003, and have enjoyed watching our...\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCourtney is a native North Carolinian and long time resident of Kannapolis. She is...\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAshley Hines a real estate professional, she recognizes and values the trust her clients...\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHelping folks find a home that fits their needs, or helping someone sell a...\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWelcome to Lantern Realty and Development!&nbsp; I have been an active member of the...\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Kimberly Trask and I have lived in Cabarrus County since 2013....\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a local having grown up in Concord leaving only for a 20-year...\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144\nCovering Rowan County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have over twenty years experience in New home construction and Real estate sales....\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMelissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>\n<p style=\"text-align: center;\">6477 Morehead Road Harrisburg, North Carolina 28075\nCovering Greater Cabarrus County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThanks for checking out my profile! My name is Meredith Christy and the three...\n<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWhether you’re a first-time home buyer in search of your dream home, a seller...\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...\n<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n<a href=\"https://lantern-realty.com/agent/lisa-pricher/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"><strong>Lisa Pricher</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn in the beautiful and modern city of Ningbo, China, I worked as a...\n<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>\n<p style=\"text-align: center;\">118 East Main Street Albemarle, North Carolina 28001\nCovering Stanly County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a Realtor, Sheila’s first priority is to make her clients happy and build...\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Amanda Cody and I have over 16 years’ experience as a...\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Mike Fullerton, I have been selling Real Estate in the Stanly...\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117\nCovering Iredell County and Lake Norman Area</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Join Lantern','','draft','closed','closed','','','','','2021-02-16 00:50:15','2021-02-16 00:50:15','',0,'https://lantern-realty.com/?page_id=1574',0,'page','',0),(1562,6,'2021-02-08 18:36:14','2021-02-08 18:36:14','<div dir=\"ltr\"><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\">Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: KINDLE CLASS - The Art of Negotiations<br>Time: Feb 9, 2021 01:00 PM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/81358882796?pwd=ODZyd0o3M2pXWStjU3QybzgwWDRNQT09\">https://us02web.zoom.us/j/81358882796?pwd=ODZyd0o3M2pXWStjU3QybzgwWDRNQT09</a><br><br>Meeting ID: 813 5888 2796<br>Passcode: 910917<br>One tap mobile<br>+13126266799,,81358882796#,,,,*910917# US (Chicago)<br>+19292056099,,81358882796#,,,,*910917# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 813 5888 2796<br>Passcode: 910917<br>Find your local number: <a href=\"https://us02web.zoom.us/u/keCG26pc8y\">https://us02web.zoom.us/u/keCG26pc8y</a><br><br></div></div></div></div></div></div></div></div></div></div></div></div></div>','KINDLE Class - 9/9 @ 1pm - The Art of Negotiations','','publish','closed','open','','kindle-class-9-9-1pm-the-art-of-negotiations','','','2021-02-08 18:36:14','2021-02-08 18:36:14','',0,'https://lantern-realty.com/?p=1562',0,'post','',0),(1564,0,'2021-02-08 22:55:44','2021-02-08 22:55:44','','Profile pic','','inherit','','closed','','profile-pic','','','2021-02-08 22:55:44','2021-02-08 22:55:44','',0,'https://lantern-realty.com/profile-pic/',0,'attachment','image/jpeg',0),(1565,6,'2021-02-09 18:06:09','2021-02-09 18:06:09','<div dir=\"ltr\">In case you missed it.  Here is the link.  It will also be posted to our web page<div><br></div><div><a href=\"https://youtu.be/wdCyfpcgsBg\">https://youtu.be/wdCyfpcgsBg</a><br clear=\"all\"><div><br></div>','Canva.com class link','','publish','closed','open','','canva-com-class-link','','','2021-02-09 18:06:09','2021-02-09 18:06:09','',0,'https://lantern-realty.com/?p=1565',0,'post','',0),(1566,6,'2021-02-09 19:56:38','2021-02-09 19:56:38','<div dir=\"ltr\">See below.  It will also be on our web page announcement. <div><br></div><div><a href=\"https://youtu.be/-JruK4rYcIA\">https://youtu.be/-JruK4rYcIA</a><br clear=\"all\"><div><br></div>','KINDLE CLASS - Negotiation link','','publish','closed','open','','kindle-class-negotiation-link','','','2021-02-09 19:56:38','2021-02-09 19:56:38','',0,'https://lantern-realty.com/?p=1566',0,'post','',0),(1567,0,'2021-02-10 16:06:06','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-02-10 16:06:06','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1567',0,'post','',0),(1568,0,'2021-02-10 16:15:55','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-02-10 16:15:55','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1568',0,'post','',0),(1569,6,'2021-02-11 15:56:54','2021-02-11 15:56:54','<div dir=\"ltr\">Below is the link to this class.  It will also be in the \"Announcements\" section on our webpage.  <div><br></div><div><a href=\"https://youtu.be/xjoyFWLVvG4\">https://youtu.be/xjoyFWLVvG4</a><br clear=\"all\"><div><br></div>','Instagram Class video','','publish','closed','open','','instagram-class-video','','','2021-02-11 15:56:54','2021-02-11 15:56:54','',0,'https://lantern-realty.com/?p=1569',0,'post','',0),(1570,6,'2021-02-14 13:26:41','2021-02-14 13:26:41','<div dir=\"ltr\">Happy Valentines Day!  Just a few notes for your upcoming week.<div><br></div><div>- We have a very busy week of <b>Education</b> coming up.  Here is a list of this weeks classes</div><div>*** Tuesday 2/16 Melissa Yates will be hosting Forms class from the Salisbury office. It will also be on zoom if you can&#39;t attend in person.  </div><div>*** Thursday 2/18 @ 1pm I will be teaching a class on \"Helping Your Client Buy or Sell Land\".  It will be held on Zoom and will be recorded.  </div><div>*** Alson on Thursday at 230pm CCAR will be hosting a \"Remine Virtual Training\" . Check the CCAR website and Facebook page for registration.</div><div><br></div><div>- Currently our <b>office phone</b> is unable to transfer.  We have a call into Windstream and are awaiting a service call.  If you have registered for call time during this time, my apologies for the inconvenience. </div><div>- Thanks to Deana for putting a short slide show on <b>FHA buyers</b> looking at flip properties.  See the attached PowerPoint for the rules you need to follow when your FHA buyer is looking at a flipped property. <br>- PLEASE make sure, if you chose to use the <b>Coming Soon</b> rule for your seller, make sure you have your Broker in Charge sign it on the \"Member Participant\" line. </div><div>- The <b>Salisbury office</b> will be holding their team meeting on Thursday at 11am.  I look forward to seeing our Salisbury agents.  </div><div><br></div><div><br><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\">Chris Puckett REALTOR ®, GRI, SRES, CDEI</div><div dir=\"ltr\">Owner/Broker<br></div><div dir=\"ltr\"><div>Lantern Realty &amp; Development</div><div><span style=\"font-size:12.8px\">c. 704-298-5872</span><br></div><div><a href=\"mailto:ch2realty@gmail.com\" target=\"_blank\" rel=\"noopener noreferrer\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a></div><div><a href=\"https://Lantern-Realty.com\" target=\"_blank\" rel=\"noopener noreferrer\">https://Lantern-Realty.com</a></div><div><br></div><br><br></div><div dir=\"ltr\"><br></div></div></div></div></div></div></div></div></div></div></div></div></div></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/FHA-Flip.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/pdf-32.png\' alt=\'pdf icon\' /> FHA-Flip.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/LRD-Roster_020521-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> LRD-Roster_020521.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/2021-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-8','','','2021-02-14 13:26:41','2021-02-14 13:26:41','',0,'https://lantern-realty.com/?p=1570',0,'post','',0),(1571,6,'2021-02-14 13:26:41','2021-02-14 13:26:41','','FHA-Flip.pdf','','inherit','closed','closed','','fha-flip','','','2021-02-14 13:26:41','2021-02-14 13:26:41','',1570,'https://lantern-realty.com/wp-content/uploads/2021/02/FHA-Flip.pdf',0,'attachment','application/pdf',0),(1572,6,'2021-02-14 13:26:41','2021-02-14 13:26:41','','LRD-Roster_020521.xlsx','','inherit','closed','closed','','lrd-roster_020521-1','','','2021-02-14 13:26:41','2021-02-14 13:26:41','',1570,'https://lantern-realty.com/wp-content/uploads/2021/02/LRD-Roster_020521-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1573,6,'2021-02-14 13:26:41','2021-02-14 13:26:41','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-1-2','','','2021-02-14 13:26:41','2021-02-14 13:26:41','',1570,'https://lantern-realty.com/wp-content/uploads/2021/02/2021-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(325,1,'2018-09-02 19:24:14','2018-09-02 19:24:14','[optima_express_toppicks id=\"820132\" sortBy=\"pd\" displayType=\"grid\" resultsPerPage=\"27\" header=\"true\" includeMap=\"true\" status=\"active\"]','Homes for Sale in Rowan County','','publish','closed','closed','','homes-for-sale-in-rowan-county','','','2018-09-02 19:28:20','2018-09-02 19:28:20','',0,'https://lantern-realty.com/?page_id=325',0,'page','',0),(1561,6,'2021-02-08 18:26:04','2021-02-08 18:26:04','<div dir=\"ltr\">See link below....<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Canva.com Presented by Jenna Cook<br>Time: Feb 9, 2021 09:30 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89415424230?pwd=V1Jwd3Mya3RUZ3UzY0I3b2p2c1c3Zz09\">https://us02web.zoom.us/j/89415424230?pwd=V1Jwd3Mya3RUZ3UzY0I3b2p2c1c3Zz09</a><br><br>Meeting ID: 894 1542 4230<br>Passcode: 867480<br>One tap mobile<br>+13017158592,,89415424230#,,,,*867480# US (Washington DC)<br>+13126266799,,89415424230#,,,,*867480# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 894 1542 4230<br>Passcode: 867480<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kTRQrhRDS\">https://us02web.zoom.us/u/kTRQrhRDS</a><br><br><div><br></div>','9/9 - Canva.com Class Presented by Jenna Cook @ 930am','','publish','closed','open','','9-9-canva-com-class-presented-by-jenna-cook-930am','','','2021-02-08 18:26:04','2021-02-08 18:26:04','',0,'https://lantern-realty.com/?p=1561',0,'post','',0),(1556,1,'2021-02-08 00:40:38','2021-02-08 00:40:38','','Alexandria_J_Bare','','inherit','','closed','','alexandria_j_bare','','','2021-02-08 00:40:38','2021-02-08 00:40:38','',1554,'https://lantern-realty.com/wp-content/uploads/2021/02/Alexandria_J_Bare.jpg',0,'attachment','image/jpeg',0),(1557,1,'2021-02-08 00:55:41','2021-02-08 00:55:41','<!-- wp:paragraph -->\n<p>I was born and raised in Cabarrus County and now reside in Concord. I have been married for 31 years to my husband Bob and we have a wonderful son, Cody, daughter-in-law, Hannah and adorable grandson, Levi. Anyone that knows me knows that I love to bake and will try my hand at any craft. I am on the Board of Directors for the Piedmont Farmers Market and enjoy helping at my church. I have been in real estate for three years and love helping my clients, both buyers and sellers, achieve their real estate dreams.</p>\n<!-- /wp:paragraph -->','Alicia Love Hammel','','publish','closed','closed','','alicia-love-hammel','','','2021-02-08 00:55:44','2021-02-08 00:55:44','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1557',79,'houzez_agent','',0),(1558,1,'2021-02-08 00:53:52','2021-02-08 00:53:52','<!-- wp:paragraph -->\n<p>I was born and raised in Cabarrus County and now reside in Concord. I have been married for 31 years to my husband Bob and we have a wonderful son, Cody, daughter-in-law, Hannah and adorable grandson, Levi. Anyone that knows me knows that I love to bake and will try my hand at any craft. I am on the Board of Directors for the Piedmont Farmers Market and enjoy helping at my church. I have been in real estate for three years and love helping my clients, both buyers and sellers, achieve their real estate dreams.</p>\n<!-- /wp:paragraph -->','Alicia Love Hammel','','inherit','closed','closed','','1557-revision-v1','','','2021-02-08 00:53:52','2021-02-08 00:53:52','',1557,'https://lantern-realty.com/1557-revision-v1/',0,'revision','',0),(1559,1,'2021-02-08 00:55:01','2021-02-08 00:55:01','','Alicia_Love_Hammel','','inherit','','closed','','alicia_love_hammel','','','2021-02-08 00:55:01','2021-02-08 00:55:01','',1557,'https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg',0,'attachment','image/jpeg',0),(1560,1,'2021-02-08 01:01:24','2021-02-08 01:01:24','[[\"Last Name\",\"First Name\",\"Phone\",\"Email\",\"Home Office\",\"Team Role\",\"License #\",\"MLS ID\"],[\"Aldridge\",\"Jeremy\",\"704-773-0722\",\"kadaendeavorenterprises@gmail.com\",\"Kannapolis\",\"Broker\",306776,68707],[\"Allen\",\"Maranda\",\"704-819-7111\",\"Mandee704@hotmail.com\",\"Harrisburg\",\"Broker\",308723,71114],[\"Allison\",\"Sheila\",\"828-712-7843\",\"sheila.allison10@gmail.com\",\"Albemarle\",\"Broker\",307918,69499],[\"Amoakon\",\"Sabine\",\"704-433-8462\",\"sab1.homes@outlook.com\",\"Kannapolis\",\"Broker\",316331,78139],[\"Argabright\",\"Sherri Wiles\",\"704-202-0806\",\"sherriargabright@gmail.com\",\"Kannapolis\",\"Broker\",220340,97879],[\"Aylesworth\",\"Alan\",\"980-330-8401\",\"alan.aylesworth.lantern@gmail.com\",\"Salisbury\",\"Broker\",308001,69474],[\"Barber\",\"Casey\",\"678-516-5196\",\"casey.m.barber@gmail.com\",\"Kannapolis\",\"Broker\",309318,71136],[\"Baxter\",\"Cheryl\",\"704-796-8843\",\"cmbaxter2@gmail.com\",\"Kannapolis\",\"Broker\",298432,61673],[\"Bendig\",\"Robbie\",\"704-640-4171\",\"rbendig89@gmail.com\",\"Salisbury\",\"Broker\",303589,65910],[\"Benton\",\"Toni\",\"980-521-2696\",\"tbenton81@gmail.com\",\"Kannapolis\",\"Broker\",310611,72825],[\"Bird\",\"April\",\"901-569-3161\",\"abirdhomes@gmail.com\",\"Mooresville\",\"Broker\",301315,63368],[\"Boger\",\"Annie\",\"980-521-3988\",\"Annie.homes4u@gmail.com\",\"Kannapolis\",\"Broker\",291550,50846],[\"Brown\",\"Elizabeth\",\"704-421-0317\",\"elizabethbrownrealtor@gmail.com\",\"Kannapolis\",\"Broker\",302094,62799],[\"Brown\",\"Brenda\",\"704-796-1948\",\"seniors2@twc.com\",\"Kannapolis\",\"Broker\",302340,70430],[\"Bullock\",\"Dale\",\"704-791-5457\",\"dale.bullock2014realtor@gmail.com\",\"Kannapolis\",\"Broker\",280284,34573],[\"Cannon\",\"Janice\",\"205-514-5124\",\"janiceacannon@gmail.com\",\"Harrisburg\",\"Broker\",322349,83949],[\"Cauble\",\"Crystal\",\"980-521-8431\",\"crystalcauble27@gmail.com\",\"Kannapolis\",\"Broker\",297260,60165],[\"Caudill\",\"Evonne\",\"704-791-7012\",\"ecaudill12@gmail.com\",\"Kannapolis\",\"Broker\",242767,52756],[\"Chambers\",\"Renee\",\"704-925-7938\",\"NC.Realtor.Renee@gmail.com\",\"Kannapolis\",\"Broker\",316110,82316],[\"Chandler\",\"Emily\",\"615-397-1925\",\"emilychandler.realtor@gmail.com\",\"Harrisburg\",\"Broker\",297265,60204],[\"Christy\",\"Meredith\",\"980-248-4097\",\"meredith@meredithchristy.com\",\"Harrisburg\",\"Broker\",298605,61273],[\"Clark\",\"Tracie\",\"704-900-4637\",\"tracieclarksells@gmail.com\",\"Harrisburg\",\"Broker\",238413,29140],[\"Clodfelter\",\"Jody\",\"704-438-2190\",\"jodyc1972@gmail.com\",\"Albemarle\",\"Broker\",297153,58787],[\"Cloward\",\"Jessica\",\"704-502-8383\",\"jessicacloward1@gmail.com\",\"Salisbury\",\"Broker - in - Charge\",298274,57857],[\"Cody\",\"Amanda\",\"980-581-1399\",\"amandaearnhardt@yahoo.com\",\"Albemarle\",\"Broker\",217780,50220],[\"Cook\",\"Jenna\",\"704-960-5591\",\"4jennacook@gmail.com\",\"Kannapolis\",\"Broker\",293117,53960],[\"Crowder\",\"Lisa\",\"704-380-7455\",\"lisadcrowder@gmail.com\",\"Harrisburg\",\"Broker\",279316,32788],[\"Davis\",\"Michael\",\"\",\"mdavis@thewhiteoakgrove.com\",\"Kannapolis\",\"Broker\",289518,548508637],[\"Drakulich\",\"Kimberly\",\"704-778-6959\",\"kim.drakulich@gmail.com\",\"Kannapolis\",\"Broker\",277431,35684],[\"Dunphy\",\"Australia\",\"704-701-0177\",\"cdunphy51@hotmail,com\",\"Kannapolis\",\"Broker\",293885,67265],[\"Erion\",\"Ivonne\",\"704-796-3530\",\"ivonne@ivonneerion.com\",\"Kannapolis\",\"Broker\",289340,48565],[\"Evans\",\"Amy\",\"704-273-0107\",\"amyevansrealty@gmail.com\",\"Kannapolis\",\"Broker\",297737,59809],[\"Ferlauto\",\"Ashley\",\"980-333-8085\",\"ashleyferlauto@gmail.com\",\"Kannapolis\",\"Broker\",291080,50443],[\"Franklin\",\"Jeff\",\"704-787-4888\",\"jeff.franklin.realtor@gmail.com\",\"Salisbury\",\"Broker\",298704,61490],[\"Fullerton\",\"Michael\",\"980-318-4961\",\"mikefullerton72@gmail.com\",\"Albemarle\",\"Broker - in - Charge\",290662,51527],[\"Garcia\",\"Yira\",\"704-907-9573\",\"ygarciarealty@gmail.com\",\"Kannapolis\",\"Broker\",300114,63290],[\"Gearing\",\"Lynnette\",\"704-699-6902\",\"lynnettegearing.realtor@gmail.com\",\"Kannapolis\",\"Broker\",306394,69473],[\"Griffin\",\"Deborah\",\"980-428-2462\",\"deborahg142@gmail.com\",\"Salisbury\",\"Broker\",145465,56410],[\"Hager\",\"Cathy\",\"980-521-4429\",\"1cathyhager@gmail.com\",\"Kannapolis\",\"Broker\",294095,54235],[\"Hallman\",\"Liz\",\"980-621-9575\",\"lizphallman@gmail.com\",\"Kannapolis\",\"Broker\",281082,35806],[\"Haywood\",\"Conard\",\"704-467-5102\",\"conardhaywood@gmail.com\",\"Kannapolis\",\"Broker\",319615,\"\"],[\"Hedrick\",\"Courtney\",\"704-608-7893\",\"hedrickhomes@gmail.com\",\"Kannapolis\",\"Broker\",301363,63492],[\"Hedrick\",\"William\",\"704-773-9204\",\"will@thewillhedrick.com\",\"Kannapolis\",\"Broker\",314736,\"\"],[\"Hill\",\"Hosanna\",\"336-317-8050\",\"hill.hosanna@gmail.com\",\"Kannapolis\",\"Broker\",315320,76468],[\"Hiner\",\"Donna\",\"704-956-9898\",\"donnasellsrealestate1@gmail.com\",\"Harrisburg\",\"Broker\",272915,21485],[\"Howell\",\"Kimberly\",\"704-699-2600\",\"kdhowell1996@gmail.com\",\"Salisbury\",\"Broker\",302115,64440],[\"Jackling\",\"Melissa\",\"980-621-4623\",\"onlymyrealtormelissa@gmail.com\",\"Kannapolis\",\"Broker\",291920,51371],[\"Jalynski\",\"Christine\",\"704-749-4944\",\"cjalynskirealty@gmail.com\",\"Kannapolis\",\"Broker\",297054,58601],[\"Johnson\",\"Priscilla\",\"704-891-5386\",\"priscillajrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"\",80621],[\"Keller\",\"Kelly\",\"704-467-4485\",\"kelly.keller.realty@gmail.com\",\"Kannapolis\",\"Broker\",313269,74509],[\"Keller\",\"Margie\",\"704-245-2739\",\"margkellerhomes@gmail.com\",\"Salisbury\",\"Broker\",298750,61747],[\"Kidd\",\"Cheyenne\",\"980-939-3809\",\"cheyennekidd00@gmail.com\",\"Salisbury\",\"Broker\",318995,81249],[\"LaCroix\",\"Melissa\",\"704-796-6531\",\"mlacroix.realty@gmail.com\",\"Kannapolis\",\"Broker\",303207,65548],[\"Lamb\",\"Dawn\",\"980-781-7385\",\"dawnlambrealtor@gmail.com\",\"Kannapolis\",\"Broker\",315881,77815],[\"Lambert\",\"Amanda\",\"704-400-0641\",\"teamlambert.sellsnc@gmail.com\",\"Kannapolis\",\"Broker\",25766,65579],[\"Lambert\",\"Jerry\",\"704-791-0429\",\"jerry.teamlambert@gmail.com\",\"Kannapolis\",\"Broker\",321038,81412],[\"Laney\",\"Sandi\",\"704-773-5886\",\"sandilaney2@gmail.com\",\"Kannapolis\",\"Broker\",272563,22259],[\"Leonard\",\"Bret\",\"980-521-7156\",\"buywithbret@gmail.com\",\"Salisbury\",\"Broker\",303052,65034],[\"Matthews\",\"Helen\",\"704-796-4026\",\"hamatthews@gmail.com\",\"Kannapolis\",\"Broker\",303222,65519],[\"McCauley\",\"Lindsey\",\"704-236-7850\",\"lmccauley727@gmail.com\",\"Kannapolis\",\"Broker\",298645,61546],[\"McCLure\",\"Taylor\",\"980-253-0223\",\"taylormcclure23@gmail.com\",\"Kannapolis\",\"Broker\",321999,82269],[\"Merrell\",\"Connie\",\"704-701-1678\",\"connie.merrell.realtor@gmail.com\",\"Kannapolis\",\"Broker\",320338,81061],[\"Miltz\",\"Deanna\",\"704-634-6289\",\"dmiltzrealtor@gmail.com\",\"Harrisburg\",\"Broker\",298941,61437],[\"Monrad\",\"Rachel\",\"704-682-9422\",\"rachel@randsrealtygroup.com\",\"Mooresville\",\"Broker\",251860,32949],[\"Nutter\",\"Julie\",\"240-888-7493\",\"teamnutter@gmail.com\",\"Kannapolis\",\"Broker\",293824,48403],[\"Overcash\",\"Jason\",\"980-622-6327\",\"jasonovercashrealty@gmail.com\",\"Kannapolis\",\"Broker\",305546,68295],[\"Overcash\",\"Laura\",\"704-699-0765\",\"lovercashre@gmail.com\",\"Kannapolis\",\"Broker\",301686,63472],[\"Petty\",\"Deana\",\"704-258-8068\",\"deana327@gmail.com\",\"Kannapolis\",\"BIC/Owner\",263080,72155],[\"Pricher\",\"Lisa\",\"704-288-7392\",\"ncrealtorlisa@gmail.com\",\"Harrisburg\",\"Broker\",276287,24658],[\"Puckett\",\"Chris\",\"704-298-5872\",\"ch2realty@gmail.com\",\"Kannapolis\",\"Qualifying Broker/Owner\",279213,32613],[\"Queen\",\"Rodney\",\"704-239-3617\",\"rodneque@aol.com\",\"Salisbury\",\"Broker\",197764,18091],[\"Rhew\",\"Rick\",\"704-491-2458\",\"ricksellsnc@gmail.com\",\"Harrisburg\",\"Broker\",288631,49282],[\"Robinson\",\"Kelly\",\"704-699-2268\",\"kelly.robinson.realtor@gmail.com\",\"Kannapolis\",\"Broker\",316981,79218],[\"Rogers\",\"Hayley\",\"704-431-2816\",\"hayley.realestate.rogers@gmail.com\",\"Harrisburg\",\"Broker - in - Charge\",281085,35693],[\"Romesburg\",\"Sarah\",\"336-466-1646\",\"sarah@randsrealtygroup.com\",\"Mooresville\",\"Broker\",279215,32982],[\"Sadler\",\"Kimberly\",\"704-798-8338\",\"kimsadler.realtor@gmail.com\",\"Kannapolis\",\"Broker\",290260,49723],[\"Severt\",\"Paula\",\"704-232-3433\",\"paulasevert@yahoo.com\",\"Kannapolis\",\"Broker/Owner\",256100,68433],[\"Sherin\",\"Chelsi\",\"570-690-3723\",\"chelsi.sherin@gmail.com\",\"Kannapolis\",\"Broker\",317621,79645],[\"Sides\",\"Holden\",\"704-699-2092\",\"sideshb94@yahoo.com\",\"Kannapolis\",\"Broker\",322169,\"\"],[\"Sloan Holshouser\",\"Courtney\",\"704-754-7104\",\"csloansellshomes@gmail.com\",\"Salisbury\",\"Broker\",314926,\"\"],[\"Starnes\",\"Susan\",\"704-305-0040\",\"susansellsnchomes@gmail.com\",\"Harrisburg\",\"Broker\",304452,66546],[\"Stillinger\",\"Ethan\",\"704-957-1282\",\"ethanstillingerlrd@gmail.com\",\"Kannapolis\",\"Broker\",283899,39819],[\"Strickland\",\"Tricia\",\"704-791-7314\",\"tricia.strickland927@gmail.com\",\"Kannapolis\",\"Broker\",314178,75477],[\"Sue Bingham\",\"Brenda\",\"704-787-2539\",\"brenda@bingham.cc\",\"Albemarle\",\"Broker\",302334,65004],[\"Suther\",\"John\",\"704-622-1432\",\"johnsutherllc@gmail.com\",\"Kannapolis\",\"Broker\",309445,71221],[\"Thompson\",\"Chuck\",\"704-701-0129\",\"crtbroker@gmail.com\",\"Kannapolis\",\"Broker\",278357,31317],[\"Trask\",\"Kimberly\",\"336-906-0848\",\"kimberlyktrask@gmail.com\",\"Kannapolis\",\"Broker\",312666,75085],[\"Watson\",\"Brianne\",\"704-791-3272\",\"briannewatsonrealtor@gmail.com\",\"Kannapolis\",\"Broker\",293189,53736],[\"Widenhouse\",\"Cindy\",\"704-795-8017\",\"cindy.s.widenhouse@gmail.com\",\"Kannapolis\",\"Broker\",299028,61885],[\"Wilson\",\"Rick\",\"704-996-9902\",\"richard.wilson4565@gmail.com\",\"Kannapolis\",\"Broker\",321788,81743],[\"Wiser\",\"Paige\",\"704-904-1903\",\"PaigeWiserRealtor@gmail.com\",\"Salisbury\",\"Broker\",309172,71081],[\"Wooley\",\"Todd\",\"704-904-7162\",\"twooleyrealty@gmail.com\",\"Kannapolis\",\"Broker\",309536,71163],[\"Yates\",\"Melissa\",\"704-239-3835\",\"melissayates4u@gmail.com\",\"Salisbury\",\"Broker\",307917,69428],[\"Zhang\",\"Min\",\"319-471-1622\",\"realtymin77@gmail.com\",\"Harrisburg\",\"Broker\",299816,63292],[\"Bare\",\"Alexandria\",\"704-783-5434\",\"abarehomes@gmail.com\",\"Salisbury\",\"Broker\",325549,84360],[\"Henrickson\",\"Ivan\",\"704-309-7841\",\"ivanbhenrickson@gmail.com\",\"Mooresville\",\"Broker\",319616,80237],[\"Love Hammel\",\"Alicia\",\"704-699-7843\",\"aliciahammelrealtor@gmail.com\",\"Kannapolis\",\"Broker\",301472,64447],[\"Tichnor\",\"Michele\",\"704-699-8824\",\"Michele.Tichnor@gmail.com\",\"Kannapolis\",\"Broker\",321191,81688],[\"Walter\",\"Dominique\",\"828-638-5353\",\"dwalterhomes4u@gmail.com\",\"Mooresville\",\"Broker\",318276,78901]]','Team Directory','','inherit','closed','closed','','1199-revision-v1','','','2021-02-08 01:01:24','2021-02-08 01:01:24','',1199,'https://lantern-realty.com/1199-revision-v1/',0,'revision','',0),(1544,1,'2021-02-08 00:19:35','2021-02-08 00:19:35','<!-- wp:paragraph -->\n<p>I have lived in the Cabarrus/Rowan area my whole life. My children were raised here, and attended school here. I say this to let you know that I have a great deal of knowledge about this area, and I believe I can help you with any of questions you may have about the area. I have seen it come from a mill village to becoming an up and growing very inviting city. My interest in real estate started in high school when I was in drafting class and first started designing house plans. My work career has been in customer service for more than 30 years. If there is any questions you may have about relocating to this area, or a new home, or maybe downsizing please give me a call, and I would love to help you anyway I can.</p>\n<!-- /wp:paragraph -->','Dale Bullock','','inherit','closed','closed','','788-revision-v1','','','2021-02-08 00:19:35','2021-02-08 00:19:35','',788,'https://lantern-realty.com/788-revision-v1/',0,'revision','',0),(1545,1,'2021-02-08 00:30:24','2021-02-08 00:30:24','','Michele Tichnor','','publish','closed','closed','','michele-tichnor','','','2021-02-08 00:30:27','2021-02-08 00:30:27','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1545',115,'houzez_agent','',0),(1546,1,'2021-02-08 00:28:12','2021-02-08 00:28:12','','Michele Tichnor','','inherit','closed','closed','','1545-revision-v1','','','2021-02-08 00:28:12','2021-02-08 00:28:12','',1545,'https://lantern-realty.com/1545-revision-v1/',0,'revision','',0),(1547,1,'2021-02-08 00:29:44','2021-02-08 00:29:44','','Michele_Tichnor','','inherit','','closed','','michele_tichnor','','','2021-02-08 00:29:44','2021-02-08 00:29:44','',1545,'https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg',0,'attachment','image/jpeg',0),(1548,1,'2021-02-08 00:33:55','2021-02-08 00:33:55','<!-- wp:paragraph -->\n<p>A North Carolinian for the last 18 years, I am originally from New Jersey. I began with a career in healthcare, almost 20 years ago, leveraging my passion for patient care, taking care of the families and building relationships based on compassion and understanding. The last 6 of those years I spent focused on direct marketing and sales with great success. I gained numerous company recognitions and awards in a very short time before taking on a leadership role. My drive, compassion for others, always being true to myself and being true to my beliefs makes me to be person people can trust and rely on. I get the job done! When I’m not selling houses or assisting my clients in other ways, my time is spent with family and growing our farm. My husband and I have 4 children (ages 17-7) in 4 different schools and just moved from a neighborhood to a house in the country and began an organic farm from scratch. Having never been farmers before this is a learning experience to say the least and we’re loving every minute of it. I look forward to helping you with your real estate needs.</p>\n<!-- /wp:paragraph -->','Dominique Walter','','publish','closed','closed','','dominique-walter','','','2021-02-08 00:33:59','2021-02-08 00:33:59','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1548',117,'houzez_agent','',0),(1549,1,'2021-02-08 00:32:04','2021-02-08 00:32:04','<!-- wp:paragraph -->\n<p>A North Carolinian for the last 18 years, I am originally from New Jersey. I began with a career in healthcare, almost 20 years ago, leveraging my passion for patient care, taking care of the families and building relationships based on compassion and understanding. The last 6 of those years I spent focused on direct marketing and sales with great success. I gained numerous company recognitions and awards in a very short time before taking on a leadership role. My drive, compassion for others, always being true to myself and being true to my beliefs makes me to be person people can trust and rely on. I get the job done! When I’m not selling houses or assisting my clients in other ways, my time is spent with family and growing our farm. My husband and I have 4 children (ages 17-7) in 4 different schools and just moved from a neighborhood to a house in the country and began an organic farm from scratch. Having never been farmers before this is a learning experience to say the least and we’re loving every minute of it. I look forward to helping you with your real estate needs.</p>\n<!-- /wp:paragraph -->','Dominique Walter','','inherit','closed','closed','','1548-revision-v1','','','2021-02-08 00:32:04','2021-02-08 00:32:04','',1548,'https://lantern-realty.com/1548-revision-v1/',0,'revision','',0),(1550,1,'2021-02-08 00:33:38','2021-02-08 00:33:38','','Dominique_Walter','','inherit','','closed','','dominique_walter','','','2021-02-08 00:33:38','2021-02-08 00:33:38','',1548,'https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg',0,'attachment','image/jpeg',0),(1551,1,'2021-02-08 00:37:12','2021-02-08 00:37:12','','Ivan Henrickson','','publish','closed','closed','','ivan-henrickson','','','2022-02-18 01:50:44','2022-02-18 01:50:44','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1551',58,'houzez_agent','',0),(1552,1,'2021-02-08 00:35:20','2021-02-08 00:35:20','','Ivan Henrickson','','inherit','closed','closed','','1551-revision-v1','','','2021-02-08 00:35:20','2021-02-08 00:35:20','',1551,'https://lantern-realty.com/1551-revision-v1/',0,'revision','',0),(1553,1,'2021-02-08 00:36:45','2021-02-08 00:36:45','','Ivan_Henrickson','','inherit','','closed','','ivan_henrickson','','','2021-02-08 00:36:45','2021-02-08 00:36:45','',1551,'https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg',0,'attachment','image/jpeg',0),(1554,1,'2021-02-08 00:40:56','2021-02-08 00:40:56','<!-- wp:paragraph -->\n<p>Alexandria illustrates energy, hard work, and creative service in every detail of your real estate transaction. She grew up in North Carolina and is proud to call it her home. Alexandria attended UNC Pembroke where she completed a Bachelor’s of Business Administration. While she was there, she played four years as a collegiate golfer and was a four year Academic All American. Shortly after graduation, Alexandria traveled across the states to compete as a professional golfer. While continuing her golf career, she has developed a new passion for real estate. So whether you’re a first time home buyer, trying to score that perfect distressed property, look for a luxury property, or sell one of your own, Alexandria can help with it all.</p>\n<!-- /wp:paragraph -->','Alexandria J Bare','','draft','closed','closed','','alexandria-j-bare','','','2021-11-22 00:22:21','2021-11-22 00:22:21','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1554',11,'houzez_agent','',0),(1555,1,'2021-02-08 00:38:43','2021-02-08 00:38:43','<!-- wp:paragraph -->\n<p>Alexandria illustrates energy, hard work, and creative service in every detail of your real estate transaction. She grew up in North Carolina and is proud to call it her home. Alexandria attended UNC Pembroke where she completed a Bachelor’s of Business Administration. While she was there, she played four years as a collegiate golfer and was a four year Academic All American. Shortly after graduation, Alexandria traveled across the states to compete as a professional golfer. While continuing her golf career, she has developed a new passion for real estate. So whether you’re a first time home buyer, trying to score that perfect distressed property, look for a luxury property, or sell one of your own, Alexandria can help with it all.</p>\n<!-- /wp:paragraph -->','Alexandria J Bare','','inherit','closed','closed','','1554-revision-v1','','','2021-02-08 00:38:43','2021-02-08 00:38:43','',1554,'https://lantern-realty.com/1554-revision-v1/',0,'revision','',0),(1532,0,'2021-01-29 16:48:57','2021-01-29 16:48:57','','head shot','','inherit','','closed','','head-shot','','','2021-01-29 16:48:57','2021-01-29 16:48:57','',0,'https://lantern-realty.com/head-shot/',0,'attachment','image/jpeg',0),(1533,0,'2021-01-29 18:43:54','2021-01-29 18:43:54','','Headshot','','inherit','','closed','','headshot','','','2021-01-29 18:43:54','2021-01-29 18:43:54','',0,'https://lantern-realty.com/headshot/',0,'attachment','image/jpeg',0),(1534,0,'2021-01-29 19:36:47','2021-01-29 19:36:47','','unnamed','','inherit','','closed','','unnamed','','','2021-01-29 19:36:47','2021-01-29 19:36:47','',0,'https://lantern-realty.com/unnamed/',0,'attachment','image/jpeg',0),(1535,0,'2021-01-29 20:46:36','2021-01-29 20:46:36','','IMG-2501','','inherit','','closed','','img-2501','','','2021-01-29 20:46:36','2021-01-29 20:46:36','',0,'https://lantern-realty.com/img-2501/',0,'attachment','image/jpeg',0),(1536,0,'2021-01-29 23:27:28','2021-01-29 23:27:28','','headshot2021','','inherit','','closed','','headshot2021','','','2021-01-29 23:27:28','2021-01-29 23:27:28','',0,'https://lantern-realty.com/headshot2021/',0,'attachment','image/jpeg',0),(1537,0,'2021-01-30 00:14:27','2021-01-30 00:14:27','','headshot2021','','inherit','','closed','','headshot2021-2','','','2021-01-30 00:14:27','2021-01-30 00:14:27','',0,'https://lantern-realty.com/headshot2021-2/',0,'attachment','image/jpeg',0),(1538,0,'2021-01-30 00:20:55','2021-01-30 00:20:55','','headshot2021','','inherit','','closed','','headshot2021-3','','','2021-01-30 00:20:55','2021-01-30 00:20:55','',0,'https://lantern-realty.com/headshot2021-3/',0,'attachment','image/jpeg',0),(1539,6,'2021-02-02 19:47:33','2021-02-02 19:47:33','<div dir=\"ltr\">This is your ZOOM invite to our team meeting tomorrow at 1130am.  Lighthouse Visuals will be presenting to us.  We will also be discussing various different topics.  If you have any questions or concerns please let me know.  Look forward to seeing you tomorrow. <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Lantern Team Meeting<br>Time: Feb 3, 2021 11:30 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/84572285450?pwd=YjAxWGlNdmw5T0Z6cHN3T1Q2bUpRdz09\">https://us02web.zoom.us/j/84572285450?pwd=YjAxWGlNdmw5T0Z6cHN3T1Q2bUpRdz09</a><br><br>Meeting ID: 845 7228 5450<br>Passcode: 871679<br>One tap mobile<br>+13126266799,,84572285450#,,,,*871679# US (Chicago)<br>+19292056099,,84572285450#,,,,*871679# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 845 7228 5450<br>Passcode: 871679<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kcR9KEcd6o\">https://us02web.zoom.us/u/kcR9KEcd6o</a><br><br><div><br></div>','Lantern Team Meeting - 2/3 @ 1130am','','publish','closed','open','','lantern-team-meeting-2-3-1130am','','','2021-02-02 19:47:33','2021-02-02 19:47:33','',0,'https://lantern-realty.com/?p=1539',0,'post','',0),(1540,6,'2021-02-02 23:26:19','2021-02-02 23:26:19','<div dir=\"ltr\"><a href=\"https://youtu.be/q5raxj76ujU\">https://youtu.be/q5raxj76ujU</a><br clear=\"all\"><div><br></div>','KINDLE Class - Pricing CMA link','','publish','closed','open','','kindle-class-pricing-cma-link','','','2021-02-02 23:26:19','2021-02-02 23:26:19','',0,'https://lantern-realty.com/?p=1540',0,'post','',0),(1543,6,'2021-02-06 14:50:30','2021-02-06 14:50:30','','LRD-Roster_020521.xlsx','','inherit','closed','closed','','lrd-roster_020521','','','2021-02-06 14:50:30','2021-02-06 14:50:30','',1541,'https://lantern-realty.com/wp-content/uploads/2021/02/LRD-Roster_020521.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(276,1,'2018-08-25 15:52:01','2018-08-25 15:52:01','','5stars','','inherit','open','closed','','5stars','','','2018-08-25 15:52:30','2018-08-25 15:52:30','',2,'http://lantern-realty.com/wp-content/uploads/2018/08/5stars.png',0,'attachment','image/png',0),(1526,0,'2021-01-28 15:06:40','2021-01-28 15:06:40','','Gretchen B Photography_Janice_027 Square for Web','','inherit','','closed','','gretchen-b-photography_janice_027-square-for-web-2','','','2021-01-28 15:06:40','2021-01-28 15:06:40','',0,'https://lantern-realty.com/gretchen-b-photography_janice_027-square-for-web-2/',0,'attachment','image/jpeg',0),(1662,6,'2021-03-01 14:46:33','2021-03-01 14:46:33','<div dir=\"ltr\">Below is the meeting invite.  Terry will be speaking regarding VA loans and mobile homes and PrimeStreet is scheduled to speak as well regarding their lead generations platform.  <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Team Meeting - 3/3 @ 11am<br>Time: Mar 3, 2021 11:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/81181815093?pwd=SU13eUZFU1FZRGNIZU9TTTYvd0YzUT09\">https://us02web.zoom.us/j/81181815093?pwd=SU13eUZFU1FZRGNIZU9TTTYvd0YzUT09</a><br><br>Meeting ID: 811 8181 5093<br>Passcode: 076916<br>One tap mobile<br>+13017158592,,81181815093#,,,,*076916# US (Washington DC)<br>+13126266799,,81181815093#,,,,*076916# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 811 8181 5093<br>Passcode: 076916<br>Find your local number: <a href=\"https://us02web.zoom.us/u/ken9catIim\">https://us02web.zoom.us/u/ken9catIim</a><br><br><div><br></div>','Team Meeting - 3/3 @ 11am','','publish','closed','open','','team-meeting-3-3-11am','','','2021-03-01 14:46:33','2021-03-01 14:46:33','',0,'https://lantern-realty.com/?p=1662',0,'post','',0),(1529,1,'2021-01-29 00:58:25','2021-01-29 00:58:25','<!-- wp:paragraph -->\n<p>Janice provides all of her clients with a level of service that includes going over and above to make sure they are taken care of from start to finish. Her vast knowledge and years of listing, marketing &amp; selling homes in all types of markets has served her and her clients well. Excellence in client representation, professional negotiation, honesty, trust, fairness and mutual respect in business are trademarks of what you can expect from Janice. She recognizes that buying a home can be stressful and the most folks, it’s the largest and most important investment; she doesn’t take that lightly. In Janices personal life, you will find her either working out, cooking, social/ballroom dancing, crocheting, entertaining or simply doing a little crochet while watching HGTV. She is married to David Cannon who is retiring from UAB in Birmingham, AL to work alongside her in real estate.</p>\n<!-- /wp:paragraph -->','Janice Cannon','','inherit','closed','closed','','1523-revision-v1','','','2021-01-29 00:58:25','2021-01-29 00:58:25','',1523,'https://lantern-realty.com/1523-revision-v1/',0,'revision','',0),(1530,1,'2021-01-29 00:59:19','2021-01-29 00:59:19','','Janice_Cannon','','inherit','','closed','','janice_cannon','','','2021-01-29 00:59:19','2021-01-29 00:59:19','',1523,'https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg',0,'attachment','image/jpeg',0),(383,1,'2018-11-02 19:32:01','2018-11-02 19:32:01','I have lived in the Concord area since 2003, and have enjoyed watching our area flourish. My family is deeply involved in the community with church, school, and sports. Being a working mother has given me the advantage of truly understanding the importance of time management and organization. I work hard and efficiently, and always keep my clients informed from the first meeting to the closing table and beyond. I have always said, a knowledgeable client is a happy client!When I am not meeting with clients, I am still working. Real Estate and Technology are ALWAYS changing. Taking classes, meeting with other professionals, and keeping up with current events help me stay a step ahead.First time home buyers are my passion – I embrace the time and wealth of information that goes into it, and strive to have that reflect in the relationships I share with my clients.','Kim Drakulich','','publish','closed','closed','','kim-drakulich','','','2021-11-22 00:25:46','2021-11-22 00:25:46','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=383',31,'houzez_agent','',0),(384,1,'2018-11-02 19:30:14','2018-11-02 19:30:14','','Kim_Drakulich','','inherit','open','closed','','kim_drakulich','','','2018-11-02 19:30:14','2018-11-02 19:30:14','',383,'https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg',0,'attachment','image/jpeg',0),(381,1,'2018-11-02 19:29:38','2018-11-02 19:29:38','','Crystal_Cauble','','inherit','open','closed','','crystal_cauble','','','2018-11-02 19:29:38','2018-11-02 19:29:38','',380,'https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg',0,'attachment','image/jpeg',0),(378,1,'2018-11-02 19:27:55','2018-11-02 19:27:55','','Courtney_Hedrick','','inherit','open','closed','','courtney_hedrick','','','2018-11-02 19:27:55','2018-11-02 19:27:55','',377,'https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg',0,'attachment','image/jpeg',0),(380,1,'2018-11-02 19:29:47','2018-11-02 19:29:47','I have been a resident of Cabarrus County for almost 30 years and absolutely love this area.&nbsp; I am originally from Raleigh and moved here after graduating from college at Appalachian State University.&nbsp; I settled here in Concord to get married and raise a family. After years of working in the financial industry, I decided to give real estate a try and I\'m hooked!&nbsp; I&nbsp;am eager to help you in any aspect of real estate and pride myself in being professional and dedicated to make your transaction as smooth as possible.&nbsp; In my spare time, I enjoy camping, the beach, reading and spending time with family and friends!','Crystal Cauble','','publish','closed','closed','','crystal-cauble','','','2020-09-19 19:20:04','2020-09-19 19:20:04','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=380',19,'houzez_agent','',0),(374,1,'2018-11-02 19:25:51','2018-11-02 19:25:51','','Cindy_Widenhouse','','inherit','open','closed','','cindy_widenhouse','','','2018-11-02 19:25:51','2018-11-02 19:25:51','',373,'https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg',0,'attachment','image/jpeg',0),(377,1,'2018-11-02 19:28:52','2018-11-02 19:28:52','Courtney is a native North Carolinian and long time resident of Kannapolis. She is a recent\nempty nester with both of her boys attending college. Those who know Courtney best can\nattest to her love of animals - you will often see her with her Labrador Retriever Molly in tow.\nHelping you find your dream home is her passion - let Courtney “light your way home”.','Courtney Hedrick','','draft','closed','closed','','courtney-hedrick','','','2021-02-18 14:14:05','2021-02-18 14:14:05','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=377',46,'houzez_agent','',0),(373,1,'2018-11-02 19:25:57','2018-11-02 19:25:57','I am a local having grown up in Concord leaving only for a 20-year military mission with my husband, Brent, to Anchorage, Alaska. Moved back to the area to be closer to family. Have raised two wonderful children, Courtney and Parker. Devoted to God and enjoy singing in my church choir and Praise Team. I am professional, committed and eager in assisting my clients with their best interest in mind. Call me and let me gain your trust and \"light your way home\".\n\nYour Property = My Priority','Cindy Widenhouse','','draft','closed','closed','','cindy-widenhouse','','','2021-02-18 14:14:44','2021-02-18 14:14:44','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=373',103,'houzez_agent','',0),(390,1,'2019-01-04 23:35:05','2019-01-04 23:35:05','','Melissa Jackling','','publish','closed','closed','','melissa-jackling','','','2020-09-19 19:38:42','2020-09-19 19:38:42','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=390',55,'houzez_agent','',0),(370,1,'2018-11-02 19:21:55','2018-11-02 19:21:55','','Jeremy Aldridge','','publish','closed','closed','','jeremy-aldridge','','','2020-09-19 19:14:57','2020-09-19 19:14:57','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=370',4,'houzez_agent','',0),(372,1,'2018-11-02 19:23:47','2018-11-02 19:23:47','','Jeremy_Aldridge','','inherit','open','closed','','jeremy_aldridge','','','2018-11-02 19:23:47','2018-11-02 19:23:47','',370,'https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg',0,'attachment','image/jpeg',0),(1541,6,'2021-02-06 14:50:30','2021-02-06 14:50:30','<div dir=\"ltr\">Just a few notes for your weekend...<div><br></div><div>Notes from our <b>team meeting</b> on Wednesday 2/3</div><div>- Hayley spoke to us briefly about NCREC rules regarding video and photos on social media of other company listings.  Make sure you have the listing agents permission IN WRITING before posting.  </div><div>- Dotloop classes will now be done 1 on 1 with Paula.  Call or text her for a time.  </div><div>- Forms class will continue with Melissa Yates.  See attached Education Calendar.</div><div>- Q1 dues have been billed.  If you did not get an invoice please let me know. </div><div>- Cancel checks, if you have a closing and the commission check hasn&#39;t arrived, let us know.  We do not want to cash a commission check that payment has been halted to.  If this happens in the future, you will be charged the bank service fee and it will be deducted from your commission check.</div><div>- We will be adding two offices to our Kannapolis office.  They will be available for agent use to give you some privacy, especially if you are with clients. If anyone would like to rent one of these offices on a permanent basis, please let myself, Paula or Deana know.  Pricing has not been set yet.</div><div>- SUBMIT YOUR LOOPS IN A TIMELY MANNER!!!!!!</div><div>- Our classes &amp; meetings that are being videoed will now be posted to our YouTube channel as \"UNLISTED\".  You will need a link to access.  That link will be posted to our webpage for you to access.  We did this change so our private classes and meetings aren&#39;t available to the general public.  </div><div>- Lastly, we would like to welcome Katherine Lawing!  She is our new BIC for our brand new office in Asheville.  Katherine came to us very highly recommended and we are truly blessed to have her one board.  </div><div><br></div><div>Our Education Calendar is PACKED this week!  See below what is coming up.</div><div>- Paula will be continuing our KINDLE Classes on Tuesday at 1pm.  She will be teaching \"The Art of Negotiations\".</div><div>- Also on Tuesday morning @ 930 Jenna Cook will be teaching a class on Canva.com.  This website is easy to use and allows you to create social media content.  </div><div>- On Thursday morning at 930 Jenna will continue in her Social Media series with a class on \"Instagram\".  Jenna has done a phenomenal job on building her brand on social media.  So you will be learning from one of the best. </div><div>- Lastly on Thursday at 3pm we will be hosting a hybrid meeting at the Kannapolis office and online.  This class will be taught by Nic Lovelace from Knipp Law. Its called \"It&#39;s Not Your Fault But it Will Be Your Problem\".  You will need to sign up to come in person as our seating will be limited due to Covid - 19 restrictions.  However, if you can&#39;t make it in person it will be on Zoom as well.  </div><div><br></div><div>Thanks again for all you folks do.  Please let me know if you have questions or concerns. <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/2021-Educational-Calendar.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/LRD-Roster_020521.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> LRD-Roster_020521.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-7','','','2021-02-06 14:50:30','2021-02-06 14:50:30','',0,'https://lantern-realty.com/?p=1541',0,'post','',0),(1514,1,'2021-01-28 00:45:20','2021-01-28 00:45:20','<!-- wp:paragraph -->\n<p>Maranda brings experience as both a Realtor and insurance agent to assist her clients with all their real estate and insurance needs. Maranda will be a strong advocate for you rather you are looking to buy, rent or sell your home and due to her many connections in the industry is a good point of contact for all your home needs. She is currently a resident of Harrisburg, NC but has lived in many different areas including NY, FL, TX and NC. When not assisting clients she enjoys traveling and spending time with family and friends.</p>\n<!-- /wp:paragraph -->','Maranda Allen','','publish','closed','closed','','maranda-allen','','','2021-01-28 00:51:56','2021-01-28 00:51:56','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1514',5,'houzez_agent','',0),(1515,1,'2021-01-28 00:43:54','2021-01-28 00:43:54','<!-- wp:paragraph -->\n<p>Maranda brings experience as both a Realtor and insurance agent to assist her clients with all their real estate and insurance needs. Maranda will be a strong advocate for you rather you are looking to buy, rent or sell your home and due to her many connections in the industry is a good point of contact for all your home needs. She is currently a resident of Harrisburg, NC but has lived in many different areas including NY, FL, TX and NC. When not assisting clients she enjoys traveling and spending time with family and friends.</p>\n<!-- /wp:paragraph -->','Maranda Allen','','inherit','closed','closed','','1514-revision-v1','','','2021-01-28 00:43:54','2021-01-28 00:43:54','',1514,'https://lantern-realty.com/1514-revision-v1/',0,'revision','',0),(1516,1,'2021-01-28 00:44:47','2021-01-28 00:44:47','','Maranda_Allen','','inherit','','closed','','maranda_allen','','','2021-01-28 00:44:47','2021-01-28 00:44:47','',1514,'https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg',0,'attachment','image/jpeg',0),(1517,1,'2021-01-28 00:48:44','2021-01-28 00:48:44','<!-- wp:paragraph -->\n<p>I am a proud mother of three beautiful girls. Kannapolis native and A.L. Brown graduate! I am very ethical and hard working! I am very dedicated to helping with any of your real estate needs, and I will always have my clients best interest at heart! I would love to guide you home!</p>\n<!-- /wp:paragraph -->','Renee Chambers','','draft','closed','closed','','renee-chambers','','','2021-11-22 00:34:55','2021-11-22 00:34:55','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1517',24,'houzez_agent','',0),(1518,1,'2021-01-28 00:47:01','2021-01-28 00:47:01','<!-- wp:paragraph -->\n<p>I am a proud mother of three beautiful girls. Kannapolis native and A.L. Brown graduate! I am very ethical and hard working! I am very dedicated to helping with any of your real estate needs, and I will always have my clients best interest at heart! I would love to guide you home!</p>\n<!-- /wp:paragraph -->','Renee Chambers','','inherit','closed','closed','','1517-revision-v1','','','2021-01-28 00:47:01','2021-01-28 00:47:01','',1517,'https://lantern-realty.com/1517-revision-v1/',0,'revision','',0),(1519,1,'2021-01-28 00:47:58','2021-01-28 00:47:58','','Renee_Chambers','','inherit','','closed','','renee_chambers','','','2021-01-28 00:47:58','2021-01-28 00:47:58','',1517,'https://lantern-realty.com/wp-content/uploads/2021/01/Renee_Chambers.png',0,'attachment','image/png',0),(1520,1,'2021-01-28 00:55:02','2021-01-28 00:55:02','<!-- wp:paragraph -->\n<p>My name is Brenda Bingham and I have lived in the Concord area since 2007. I was born and raised in Wyoming, and after moving around the country my family and I have decided that the NC climate is the one for us. I have been a realtor since my children graduated high school, having been a stay-at-home mom for years. I discovered all of the extra time I had on my hands was pretty boring. Helping people is something I enjoy doing so I thought that real estate would be a good choice for me. It was. I enjoy meeting new people, making new friends, and hearing a good story (anything about dogs always catches my attention.) Being able to assist these new friends through a major step in their life is a bonus. I believe it\'s my duty to help guide my clients through the process and also educate them. I do this through honesty, integrity, communication, and the desire to help.</p>\n<!-- /wp:paragraph -->','Brenda Bingham','','publish','closed','closed','','brenda-sue-bingham','','','2021-02-18 14:29:25','2021-02-18 14:29:25','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1520',15,'houzez_agent','',0),(1521,1,'2021-01-28 00:54:09','2021-01-28 00:54:09','<!-- wp:paragraph -->\n<p>My name is Brenda Bingham and I have lived in the Concord area since 2007. I was born and raised in Wyoming, and after moving around the country my family and I have decided that the NC climate is the one for us. I have been a realtor since my children graduated high school, having been a stay-at-home mom for years. I discovered all of the extra time I had on my hands was pretty boring. Helping people is something I enjoy doing so I thought that real estate would be a good choice for me. It was. I enjoy meeting new people, making new friends, and hearing a good story (anything about dogs always catches my attention.) Being able to assist these new friends through a major step in their life is a bonus. I believe it\'s my duty to help guide my clients through the process and also educate them. I do this through honesty, integrity, communication, and the desire to help.</p>\n<!-- /wp:paragraph -->','Brenda Sue Bingham','','inherit','closed','closed','','1520-revision-v1','','','2021-01-28 00:54:09','2021-01-28 00:54:09','',1520,'https://lantern-realty.com/1520-revision-v1/',0,'revision','',0),(1522,1,'2021-01-28 00:54:48','2021-01-28 00:54:48','','Brenda_Sue_Bingham','','inherit','','closed','','brenda_sue_bingham','','','2021-01-28 00:54:48','2021-01-28 00:54:48','',1520,'https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg',0,'attachment','image/jpeg',0),(1523,1,'2021-01-28 00:57:36','2021-01-28 00:57:36','<!-- wp:paragraph -->\n<p>Janice provides all of her clients with a level of service that includes going over and above to make sure they are taken care of from start to finish. Her vast knowledge and years of listing, marketing &amp; selling homes in all types of markets has served her and her clients well. Excellence in client representation, professional negotiation, honesty, trust, fairness and mutual respect in business are trademarks of what you can expect from Janice. She recognizes that buying a home can be stressful and the most folks, it’s the largest and most important investment; she doesn’t take that lightly. In Janices personal life, you will find her either working out, cooking, social/ballroom dancing, crocheting, entertaining or simply doing a little crochet while watching HGTV. She is married to David Cannon who is retiring from UAB in Birmingham, AL to work alongside her in real estate.</p>\n<!-- /wp:paragraph -->','Janice Cannon','','publish','closed','closed','','janice-cannon','','','2021-01-29 00:59:47','2021-01-29 00:59:47','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1523',21,'houzez_agent','',0),(1524,1,'2021-01-28 00:56:47','2021-01-28 00:56:47','','Janice Cannon','','inherit','closed','closed','','1523-revision-v1','','','2021-01-28 00:56:47','2021-01-28 00:56:47','',1523,'https://lantern-realty.com/1523-revision-v1/',0,'revision','',0),(1531,1,'2021-01-29 01:02:10','2021-01-29 01:02:10','[[\"Last Name\",\"First Name\",\"Phone\",\"Email\",\"Home Office\",\"Team Role\",\"License #\",\"MLS ID\"],[\"Aldridge\",\"Jeremy\",\"704-773-0722\",\"kadaendeavorenterprises@gmail.com\",\"Kannapolis\",\"Broker\",306776,68707],[\"Allen\",\"Maranda\",\"704-819-7111\",\"Mandee704@hotmail.com\",\"Harrisburg\",\"Broker\",308723,71114],[\"Allison\",\"Sheila\",\"828-712-7843\",\"sheila.allison10@gmail.com\",\"Albemarle\",\"Broker\",307918,69499],[\"Amoakon\",\"Sabine\",\"704-433-8462\",\"sab1.homes@outlook.com\",\"Kannapolis\",\"Broker\",316331,78139],[\"Argabright\",\"Sherri Wiles\",\"704-202-0806\",\"sherriargabright@gmail.com\",\"Kannapolis\",\"Broker\",220340,97879],[\"Aylesworth\",\"Alan\",\"980-330-8401\",\"alan.aylesworth.lantern@gmail.com\",\"Salisbury\",\"Broker\",308001,69474],[\"Barber\",\"Casey\",\"678-516-5196\",\"casey.m.barber@gmail.com\",\"Kannapolis\",\"Broker\",309318,71136],[\"Baxter\",\"Cheryl\",\"704-796-8843\",\"cmbaxter2@gmail.com\",\"Kannapolis\",\"Broker\",298432,61673],[\"Bendig\",\"Robbie\",\"704-640-4171\",\"rbendig89@gmail.com\",\"Salisbury\",\"Broker\",303589,65910],[\"Benton\",\"Toni\",\"980-521-2696\",\"tbenton81@gmail.com\",\"Kannapolis\",\"Broker\",310611,72825],[\"Bird\",\"April\",\"901-569-3161\",\"abirdhomes@gmail.com\",\"Mooresville\",\"Broker\",301315,63368],[\"Boger\",\"Annie\",\"980-521-3988\",\"Annie.homes4u@gmail.com\",\"Kannapolis\",\"Broker\",291550,50846],[\"Brown\",\"Elizabeth\",\"704-421-0317\",\"elizabethbrownrealtor@gmail.com\",\"Kannapolis\",\"Broker\",302094,62799],[\"Brown\",\"Brenda\",\"704-796-1948\",\"seniors2@twc.com\",\"Kannapolis\",\"Broker\",302340,70430],[\"Bullock\",\"Dale\",\"704-791-5457\",\"dale.bullock2014realtor@gmail.com\",\"Kannapolis\",\"Broker\",280284,34573],[\"Cannon\",\"Janice\",\"205-514-5124\",\"janiceacannon@gmail.com\",\"Harrisburg\",\"Broker\",322349,83949],[\"Cauble\",\"Crystal\",\"980-521-8431\",\"crystalcauble27@gmail.com\",\"Kannapolis\",\"Broker\",297260,60165],[\"Caudill\",\"Evonne\",\"704-791-7012\",\"ecaudill12@gmail.com\",\"Kannapolis\",\"Broker\",242767,52756],[\"Chambers\",\"Renee\",\"704-925-7938\",\"NC.Realtor.Renee@gmail.com\",\"Kannapolis\",\"Broker\",316110,82316],[\"Chandler\",\"Emily\",\"615-397-1925\",\"emilychandler.realtor@gmail.com\",\"Harrisburg\",\"Broker\",297265,60204],[\"Christy\",\"Meredith\",\"980-248-4097\",\"meredith@meredithchristy.com\",\"Harrisburg\",\"Broker\",298605,61273],[\"Clark\",\"Tracie\",\"704-900-4637\",\"tracieclarksells@gmail.com\",\"Harrisburg\",\"Broker\",238413,29140],[\"Clodfelter\",\"Jody\",\"704-438-2190\",\"jodyc1972@gmail.com\",\"Albemarle\",\"Broker\",297153,58787],[\"Cloward\",\"Jessica\",\"704-502-8383\",\"jessicacloward1@gmail.com\",\"Salisbury\",\"Broker - in - Charge\",298274,57857],[\"Cody\",\"Amanda\",\"980-581-1399\",\"amandaearnhardt@yahoo.com\",\"Albemarle\",\"Broker\",217780,50220],[\"Cook\",\"Jenna\",\"704-960-5591\",\"4jennacook@gmail.com\",\"Kannapolis\",\"Broker\",293117,53960],[\"Crowder\",\"Lisa\",\"704-380-7455\",\"lisadcrowder@gmail.com\",\"Harrisburg\",\"Broker\",279316,32788],[\"Davis\",\"Michael\",\"\",\"mdavis@thewhiteoakgrove.com\",\"Kannapolis\",\"Broker\",289518,548508637],[\"Drakulich\",\"Kimberly\",\"704-778-6959\",\"kim.drakulich@gmail.com\",\"Kannapolis\",\"Broker\",277431,35684],[\"Dunphy\",\"Australia\",\"704-701-0177\",\"cdunphy51@hotmail,com\",\"Kannapolis\",\"Broker\",293885,67265],[\"Erion\",\"Ivonne\",\"704-796-3530\",\"ivonne@ivonneerion.com\",\"Kannapolis\",\"Broker\",289340,48565],[\"Evans\",\"Amy\",\"704-273-0107\",\"amyevansrealty@gmail.com\",\"Kannapolis\",\"Broker\",297737,59809],[\"Ferlauto\",\"Ashley\",\"980-333-8085\",\"ashleyferlauto@gmail.com\",\"Kannapolis\",\"Broker\",291080,50443],[\"Franklin\",\"Jeff\",\"704-787-4888\",\"jeff.franklin.realtor@gmail.com\",\"Salisbury\",\"Broker\",298704,61490],[\"Fullerton\",\"Michael\",\"980-318-4961\",\"mikefullerton72@gmail.com\",\"Albemarle\",\"Broker - in - Charge\",290662,51527],[\"Garcia\",\"Yira\",\"704-907-9573\",\"ygarciarealty@gmail.com\",\"Kannapolis\",\"Broker\",300114,63290],[\"Gearing\",\"Lynnette\",\"704-699-6902\",\"lynnettegearing.realtor@gmail.com\",\"Kannapolis\",\"Broker\",306394,69473],[\"Griffin\",\"Deborah\",\"980-428-2462\",\"deborahg142@gmail.com\",\"Salisbury\",\"Broker\",145465,56410],[\"Hager\",\"Cathy\",\"980-521-4429\",\"1cathyhager@gmail.com\",\"Kannapolis\",\"Broker\",294095,54235],[\"Hallman\",\"Liz\",\"980-621-9575\",\"lizphallman@gmail.com\",\"Kannapolis\",\"Broker\",281082,35806],[\"Haywood\",\"Conard\",\"704-467-5102\",\"conardhaywood@gmail.com\",\"Kannapolis\",\"Broker\",319615,\"\"],[\"Hedrick\",\"Courtney\",\"704-608-7893\",\"hedrickhomes@gmail.com\",\"Kannapolis\",\"Broker\",301363,63492],[\"Hedrick\",\"William\",\"704-773-9204\",\"will@thewillhedrick.com\",\"Kannapolis\",\"Broker\",314736,\"\"],[\"Hill\",\"Hosanna\",\"336-317-8050\",\"hill.hosanna@gmail.com\",\"Kannapolis\",\"Broker\",315320,76468],[\"Hiner\",\"Donna\",\"704-956-9898\",\"donnasellsrealestate1@gmail.com\",\"Harrisburg\",\"Broker\",272915,21485],[\"Howell\",\"Kimberly\",\"704-699-2600\",\"kdhowell1996@gmail.com\",\"Salisbury\",\"Broker\",302115,64440],[\"Jackling\",\"Melissa\",\"980-621-4623\",\"onlymyrealtormelissa@gmail.com\",\"Kannapolis\",\"Broker\",291920,51371],[\"Jalynski\",\"Christine\",\"704-749-4944\",\"cjalynskirealty@gmail.com\",\"Kannapolis\",\"Broker\",297054,58601],[\"Johnson\",\"Priscilla\",\"704-891-5386\",\"priscillajrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"\",80621],[\"Keller\",\"Kelly\",\"704-467-4485\",\"kelly.keller.realty@gmail.com\",\"Kannapolis\",\"Broker\",313269,74509],[\"Keller\",\"Margie\",\"704-245-2739\",\"margkellerhomes@gmail.com\",\"Salisbury\",\"Broker\",298750,61747],[\"Kidd\",\"Cheyenne\",\"980-939-3809\",\"cheyennekidd00@gmail.com\",\"Salisbury\",\"Broker\",318995,81249],[\"LaCroix\",\"Melissa\",\"704-796-6531\",\"mlacroix.realty@gmail.com\",\"Kannapolis\",\"Broker\",303207,65548],[\"Lamb\",\"Dawn\",\"980-781-7385\",\"dawnlambrealtor@gmail.com\",\"Kannapolis\",\"Broker\",315881,77815],[\"Lambert\",\"Amanda\",\"704-400-0641\",\"teamlambert.sellsnc@gmail.com\",\"Kannapolis\",\"Broker\",25766,65579],[\"Lambert\",\"Jerry\",\"704-791-0429\",\"jerry.teamlambert@gmail.com\",\"Kannapolis\",\"Broker\",321038,81412],[\"Laney\",\"Sandi\",\"704-773-5886\",\"sandilaney2@gmail.com\",\"Kannapolis\",\"Broker\",272563,22259],[\"Leonard\",\"Bret\",\"980-521-7156\",\"buywithbret@gmail.com\",\"Salisbury\",\"Broker\",303052,65034],[\"Matthews\",\"Helen\",\"704-796-4026\",\"hamatthews@gmail.com\",\"Kannapolis\",\"Broker\",303222,65519],[\"McCauley\",\"Lindsey\",\"704-236-7850\",\"lmccauley727@gmail.com\",\"Kannapolis\",\"Broker\",298645,61546],[\"McCLure\",\"Taylor\",\"980-253-0223\",\"taylormcclure23@gmail.com\",\"Kannapolis\",\"Broker\",321999,82269],[\"Merrell\",\"Connie\",\"704-701-1678\",\"connie.merrell.realtor@gmail.com\",\"Kannapolis\",\"Broker\",320338,81061],[\"Miltz\",\"Deanna\",\"704-634-6289\",\"dmiltzrealtor@gmail.com\",\"Harrisburg\",\"Broker\",298941,61437],[\"Monrad\",\"Rachel\",\"704-682-9422\",\"rachel@randsrealtygroup.com\",\"Mooresville\",\"Broker\",251860,32949],[\"Nutter\",\"Julie\",\"240-888-7493\",\"teamnutter@gmail.com\",\"Kannapolis\",\"Broker\",293824,48403],[\"Overcash\",\"Jason\",\"980-622-6327\",\"jasonovercashrealty@gmail.com\",\"Kannapolis\",\"Broker\",305546,68295],[\"Overcash\",\"Laura\",\"704-699-0765\",\"lovercashre@gmail.com\",\"Kannapolis\",\"Broker\",301686,63472],[\"Petty\",\"Deana\",\"704-258-8068\",\"deana327@gmail.com\",\"Kannapolis\",\"BIC/Owner\",263080,72155],[\"Pricher\",\"Lisa\",\"704-288-7392\",\"ncrealtorlisa@gmail.com\",\"Harrisburg\",\"Broker\",276287,24658],[\"Puckett\",\"Chris\",\"704-298-5872\",\"ch2realty@gmail.com\",\"Kannapolis\",\"Qualifying Broker/Owner\",279213,32613],[\"Queen\",\"Rodney\",\"704-239-3617\",\"rodneque@aol.com\",\"Salisbury\",\"Broker\",197764,18091],[\"Rhew\",\"Rick\",\"704-491-2458\",\"ricksellsnc@gmail.com\",\"Harrisburg\",\"Broker\",288631,49282],[\"Robinson\",\"Kelly\",\"704-699-2268\",\"kelly.robinson.realtor@gmail.com\",\"Kannapolis\",\"Broker\",316981,79218],[\"Rogers\",\"Hayley\",\"704-431-2816\",\"hayley.realestate.rogers@gmail.com\",\"Harrisburg\",\"Broker - in - Charge\",281085,35693],[\"Romesburg\",\"Sarah\",\"336-466-1646\",\"sarah@randsrealtygroup.com\",\"Mooresville\",\"Broker\",279215,32982],[\"Sadler\",\"Kimberly\",\"704-798-8338\",\"kimsadler.realtor@gmail.com\",\"Kannapolis\",\"Broker\",290260,49723],[\"Severt\",\"Paula\",\"704-232-3433\",\"paulasevert@yahoo.com\",\"Kannapolis\",\"Broker/Owner\",256100,68433],[\"Sherin\",\"Chelsi\",\"570-690-3723\",\"chelsi.sherin@gmail.com\",\"Kannapolis\",\"Broker\",317621,79645],[\"Sides\",\"Holden\",\"704-699-2092\",\"sideshb94@yahoo.com\",\"Kannapolis\",\"Broker\",322169,\"\"],[\"Sloan Holshouser\",\"Courtney\",\"704-754-7104\",\"csloansellshomes@gmail.com\",\"Salisbury\",\"Broker\",314926,\"\"],[\"Starnes\",\"Susan\",\"704-305-0040\",\"susansellsnchomes@gmail.com\",\"Harrisburg\",\"Broker\",304452,66546],[\"Stillinger\",\"Ethan\",\"704-957-1282\",\"ethanstillingerlrd@gmail.com\",\"Kannapolis\",\"Broker\",283899,39819],[\"Strickland\",\"Tricia\",\"704-791-7314\",\"tricia.strickland927@gmail.com\",\"Kannapolis\",\"Broker\",314178,75477],[\"Sue Bingham\",\"Brenda\",\"704-787-2539\",\"brenda@bingham.cc\",\"Albemarle\",\"Broker\",302334,65004],[\"Suther\",\"John\",\"704-622-1432\",\"johnsutherllc@gmail.com\",\"Kannapolis\",\"Broker\",309445,71221],[\"Thompson\",\"Chuck\",\"704-701-0129\",\"crtbroker@gmail.com\",\"Kannapolis\",\"Broker\",278357,31317],[\"Trask\",\"Kimberly\",\"336-906-0848\",\"kimberlyktrask@gmail.com\",\"Kannapolis\",\"Broker\",312666,75085],[\"Watson\",\"Brianne\",\"704-791-3272\",\"briannewatsonrealtor@gmail.com\",\"Kannapolis\",\"Broker\",293189,53736],[\"Widenhouse\",\"Cindy\",\"704-795-8017\",\"cindy.s.widenhouse@gmail.com\",\"Kannapolis\",\"Broker\",299028,61885],[\"Wilson\",\"Rick\",\"704-996-9902\",\"richard.wilson4565@gmail.com\",\"Kannapolis\",\"Broker\",321788,81743],[\"Wiser\",\"Paige\",\"704-904-1903\",\"PaigeWiserRealtor@gmail.com\",\"Salisbury\",\"Broker\",309172,71081],[\"Wooley\",\"Todd\",\"704-904-7162\",\"twooleyrealty@gmail.com\",\"Kannapolis\",\"Broker\",309536,71163],[\"Yates\",\"Melissa\",\"704-239-3835\",\"melissayates4u@gmail.com\",\"Salisbury\",\"Broker\",307917,69428],[\"Zhang\",\"Min\",\"319-471-1622\",\"realtymin77@gmail.com\",\"Harrisburg\",\"Broker\",299816,63292]]','Team Directory','','inherit','closed','closed','','1199-revision-v1','','','2021-01-29 01:02:10','2021-01-29 01:02:10','',1199,'https://lantern-realty.com/1199-revision-v1/',0,'revision','',0),(1525,1,'2021-01-28 01:02:24','2021-01-28 01:02:24','[[\"Last Name\",\"First Name\",\"Phone\",\"Email\",\"Home Office\",\"Team Role\",\"License #\",\"MLS ID\"],[\"Aldridge\",\"Jeremy\",\"704-773-0722\",\"kadaendeavorenterprises@gmail.com\",\"Kannapolis\",\"Broker\",306776,68707],[\"Allen\",\"Maranda\",\"704-819-7111\",\"Mandee704@hotmail.com\",\"Harrisburg\",\"Broker\",308723,71114],[\"Allison\",\"Sheila\",\"828-712-7843\",\"sheila.allison10@gmail.com\",\"Albemarle\",\"Broker\",307918,69499],[\"Amoakon\",\"Sabine\",\"704-433-8462\",\"sab1.homes@outlook.com\",\"Kannapolis\",\"Broker\",316331,78139],[\"Argabright\",\"Sherri Wiles\",\"704-202-0806\",\"sherriargabright@gmail.com\",\"Kannapolis\",\"Broker\",220340,97879],[\"Aylesworth\",\"Alan\",\"980-330-8401\",\"alan.aylesworth.lantern@gmail.com\",\"Salisbury\",\"Broker\",308001,69474],[\"Barber\",\"Casey\",\"678-516-5196\",\"casey.m.barber@gmail.com\",\"Kannapolis\",\"Broker\",309318,71136],[\"Baxter\",\"Cheryl\",\"704-796-8843\",\"cmbaxter2@gmail.com\",\"Kannapolis\",\"Broker\",298432,61673],[\"Bendig\",\"Robbie\",\"704-640-4171\",\"rbendig89@gmail.com\",\"Salisbury\",\"Broker\",303589,65910],[\"Benton\",\"Toni\",\"980-521-2696\",\"tbenton81@gmail.com\",\"Kannapolis\",\"Broker\",310611,72825],[\"Bird\",\"April\",\"901-569-3161\",\"abirdhomes@gmail.com\",\"Kannapolis\",\"Broker\",301315,63368],[\"Boger\",\"Annie\",\"980-521-3988\",\"Annie.homes4u@gmail.com\",\"Kannapolis\",\"Broker\",291550,50846],[\"Brown\",\"Elizabeth\",\"704-421-0317\",\"elizabethbrownrealtor@gmail.com\",\"Kannapolis\",\"Broker\",302094,62799],[\"Brown\",\"Brenda\",\"704-796-1948\",\"seniors2@twc.com\",\"Kannapolis\",\"Broker\",302340,70430],[\"Bullock\",\"Dale\",\"704-791-5457\",\"dale.bullock2014realtor@gmail.com\",\"Kannapolis\",\"Broker\",280284,34573],[\"Cannon\",\"Janice\",\"205-514-5124\",\"janiceacannon@gmail.com\",\"Harrisburg\",\"Broker\",\"\",\"\"],[\"Cauble\",\"Crystal\",\"980-521-8431\",\"crystalcauble27@gmail.com\",\"Kannapolis\",\"Broker\",297260,60165],[\"Caudill\",\"Evonne\",\"704-791-7012\",\"ecaudill12@gmail.com\",\"Kannapolis\",\"Broker\",242767,52756],[\"Chambers\",\"Renee\",\"704-925-7938\",\"NC.Realtor.Renee@gmail.com\",\"Kannapolis\",\"Broker\",316110,82316],[\"Chandler\",\"Emily\",\"615-397-1925\",\"emilychandler.realtor@gmail.com\",\"Harrisburg\",\"Broker\",297265,60204],[\"Christy\",\"Meredith\",\"980-248-4097\",\"meredith@meredithchristy.com\",\"Harrisburg\",\"Broker\",298605,61273],[\"Clark\",\"Tracie\",\"704-900-4637\",\"tracieclarksells@gmail.com\",\"Harrisburg\",\"Broker\",238413,29140],[\"Clodfelter\",\"Jody\",\"704-438-2190\",\"jodyc1972@gmail.com\",\"Albemarle\",\"Broker\",297153,58787],[\"Cloward\",\"Jessica\",\"704-502-8383\",\"jessicacloward1@gmail.com\",\"Salisbury\",\"Broker - in - Charge\",298274,57857],[\"Cody\",\"Amanda\",\"980-581-1399\",\"amandaearnhardt@yahoo.com\",\"Albemarle\",\"Broker\",217780,50220],[\"Cook\",\"Jenna\",\"704-960-5591\",\"4jennacook@gmail.com\",\"Kannapolis\",\"Broker\",293117,53960],[\"Crowder\",\"Lisa\",\"704-380-7455\",\"lisadcrowder@gmail.com\",\"Harrisburg\",\"Broker\",279316,32788],[\"Davis\",\"Michael\",\"\",\"mdavis@thewhiteoakgrove.com\",\"Kannapolis\",\"Broker\",289518,548508637],[\"Drakulich\",\"Kimberly\",\"704-778-6959\",\"kim.drakulich@gmail.com\",\"Kannapolis\",\"Broker\",277431,35684],[\"Dunphy\",\"Australia\",\"704-701-0177\",\"cdunphy51@hotmail,com\",\"Kannapolis\",\"Broker\",293885,67265],[\"Erion\",\"Ivonne\",\"704-796-3530\",\"ivonne@ivonneerion.com\",\"Kannapolis\",\"Broker\",289340,48565],[\"Evans\",\"Amy\",\"704-273-0107\",\"amyevansrealty@gmail.com\",\"Kannapolis\",\"Broker\",297737,59809],[\"Ferlauto\",\"Ashley\",\"980-333-8085\",\"ashleyferlauto@gmail.com\",\"Kannapolis\",\"Broker\",291080,50443],[\"Franklin\",\"Jeff\",\"704-787-4888\",\"jeff.franklin.realtor@gmail.com\",\"Salisbury\",\"Broker\",298704,61490],[\"Fullerton\",\"Michael\",\"980-318-4961\",\"mikefullerton72@gmail.com\",\"Albemarle\",\"Broker - in - Charge\",290662,51527],[\"Garcia\",\"Yira\",\"704-907-9573\",\"ygarciarealty@gmail.com\",\"Kannapolis\",\"Broker\",300114,63290],[\"Gearing\",\"Lynnette\",\"704-699-6902\",\"lynnettegearing.realtor@gmail.com\",\"Kannapolis\",\"Broker\",306394,69473],[\"Griffin\",\"Deborah\",\"980-428-2462\",\"deborahg142@gmail.com\",\"Salisbury\",\"Broker\",145465,56410],[\"Hager\",\"Cathy\",\"980-521-4429\",\"1cathyhager@gmail.com\",\"Kannapolis\",\"Broker\",294095,54235],[\"Hallman\",\"Liz\",\"980-621-9575\",\"lizphallman@gmail.com\",\"Kannapolis\",\"Broker\",281082,35806],[\"Haywood\",\"Conard\",\"704-467-5102\",\"conardhaywood@gmail.com\",\"Kannapolis\",\"Broker\",319615,\"\"],[\"Hedrick\",\"Courtney\",\"704-608-7893\",\"hedrickhomes@gmail.com\",\"Kannapolis\",\"Broker\",301363,63492],[\"Hedrick\",\"William\",\"704-773-9204\",\"will@thewillhedrick.com\",\"Kannapolis\",\"Broker\",314736,\"\"],[\"Hill\",\"Hosanna\",\"336-317-8050\",\"hill.hosanna@gmail.com\",\"Kannapolis\",\"Broker\",315320,76468],[\"Hiner\",\"Donna\",\"704-956-9898\",\"donnasellsrealestate1@gmail.com\",\"Harrisburg\",\"Broker\",272915,21485],[\"Howell\",\"Kimberly\",\"704-699-2600\",\"kdhowell1996@gmail.com\",\"Salisbury\",\"Broker\",302115,64440],[\"Jackling\",\"Melissa\",\"980-621-4623\",\"onlymyrealtormelissa@gmail.com\",\"Kannapolis\",\"Broker\",291920,51371],[\"Jalynski\",\"Christine\",\"704-749-4944\",\"cjalynskirealty@gmail.com\",\"Kannapolis\",\"Broker\",297054,58601],[\"Johnson\",\"Priscilla\",\"704-891-5386\",\"priscillajrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"\",80621],[\"Keller\",\"Kelly\",\"704-467-4485\",\"kelly.keller.realty@gmail.com\",\"Kannapolis\",\"Broker\",313269,74509],[\"Keller\",\"Margie\",\"704-245-2739\",\"margkellerhomes@gmail.com\",\"Salisbury\",\"Broker\",298750,61747],[\"Kidd\",\"Cheyenne\",\"980-939-3809\",\"cheyennekidd00@gmail.com\",\"Salisbury\",\"Broker\",318995,81249],[\"LaCroix\",\"Melissa\",\"704-796-6531\",\"mlacroix.realty@gmail.com\",\"Kannapolis\",\"Broker\",303207,65548],[\"Lamb\",\"Dawn\",\"980-781-7385\",\"dawnlambrealtor@gmail.com\",\"Kannapolis\",\"Broker\",315881,77815],[\"Lambert\",\"Amanda\",\"704-400-0641\",\"teamlambert.sellsnc@gmail.com\",\"Harrisburg\",\"Broker\",25766,65579],[\"Lambert\",\"Jerry\",\"704-791-0429\",\"jerry.teamlambert@gmail.com\",\"Harrisburg\",\"Broker\",321038,81412],[\"Laney\",\"Sandi\",\"704-773-5886\",\"sandilaney2@gmail.com\",\"Kannapolis\",\"Broker\",272563,22259],[\"Leonard\",\"Bret\",\"980-521-7156\",\"buywithbret@gmail.com\",\"Salisbury\",\"Broker\",303052,65034],[\"Matthews\",\"Helen\",\"704-796-4026\",\"hamatthews@gmail.com\",\"Kannapolis\",\"Broker\",303222,65519],[\"McCauley\",\"Lindsey\",\"704-236-7850\",\"lmccauley727@gmail.com\",\"Kannapolis\",\"Broker\",298645,61546],[\"McCLure\",\"Taylor\",\"980-253-0223\",\"taylormcclure23@gmail.com\",\"Kannapolis\",\"Broker\",321999,82269],[\"Merrell\",\"Connie\",\"704-701-1678\",\"connie.merrell.realtor@gmail.com\",\"Kannapolis\",\"Broker\",320338,81061],[\"Miltz\",\"Deanna\",\"704-634-6289\",\"dmiltzrealtor@gmail.com\",\"Harrisburg\",\"Broker\",298941,61437],[\"Monrad\",\"Rachel\",\"704-682-9422\",\"rachel@randsrealtygroup.com\",\"Mooresville\",\"Broker\",251860,32949],[\"Nutter\",\"Julie\",\"240-888-7493\",\"teamnutter@gmail.com\",\"Kannapolis\",\"Broker\",293824,48403],[\"Overcash\",\"Jason\",\"980-622-6327\",\"jasonovercashrealty@gmail.com\",\"Kannapolis\",\"Broker\",305546,68295],[\"Overcash\",\"Laura\",\"704-699-0765\",\"lovercashre@gmail.com\",\"Kannapolis\",\"Broker\",301686,63472],[\"Petty\",\"Deana\",\"704-258-8068\",\"deana327@gmail.com\",\"Kannapolis\",\"BIC/Owner\",263080,72155],[\"Pricher\",\"Lisa\",\"704-288-7392\",\"ncrealtorlisa@gmail.com\",\"Harrisburg\",\"Broker\",276287,24658],[\"Puckett\",\"Chris\",\"704-298-5872\",\"ch2realty@gmail.com\",\"Kannapolis\",\"Qualifying Broker/Owner\",279213,32613],[\"Queen\",\"Rodney\",\"704-239-3617\",\"rodneque@aol.com\",\"Salisbury\",\"Broker\",197764,18091],[\"Rhew\",\"Rick\",\"704-491-2458\",\"ricksellsnc@gmail.com\",\"Harrisburg\",\"Broker\",288631,49282],[\"Robinson\",\"Kelly\",\"704-699-2268\",\"kelly.robinson.realtor@gmail.com\",\"Kannapolis\",\"Broker\",316981,79218],[\"Rogers\",\"Hayley\",\"704-431-2816\",\"hayley.realestate.rogers@gmail.com\",\"Harrisburg\",\"Broker - in - Charge\",281085,35693],[\"Romesburg\",\"Sarah\",\"336-466-1646\",\"sarah@randsrealtygroup.com\",\"Mooresville\",\"Broker\",279215,32982],[\"Sadler\",\"Kimberly\",\"704-798-8338\",\"kimsadler.realtor@gmail.com\",\"Kannapolis\",\"Broker\",290260,49723],[\"Severt\",\"Paula\",\"704-232-3433\",\"paulasevert@yahoo.com\",\"Kannapolis\",\"Broker/Owner\",256100,68433],[\"Sherin\",\"Chelsi\",\"570-690-3723\",\"chelsi.sherin@gmail.com\",\"Kannapolis\",\"Broker\",317621,79645],[\"Sides\",\"Holden\",\"704-699-2092\",\"sideshb94@yahoo.com\",\"Kannapolis\",\"Broker\",322169,\"\"],[\"Sloan Holshouser\",\"Courtney\",\"704-754-7104\",\"csloansellshomes@gmail.com\",\"Salisbury\",\"Broker\",314926,\"\"],[\"Solarek\",\"Leslie\",\"229-854-0444\",\"lesliesellsnc@gmail.com\",\"Kannapolis\",\"Broker\",298587,61042],[\"Starnes\",\"Susan\",\"704-305-0040\",\"susansellsnchomes@gmail.com\",\"Harrisburg\",\"Broker\",304452,66546],[\"Stillinger\",\"Ethan\",\"704-957-1282\",\"ethanstillingerlrd@gmail.com\",\"Kannapolis\",\"Broker\",283899,39819],[\"Strickland\",\"Tricia\",\"704-791-7314\",\"tricia.strickland927@gmail.com\",\"Kannapolis\",\"Broker\",314178,75477],[\"Sue Bingham\",\"Brenda\",\"704-787-2539\",\"brenda@bingham.cc\",\"Albemarle\",\"Broker\",302334,65004],[\"Suther\",\"John\",\"704-622-1432\",\"johnsutherllc@gmail.com\",\"Kannapolis\",\"Broker\",309445,71221],[\"Thomas\",\"Ellen\",\"704-791-3141\",\"ellencthomasservices@gmail.com\",\"Kannapolis\",\"Broker\",305464,67704],[\"Thompson\",\"Chuck\",\"704-701-0129\",\"crtbroker@gmail.com\",\"Kannapolis\",\"Broker\",278357,31317],[\"Trask\",\"Kimberly\",\"336-906-0848\",\"kimberlyktrask@gmail.com\",\"Kannapolis\",\"Broker\",312666,75085],[\"Watson\",\"Brianne\",\"704-791-3272\",\"briannewatsonrealtor@gmail.com\",\"Kannapolis\",\"Broker\",293189,53736],[\"Widenhouse\",\"Cindy\",\"704-795-8017\",\"cindy.s.widenhouse@gmail.com\",\"Kannapolis\",\"Broker\",299028,61885],[\"Wilson\",\"Rick\",\"704-996-9902\",\"richard.wilson4565@gmail.com\",\"Kannapolis\",\"Broker\",321788,81743],[\"Wiser\",\"Paige\",\"704-904-1903\",\"PaigeWiserRealtor@gmail.com\",\"Salisbury\",\"Broker\",309172,71081],[\"Wooley\",\"Todd\",\"704-904-7162\",\"twooleyrealty@gmail.com\",\"Kannapolis\",\"Broker\",309536,71163],[\"Yates\",\"Melissa\",\"704-239-3835\",\"melissayates4u@gmail.com\",\"Salisbury\",\"Broker\",307917,69428],[\"Zhang\",\"Min\",\"319-471-1622\",\"realtymin77@gmail.com\",\"Harrisburg\",\"Broker\",299816,63292]]','Team Directory','','inherit','closed','closed','','1199-revision-v1','','','2021-01-28 01:02:24','2021-01-28 01:02:24','',1199,'https://lantern-realty.com/1199-revision-v1/',0,'revision','',0),(1501,0,'2021-01-19 17:52:31','2021-01-19 17:52:31','','IMG_7791 Small','','inherit','','closed','','img_7791-small-2','','','2021-01-19 17:52:31','2021-01-19 17:52:31','',0,'https://lantern-realty.com/img_7791-small-2/',0,'attachment','image/jpeg',0),(1503,6,'2021-01-25 13:36:12','2021-01-25 13:36:12','<div dir=\"ltr\">Good Morning All, just a few notes for the upcoming week. <div><br></div><div>- Here are the<b> classes</b> for this week...</div><div> ** 1/29 @ 930 is CMA Wizard w/ Carolina Grubb.  You need to register at CCAR website.  <a href=\"https://ccarolinas.com\">https://ccarolinas.com</a>.</div><div>** Our Kindle class this week has had a <b style=\"text-decoration-line:underline\">TIME CHANGE.</b> The class this week is \"How to Work w/ Sellers\" and will be taught by Chris Puckett.  The class will now be on Thursday 1/28 @ 10am.  </div><div><br></div><div>- We will be having a <b>TEAM MEETING</b> next Wednesday at 1100am.</div><div><br></div><div>- Everyone should have received their <b>Q1 invoices</b>.  If you are signed up for a bank draft, your draft will come out either next Monday or Tuesday.</div><div><br></div><div>- As I have stated before, if you are signed up for <b>call time</b>, we need you in the office!  Foot traffic has greatly increased in downtown and if at all possible, we need you in here.  If we can&#39;t get any more folks coming into the office, I will have to mandate it, which i don&#39;t want to do.  <br clear=\"all\"><div><br></div>','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-3','','','2021-01-25 13:36:12','2021-01-25 13:36:12','',0,'https://lantern-realty.com/?p=1503',0,'post','',0),(1504,0,'2021-01-25 18:39:56','2021-01-25 18:39:56','','Gretchen B Photography_Janice_027 Square for Web','','inherit','','closed','','gretchen-b-photography_janice_027-square-for-web','','','2021-01-25 18:39:56','2021-01-25 18:39:56','',0,'https://lantern-realty.com/gretchen-b-photography_janice_027-square-for-web/',0,'attachment','image/jpeg',0),(1542,6,'2021-02-06 14:50:30','2021-02-06 14:50:30','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-4','','','2021-02-06 14:50:30','2021-02-06 14:50:30','',1541,'https://lantern-realty.com/wp-content/uploads/2021/02/2021-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1507,1,'2021-01-28 00:37:12','2021-01-28 00:37:12','<!-- wp:paragraph -->\n<p>I\'m so happy you\'re here! I grew up here in Charlotte, I\'ve lived in Huntersville, Waxhaw, South End, and Concord; therefore, I consider myself well versed in the greater Charlotte region! I am now officially a settled resident and home owner in Salisbury, North Carolina. My husband and I enjoy spending time with our family, trying new restaurants, starting all kinds of house projects and playing with our rescue pups, Bella and Quinn. When I am not assisting my amazing clients with their real estate needs, I enjoy managing my small photography business, gardening and knitting/crafting. Before discovering my passion for real estate, I was a wedding and portrait photographer; one of my favorite things about this job is being there for people on one of the biggest days of their lives. As I was looking for my next \"forever\" adventure, it felt like a natural progression to then help my “client-friends” make one of the biggest purchases of their lives. Since obtaining my license in January of 2019, I have taken great pride in my ability to provide exceptional customer service in every transaction, while utilizing my knowledge of our current market trends to ensure the best possible outcome for each client. Ultimately, I love to watch others GROW and SUCCEED and have found that real estate is truly where I am meant to serve others! I would be honored and elated to become your trusted advisor in real estate - I can promise you unparalleled dedication, care and attention to detail. I will be with you every step of the way to make this transition smooth, enjoyable and FUN!</p>\n<!-- /wp:paragraph -->','Paige Wiser','','publish','closed','closed','','paige-wiser','','','2021-01-28 00:52:29','2021-01-28 00:52:29','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1507',117,'houzez_agent','',0),(1508,1,'2021-01-28 00:30:35','2021-01-28 00:30:35','<!-- wp:paragraph -->\n<p>I\'m so happy you\'re here! I grew up here in Charlotte, I\'ve lived in Huntersville, Waxhaw, South End, and Concord; therefore, I consider myself well versed in the greater Charlotte region! I am now officially a settled resident and home owner in Salisbury, North Carolina. My husband and I enjoy spending time with our family, trying new restaurants, starting all kinds of house projects and playing with our rescue pups, Bella and Quinn. When I am not assisting my amazing clients with their real estate needs, I enjoy managing my small photography business, gardening and knitting/crafting. Before discovering my passion for real estate, I was a wedding and portrait photographer; one of my favorite things about this job is being there for people on one of the biggest days of their lives. As I was looking for my next \"forever\" adventure, it felt like a natural progression to then help my “client-friends” make one of the biggest purchases of their lives. Since obtaining my license in January of 2019, I have taken great pride in my ability to provide exceptional customer service in every transaction, while utilizing my knowledge of our current market trends to ensure the best possible outcome for each client. Ultimately, I love to watch others GROW and SUCCEED and have found that real estate is truly where I am meant to serve others! I would be honored and elated to become your trusted advisor in real estate - I can promise you unparalleled dedication, care and attention to detail. I will be with you every step of the way to make this transition smooth, enjoyable and FUN!</p>\n<!-- /wp:paragraph -->','Paige Wiser','','inherit','closed','closed','','1507-revision-v1','','','2021-01-28 00:30:35','2021-01-28 00:30:35','',1507,'https://lantern-realty.com/1507-revision-v1/',0,'revision','',0),(1509,1,'2021-01-28 00:36:44','2021-01-28 00:36:44','','Paige_Wiser','','inherit','','closed','','paige_wiser','','','2021-01-28 00:36:44','2021-01-28 00:36:44','',1507,'https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg',0,'attachment','image/jpeg',0),(1510,1,'2021-01-28 00:42:13','2021-01-28 00:42:13','<!-- wp:paragraph -->\n<p>My real estate career started with a fire. Three months into our new marriage, my wife and I woke up to our neighbor’s condo unit on fire. We then watched as our own condo burned down. As it became clear that our insurance would not rescue us from a lengthy rebuild, we met a real estate investor. He bought our condo from us and enabled us to buy a small house in Kannapolis. This turn of events led me to pursue a career in real estate with a desire to help as many young couples as I could. My family has since grown and our little house is a full and happy home. As of right now we are a family with a newborn baby, one dog, one cat, a bearded dragon lizard, and two snakes. I look forward to hearing your story and helping your family thrive in the perfect house you can call home.</p>\n<!-- /wp:paragraph -->','Taylor David McClure','','publish','closed','closed','','taylor-david-mcclure','','','2021-01-28 00:52:17','2021-01-28 00:52:17','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1510',34,'houzez_agent','',0),(1511,1,'2021-01-28 00:40:17','2021-01-28 00:40:17','<!-- wp:paragraph -->\n<p>My real estate career started with a fire. Three months into our new marriage, my wife and I woke up to our neighbor’s condo unit on fire. We then watched as our own condo burned down. As it became clear that our insurance would not rescue us from a lengthy rebuild, we met a real estate investor. He bought our condo from us and enabled us to buy a small house in Kannapolis. This turn of events led me to pursue a career in real estate with a desire to help as many young couples as I could. My family has since grown and our little house is a full and happy home. As of right now we are a family with a newborn baby, one dog, one cat, a bearded dragon lizard, and two snakes. I look forward to hearing your story and helping your family thrive in the perfect house you can call home.</p>\n<!-- /wp:paragraph -->','Taylor David McClure','','inherit','closed','closed','','1510-revision-v1','','','2021-01-28 00:40:17','2021-01-28 00:40:17','',1510,'https://lantern-realty.com/1510-revision-v1/',0,'revision','',0),(1512,1,'2021-01-28 00:41:39','2021-01-28 00:41:39','','Taylor_McClure','','inherit','','closed','','taylor_mcclure','','','2021-01-28 00:41:39','2021-01-28 00:41:39','',1510,'https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg',0,'attachment','image/jpeg',0),(1483,0,'2021-01-06 21:13:21','2021-01-06 21:13:21','','2456921357881720863','','inherit','','closed','','2456921357881720863','','','2021-01-06 21:13:21','2021-01-06 21:13:21','',0,'https://lantern-realty.com/2456921357881720863/',0,'attachment','image/png',0),(1484,6,'2021-01-08 13:45:58','2021-01-08 13:45:58','<div dir=\"ltr\">Good Chilly Morning!  Just wanted to remind you all, I will be working on 1099&#39;s during the next two weeks.  it is YOUR responsibility that i have your correct address.  If you have moved during 2020, please send me your updated address.  <div><br></div><div>You can always text or email your address just to be 100% sure.  </div><div><br></div><div>Thanks again and be safe today!<br clear=\"all\"><div><br></div>','1099\'s','','publish','closed','open','','1099s','','','2021-01-08 13:45:58','2021-01-08 13:45:58','',0,'https://lantern-realty.com/?p=1484',0,'post','',0),(1485,0,'2021-01-08 15:36:09','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-01-08 15:36:09','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1485',0,'post','',0),(1486,0,'2021-01-08 15:46:21','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-01-08 15:46:21','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1486',0,'post','',0),(1487,0,'2021-01-08 15:46:21','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-01-08 15:46:21','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1487',0,'post','',0),(1488,0,'2021-01-08 15:46:21','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-01-08 15:46:21','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1488',0,'post','',0),(1489,0,'2021-01-08 15:46:22','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-01-08 15:46:22','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1489',0,'post','',0),(1490,6,'2021-01-11 15:16:41','2021-01-11 15:16:41','<div dir=\"ltr\">Good Morning All, just a few notes for this week.<div>- No classes this week.  Our KINDLE classes will resume next week. I have attached the current 2021 Education Calendar.  We have a lot of classes to add.  If you have recommendations for classes you want or need, let me know. </div><div>- Speaking of classes, Paula will be doing private Dotloop classes for agents.  She will be offering several times to sign up for.  We changed this class because of the level of expertise in each class.  </div><div>- The FORMS class will be separated into a different class.  Melissa Yates will be teaching these classes.  Once we get the dates set, I will be updating the calendar and send out the revised calendar.  </div><div>- Remember, if you have changed addresses please send me your new address.  I am working on getting 1099&#39;s out by the end of January.  If you just want to verify i have the right address, email or text me your address.</div><div><br></div><div>Thanks as always for all you do.  Keep up the excellence!<br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/01/2021-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-6','','','2021-01-11 15:16:41','2021-01-11 15:16:41','',0,'https://lantern-realty.com/?p=1490',0,'post','',0),(1491,6,'2021-01-11 15:16:41','2021-01-11 15:16:41','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-1','','','2021-01-11 15:16:41','2021-01-11 15:16:41','',1490,'https://lantern-realty.com/wp-content/uploads/2021/01/2021-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1492,0,'2021-01-11 16:15:57','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-01-11 16:15:57','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1492',0,'post','',0),(1493,6,'2021-01-13 16:36:16','2021-01-13 16:36:16','<div dir=\"ltr\">Good Morning All,  I have attached an updated Education Calendar for 2021.  I will be loading it into our online calendar available through our website later today.  <div><br></div><div>We have added five new classes through the end of February.  </div><div>- on 1/21 @ 9am Ryan Lantz w/ RibbonHome.com will be teaching a class on their products.  If you don&#39;t know what Ribbon is you will definitely want to attend.  I will be sending out a sign up sheet for this class. It will be held via Zoom. </div><div>- On 1/29 @ 930 Carolina Grubb w/ CMLS will be holding a CMA Wizard class through CCAR.  It will be available online through CCAR&#39;s website.  </div><div>- 2/9 &amp; 2/11 we have added Jenna Cooks exciting classes on Canva.com and Instagram.  </div><div>- Lastly, I will be teaching a class on \"Helping Your Client Buy and Sell Land\".  This is becoming a popular topic as people are leaving the cities and looking to buy and build.  We want ALL of our agents to be educated on this process.  If you do not have familiarity with helping clients buy or sell land, DONT DO IT!  Get a mentor, ask one of the owners or refer it to someone that does.  This class will help get you to where you need to be to help clients. </div><div><br></div><div>All classes held through Lantern will be recorded and added to our YouTube channel for your convenience.  </div><div><br></div><div>Also, we are working on some \"On Demand\" classes that will be available on YouTube for you to watch.  They will be instructors teaching topics without the classroom setting.  This option is going to allow us to provide more content while saving time for our instructors.  Be on the look out for this feature!</div><div><br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/01/2021-Educational-Calendar-2.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','Upcoming Classes','','publish','closed','open','','upcoming-classes','','','2021-01-13 16:36:16','2021-01-13 16:36:16','',0,'https://lantern-realty.com/?p=1493',0,'post','',0),(1494,6,'2021-01-13 16:36:16','2021-01-13 16:36:16','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-2','','','2021-01-13 16:36:16','2021-01-13 16:36:16','',1493,'https://lantern-realty.com/wp-content/uploads/2021/01/2021-Educational-Calendar-2.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1495,6,'2021-01-15 15:36:22','2021-01-15 15:36:22','<div dir=\"ltr\">Good Morning, just an FYI I will be sending out invoices for Q1 dues over the next few days.  A few notes on this...<div><br></div><div>- If you have paid in advance, you WILL NOT receive a new invoice. </div><div>- If you have already signed up for direct deposit,  those will be drafted from your account around, but not before Feb. 1st.  </div><div>- All others need to be paid by Feb. 15th.  We accept checks, cash or money orders.  <br clear=\"all\"><div><br></div>','Q1 Dues','','publish','closed','open','','q1-dues','','','2021-01-15 15:36:22','2021-01-15 15:36:22','',0,'https://lantern-realty.com/?p=1495',0,'post','',0),(1496,6,'2021-01-17 15:36:03','2021-01-17 15:36:03','<div dir=\"ltr\">Good Morning All, we have a busy week coming up.  Here are a few notes as we start the third week in January.  <div><br></div><div>- This is our typical week for a team meeting.  With all of the classes we have this week we are going to cancel it.  Our next meeting will be on February the 3rd.  </div><div>- You should have received your Q1 invoices this morning.  Please let me know if you have any questions or concerns.  If you are signed up for ACH bank draft, your account will be drafted on February 1st or 2nd.  You can also pay by cash, check, money order or Venmo.</div><div>- Speaking of classes this week, here is our schedule for this week. </div><div>** 1/19 @ 10a, Cathy Hager will be presenting our next KINDLE class \"How to Work w/ a Buyer\".  </div><div>** 1/19 @ 1p, Paula will be hosting a Dotloop training class.  This class will be for all levels of experience. </div><div>** 1/21 @ 9am Ryan lantz with RIBBON will be presenting training on how RibbonHome.com can benefit your buyer in this crazy market.  </div><div> I have attached an updated Education Calendar.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/01/2021-Educational-Calendar-3.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-2','','','2021-01-17 15:36:03','2021-01-17 15:36:03','',0,'https://lantern-realty.com/?p=1496',0,'post','',0),(1497,6,'2021-01-17 15:36:03','2021-01-17 15:36:03','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-3','','','2021-01-17 15:36:03','2021-01-17 15:36:03','',1496,'https://lantern-realty.com/wp-content/uploads/2021/01/2021-Educational-Calendar-3.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1499,0,'2021-01-18 14:44:58','2021-01-18 14:44:58','','BRPhoto-18','','inherit','','closed','','brphoto-18','','','2021-01-18 14:44:58','2021-01-18 14:44:58','',0,'https://lantern-realty.com/brphoto-18/',0,'attachment','image/jpeg',0),(1500,6,'2021-01-18 18:15:58','2021-01-18 18:15:58','<div dir=\"ltr\">See invite below<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: How to Work w/ Buyers<br>Time: Jan 19, 2021 10:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/83904339970?pwd=Y2Q2S1E3WGxyM0hyaFVWMHVBZndZQT09\">https://us02web.zoom.us/j/83904339970?pwd=Y2Q2S1E3WGxyM0hyaFVWMHVBZndZQT09</a><br><br>Meeting ID: 839 0433 9970<br>Passcode: 475608<br>One tap mobile<br>+19292056099,,83904339970#,,,,*475608# US (New York)<br>+13017158592,,83904339970#,,,,*475608# US (Washington D.C)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 839 0433 9970<br>Passcode: 475608<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kb1dTPN4VH\">https://us02web.zoom.us/u/kb1dTPN4VH</a><br><br><div><br></div>','KINDLE Class - How to Work w/ Buyers - 10am 1/19','','publish','closed','open','','kindle-class-how-to-work-w-buyers-10am-1-19','','','2021-01-18 18:15:58','2021-01-18 18:15:58','',0,'https://lantern-realty.com/?p=1500',0,'post','',0),(1469,6,'2020-12-24 13:36:25','2020-12-24 13:36:25','<div dir=\"ltr\">Good Morning All, hope you are prepared for Christmas Day!  I&#39;m so ready for December 26th.<div><br></div><div>Just a few notes...</div><div><br></div><div>- We will be having an Education Committee call at 10am on 12/30.  If you want to participate, feel free to jump on.  Just because you are on the committee DOES NOT mean you have to teach.  We have our \"Kindle\" classes starting back in january along with more classes for all levels of expertise.  </div><div><br></div><div>- Also on Wednesday 12/30, we will be having a Call Time training call for the Kannapolis office.  If you want to take call time for January, you NEED to attend this call.</div><div><br></div><div>I will be sending out invites for both calls prior to 12/30.</div><div><br></div><div>Please take this time to enjoy your families.  Love one another and make a difference in someones life.  </div><div><br></div><div>We love yall and appreciate each and everyone of you.</div><div><br></div><div>MERRY CHRISTMAS!!!!<br clear=\"all\"><div><br></div>','MERRY CHRISTMAS (News &amp; Notes)','','publish','closed','open','','merry-christmas-news-notes','','','2020-12-24 13:36:25','2020-12-24 13:36:25','',0,'https://lantern-realty.com/?p=1469',0,'post','',0),(1470,0,'2020-12-24 15:27:14','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-12-24 15:27:14','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1470',0,'post','',0),(1471,0,'2020-12-24 16:05:57','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-12-24 16:05:57','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1471',0,'post','',0),(1472,0,'2020-12-24 19:06:17','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-12-24 19:06:17','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1472',0,'post','',0),(1473,0,'2020-12-24 21:16:30','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-12-24 21:16:30','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1473',0,'post','',0),(1474,0,'2020-12-24 22:36:45','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-12-24 22:36:45','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1474',0,'post','',0),(1475,6,'2020-12-29 14:57:42','2020-12-29 14:57:42','<div dir=\"ltr\">See invite below...<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Education Committee Meeting<br>Time: Dec 30, 2020 10:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/88581022184?pwd=alFhOTBISjVjNE9QS1NURmFjTEd1UT09\">https://us02web.zoom.us/j/88581022184?pwd=alFhOTBISjVjNE9QS1NURmFjTEd1UT09</a><br><br>Meeting ID: 885 8102 2184<br>Passcode: 562603<br>One tap mobile<br>+13126266799,,88581022184#,,,,*562603# US (Chicago)<br>+19292056099,,88581022184#,,,,*562603# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 885 8102 2184<br>Passcode: 562603<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kc7MUAdzE4\">https://us02web.zoom.us/u/kc7MUAdzE4</a><br><br><div><br></div>','Lantern Education Committee Meeting','','publish','closed','open','','lantern-education-committee-meeting','','','2020-12-29 14:57:42','2020-12-29 14:57:42','',0,'https://lantern-realty.com/?p=1475',0,'post','',0),(1476,6,'2020-12-29 14:57:43','2020-12-29 14:57:43','<div dir=\"ltr\">For those looking to continue or start utilizing call time, you MUST attend this meeting.  See invite below.<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Call Time Meeting<br>Time: Dec 30, 2020 01:30 PM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/84814543398?pwd=ZTh4Q0U4VW5KdiszMUFlU2I3NGJBUT09\">https://us02web.zoom.us/j/84814543398?pwd=ZTh4Q0U4VW5KdiszMUFlU2I3NGJBUT09</a><br><br>Meeting ID: 848 1454 3398<br>Passcode: 335249<br>One tap mobile<br>+13017158592,,84814543398#,,,,*335249# US (Washington D.C)<br>+13126266799,,84814543398#,,,,*335249# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 848 1454 3398<br>Passcode: 335249<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kz7ebKG83\">https://us02web.zoom.us/u/kz7ebKG83</a><br><br><div><br></div>','Call Time Meeting','','publish','closed','open','','call-time-meeting','','','2020-12-29 14:57:43','2020-12-29 14:57:43','',0,'https://lantern-realty.com/?p=1476',0,'post','',0),(1477,6,'2021-01-02 14:36:05','2021-01-02 14:36:05','<div dir=\"ltr\">HAPPY NEW YEAR!!!!<div><br></div><div>Few notes as we start a hopeful new year...</div><div><br></div><div>- Just a few stats for you.  </div><div>** We finished the year with 616 transactions. </div><div>** $131,509,000 in homes sales!!!</div><div>** Average home sales price for Lantern was $213,489</div><div>** Top 10  agents by Sales $ (While at Lantern) in Canopy MLS</div><div>   1. Paula Severt</div><div>   2. Amanda Cody</div><div>   3. Lisa Pricher</div><div>   4. Chris Puckett </div><div>   5. Melissa Yates</div><div>   6. Ashley Ferlauto</div><div>   7. Deana Petty</div><div>   8. Michael Fullerton</div><div>   9. Kim Drakulich</div><div>  10. Jeremy Aldridge</div><div><br></div><div>- This upcoming week we kick off a busy week with Education.  All classes will be held via ZOOM and should be recorded and added to our YouTube channel for your viewing pleasure. </div><div>** 1/5 10am we kick off our Kindle classes for new agents and agents that need a refresher.  This class will be \"Lead Generation/Database\" class.</div><div>** 1/5 1pm Paula will be hosting DOTLOOP/FORMS class.  These classes are for those agents that may need a refresher course on Dotloop or you may be brand new to Dotloop.</div><div>** 1/7 10am Laura will be following up her KINDLE class with a class on \"How to Grade Your Database\".  This will help you keep your database updated and usable.  </div><div><br></div><div>I&#39;ll be sending out ZOOM invites the day before class.  </div><div><br></div><div>Should anyone have questions, please let Paula, Deana or myself know.  </div><div><br clear=\"all\"><div><br></div>','News &amp; Notes - 2021 EDITION!','','publish','closed','open','','news-notes-2021-edition','','','2021-01-02 14:36:05','2021-01-02 14:36:05','',0,'https://lantern-realty.com/?p=1477',0,'post','',0),(1478,6,'2021-01-04 15:06:48','2021-01-04 15:06:48','<div dir=\"ltr\">See invite below<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Kindle - Lead Generation/Database<br>Time: Jan 5, 2021 10:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/81810578890?pwd=Z3luMS9sTER6Mk1pSHBreGVoWTV6Zz09\">https://us02web.zoom.us/j/81810578890?pwd=Z3luMS9sTER6Mk1pSHBreGVoWTV6Zz09</a><br><br>Meeting ID: 818 1057 8890<br>Passcode: 272604<br>One tap mobile<br>+19292056099,,81810578890#,,,,*272604# US (New York)<br>+13017158592,,81810578890#,,,,*272604# US (Washington D.C)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 818 1057 8890<br>Passcode: 272604<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kdbWN4yezH\">https://us02web.zoom.us/u/kdbWN4yezH</a><br><br><div><br></div>','Kindle - Lead Generation/Data Base','','publish','closed','open','','kindle-lead-generation-data-base','','','2021-01-04 15:06:48','2021-01-04 15:06:48','',0,'https://lantern-realty.com/?p=1478',0,'post','',0),(1479,6,'2021-01-04 15:06:48','2021-01-04 15:06:48','<div dir=\"ltr\"><br><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">','Fwd: zoom','','publish','closed','open','','fwd-zoom','','','2021-01-04 15:06:48','2021-01-04 15:06:48','',0,'https://lantern-realty.com/?p=1479',0,'post','',0),(1480,6,'2021-01-05 16:05:59','2021-01-05 16:05:59','<div dir=\"ltr\">Hey, just wanted to give everyone an updated Education Calendar.  If you have any questions, please let me know.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/01/2021-Educational-Calendar.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','Education calendar','','publish','closed','open','','education-calendar','','','2021-01-05 16:05:59','2021-01-05 16:05:59','',0,'https://lantern-realty.com/?p=1480',0,'post','',0),(1481,6,'2021-01-05 16:05:59','2021-01-05 16:05:59','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar','','','2021-01-05 16:05:59','2021-01-05 16:05:59','',1480,'https://lantern-realty.com/wp-content/uploads/2021/01/2021-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1482,6,'2021-01-05 16:56:48','2021-01-05 16:56:48','<div dir=\"ltr\">Good Morning, below is the invite for team meeting tomorrow.  I dont antici[ate it being very long, but we will be discussing some important info regarding your 1099&#39;s.  So please attend at 1130.  We wont have any vendors speaking, just us getting together to talk about a few important matters and anything you all have on your plates you need help with.  <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Lantern Team Meeting<br>Time: Jan 6, 2021 11:30 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/81321897036?pwd=ODU0ZUJBZHp3bGl6V3lPcVd0eDhCQT09\">https://us02web.zoom.us/j/81321897036?pwd=ODU0ZUJBZHp3bGl6V3lPcVd0eDhCQT09</a><br><br>Meeting ID: 813 2189 7036<br>Passcode: 073661<br>One tap mobile<br>+13017158592,,81321897036#,,,,*073661# US (Washington D.C)<br>+13126266799,,81321897036#,,,,*073661# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 813 2189 7036<br>Passcode: 073661<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kdmvDPNkw\">https://us02web.zoom.us/u/kdmvDPNkw</a><br><br><div><br></div>','Team Meeting - 1/6','','publish','closed','open','','team-meeting-1-6','','','2021-01-05 16:56:48','2021-01-05 16:56:48','',0,'https://lantern-realty.com/?p=1482',0,'post','',0),(1456,6,'2020-12-01 13:35:55','2020-12-01 13:35:55','<div dir=\"ltr\">Good Chilly Morning!  Here are a few notes for our upcoming week....<div><br></div><div>- Dont forget Sarah Romesburg will be hosting a <b>\"Listing Class\"</b> this morning at 10am on Zoom.  Link was sent out yesterday.   </div><div><br></div><div>- <b>Team meeting</b> on Wednesday at 1130.  I will send out the link later today.  This meeting wont be long.  We will be reviewing our YouTube channel, what it has to offer and what it will be.  </div><div><br></div><div>- We are still planning on having an <b>accountant</b> at 130 on Thursday.  I will send out a link once I have confirmation from the accountant. This will be extremely helpful for everyone as we approach the end of this year.  </div><div><br></div><div>- Just a quick update on <b>projections for next year</b>.  NAR is reporting existing home sales will increase 9% next year.  New construction is projected to increase 23%.  Those are some promising numbers!!!!  Those numbers are national, obviously local numbers will be different.  With the projected growth in our service area, those projections could be even larger.  Make sure you prepare yourselves for 2021.  </div><div><br></div><div>- One of our fellow agents,<b> Larry Laughter</b> is hosting the following event.  </div><div><br></div><div><span style=\"color:rgb(5,5,5);font-family:\"Segoe UI Historic\",\"Segoe UI\",Helvetica,Arial,sans-serif;font-size:15px;white-space:pre-wrap\">On Dec. 9th, I am hosting an event I would love to invite you to at Pinhouse CLT, 10 am to 1 pm.  While there, you will meet up to 9 vendor/partners that could potentially help you with your real estate business. Staging, attorney, measurements, inspections, warranties, and many more will be present.  During the course of the event, I will be shooting one on one photo session, some candid, some staged.  You will receive all of the photos from your session along with an edited photo.  </span> </div><div><br></div><div> <a href=\"https://ll2productions.square.site\">https://ll2productions.square.site</a></div><div><br></div><div>- If you haven&#39;t seen this quick video regarding <b>giving during this holiday</b> season, please do so.  <a href=\"https://www.facebook.com/christopher.m.puckett/videos/10158933278174375\">https://www.facebook.com/christopher.m.puckett/videos/10158933278174375</a></div><div><br></div><div>Checks can be made to the following....<span style=\"color:rgb(5,5,5);font-family:\"Segoe UI Historic\",\"Segoe UI\",Helvetica,Arial,sans-serif;font-size:15px;background-color:rgb(240,242,245)\">UMC Uwharrie district, memo line crossroads connection food boxes. 403 N Third St, Albemarle, NC 28001.</span>  <br>','News &amp; Notes','','publish','closed','open','','news-notes-5','','','2020-12-01 13:35:55','2020-12-01 13:35:55','',0,'https://lantern-realty.com/?p=1456',0,'post','',0),(1457,6,'2020-12-01 14:35:57','2020-12-01 14:35:57','<div dir=\"ltr\">Class has been confirmed.  See Zoom invite below.<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Accounting for Real Estate Agents w/ Mark Dalton<br>Time: Dec 3, 2020 01:30 PM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/87141121709?pwd=TWhRelplQ0laNTBHVEVrK1gwWHZ4UT09\">https://us02web.zoom.us/j/87141121709?pwd=TWhRelplQ0laNTBHVEVrK1gwWHZ4UT09</a><br><br>Meeting ID: 871 4112 1709<br>Passcode: 775177<br>One tap mobile<br>+13126266799,,87141121709#,,,,,,0#,,775177# US (Chicago)<br>+19292056099,,87141121709#,,,,,,0#,,775177# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 871 4112 1709<br>Passcode: 775177<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kc3Gq5yig5\">https://us02web.zoom.us/u/kc3Gq5yig5</a><br><br><div><br></div>','Dec 3rd 130pm Class - Accounting for Real Estate Agents w/ Mark Dalton','','publish','closed','open','','dec-3rd-130pm-class-accounting-for-real-estate-agents-w-mark-dalton','','','2020-12-01 14:35:57','2020-12-01 14:35:57','',0,'https://lantern-realty.com/?p=1457',0,'post','',0),(1458,0,'2020-12-01 23:35:56','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-12-01 23:35:56','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1458',0,'post','',0),(1459,6,'2020-12-02 14:26:02','2020-12-02 14:26:02','<div dir=\"ltr\">Good morning All, due to my personal schedule changing, I&#39;m going to cancel today&#39;s team meeting.  A few things to remember...<div><br></div><div>- Make sure you subscribe to our YouTube channel.  It is LANTERN REALTY and DEVELOPMENT.  You will find Nic&#39;s class on Foreclosures and yesterday&#39;s class by Sarah on Listings.</div><div><br></div><div>- Don&#39;t forget tomorrow&#39;s class on Accounting for Real Estate agents.  Mark Dalton will be our speaker.  The invite was sent yesterday.  </div><div><br></div><div>- Last thing, when you have a closing, PLEASE make sure the attorney has the correct address for our office.  If your commission check gets sent to our old address, it could get lost or slow down your payment.  <br clear=\"all\"><div><br></div>','Todays Team Meeting CANCELLED','','publish','closed','open','','todays-team-meeting-cancelled','','','2020-12-02 14:26:02','2020-12-02 14:26:02','',0,'https://lantern-realty.com/?p=1459',0,'post','',0),(1462,0,'2020-12-11 21:15:41','2020-12-11 21:15:41','','AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a','','inherit','','closed','','aac52701-4752-4138-b5f7-ddc3ff741e29_1_201_a','','','2020-12-11 21:15:41','2020-12-11 21:15:41','',0,'https://lantern-realty.com/aac52701-4752-4138-b5f7-ddc3ff741e29_1_201_a/',0,'attachment','image/jpeg',0),(1467,6,'2020-12-15 20:06:05','2020-12-15 20:06:05','<div dir=\"ltr\">See invite below<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Team Meeting<br>Time: Dec 16, 2020 11:30 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/86599055365?pwd=YVQ2cjZyZVByNTRBVFI0bWRLanJ4dz09\">https://us02web.zoom.us/j/86599055365?pwd=YVQ2cjZyZVByNTRBVFI0bWRLanJ4dz09</a><br><br>Meeting ID: 865 9905 5365<br>Passcode: 847015<br>One tap mobile<br>+19292056099,,86599055365#,,,,,,0#,,847015# US (New York)<br>+13017158592,,86599055365#,,,,,,0#,,847015# US (Washington D.C)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 865 9905 5365<br>Passcode: 847015<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kc3S1CSA1s\">https://us02web.zoom.us/u/kc3S1CSA1s</a><br><br><div><br></div>','Lantern Team Meeting 12/16 @ 1130am','','publish','closed','open','','lantern-team-meeting-12-16-1130am','','','2020-12-15 20:06:05','2020-12-15 20:06:05','',0,'https://lantern-realty.com/?p=1467',0,'post','',0),(1468,6,'2020-12-16 14:16:30','2020-12-16 14:16:30','<div dir=\"ltr\">Some of us had GMail issues yesterday, so i wanted to make sure everyone got this invite for today&#39;s meeting.  <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Team Meeting<br>Time: Dec 16, 2020 11:30 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/86599055365?pwd=YVQ2cjZyZVByNTRBVFI0bWRLanJ4dz09\">https://us02web.zoom.us/j/86599055365?pwd=YVQ2cjZyZVByNTRBVFI0bWRLanJ4dz09</a><br><br>Meeting ID: 865 9905 5365<br>Passcode: 847015<br>One tap mobile<br>+19292056099,,86599055365#,,,,,,0#,,847015# US (New York)<br>+13017158592,,86599055365#,,,,,,0#,,847015# US (Washington D.C)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 865 9905 5365<br>Passcode: 847015<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kc3S1CSA1s\">https://us02web.zoom.us/u/kc3S1CSA1s</a><br><br><div><br></div>','Todays team meeting','','publish','closed','open','','todays-team-meeting','','','2020-12-16 14:16:30','2020-12-16 14:16:30','',0,'https://lantern-realty.com/?p=1468',0,'post','',0),(1433,0,'2020-11-14 18:06:44','2020-11-14 18:06:44','','RE picture','','inherit','','closed','','re-picture','','','2020-11-14 18:06:44','2020-11-14 18:06:44','',0,'https://lantern-realty.com/re-picture/',0,'attachment','image/jpeg',0),(1434,0,'2020-11-14 18:53:48','2020-11-14 18:53:48','','RE picture','','inherit','','closed','','re-picture-2','','','2020-11-14 18:53:48','2020-11-14 18:53:48','',0,'https://lantern-realty.com/re-picture-2/',0,'attachment','image/jpeg',0),(1435,6,'2020-11-16 14:17:39','2020-11-16 14:17:39','<div dir=\"ltr\">Good morning All, below is Zoom invite for Jenna Cooks Instagram class on Wednesday.  This should be very informative from one of the best in our industry.  I highly recommend you attend.  <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Instagram Class<br>Time: Nov 18, 2020 11:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/88063751481?pwd=Zk5SYTZ4RU05eFFGeGZ2Z3E4L0kyUT09\">https://us02web.zoom.us/j/88063751481?pwd=Zk5SYTZ4RU05eFFGeGZ2Z3E4L0kyUT09</a><br><br>Meeting ID: 880 6375 1481<br>Passcode: 430848<br>One tap mobile<br>+13017158592,,88063751481#,,,,,,0#,,430848# US (Washington D.C)<br>+13126266799,,88063751481#,,,,,,0#,,430848# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 880 6375 1481<br>Passcode: 430848<br>Find your local number: <a href=\"https://us02web.zoom.us/u/krxTKStb\">https://us02web.zoom.us/u/krxTKStb</a><br><br><div><br></div>','Instagram Class','','publish','closed','open','','instagram-class','','','2020-11-16 14:17:39','2020-11-16 14:17:39','',0,'https://lantern-realty.com/?p=1435',0,'post','',0),(1436,6,'2020-11-16 14:26:00','2020-11-16 14:26:00','<div dir=\"ltr\">Good Morning All, here are a few news &amp; notes to get your week started.<div><br></div><div>- Dont forget about our <b>classes this week</b>.  Here is a schedule.</div><div> * Monday 10am Accountability Group w/ Hayley Rogers.  Hayley will be sending out the invite</div><div> * Wednesday 10am - Harrisburg Office meeting</div><div> * Wednesday 11am - Instagram class w/ Jenna Cook.  I just sent out the Zoom invite.</div><div> * Thursday 9am Lantern Team Meeting.  Details below.</div><div> * Thursday 10am Miracle Morning discussion w/ Laura Overcash</div><div> * Friday 1pm - ALL THINGS GOOGLE w/ Hayley Rogers.  This class will help you sync your apps and YOUR LIFE!  </div><div><br></div><div>- We have a <b>team meeting this week @ 9am</b> on Thursday as stated above.  It is a zoom call.  Here is the agenda we have so far. </div><div> * Discussion of recent NAR Code of Ethics changes.  I posted this topic on Facebook yesterday.  PLEASE READ!</div><div> * Chris Crosby w/ Home Warranty of America will be speaking briefly. </div><div> * John Suther, our very own structural engineer will be talking about FHA guidelines on mobile/manufactured homes.</div><div> * if time allows, I will be reviewing the new features on our website.  </div><div><br></div><div>Hope you all have a Blessed week. </div><div><br clear=\"all\"><div><br></div>','News &amp; Notes','','publish','closed','open','','news-notes-3','','','2020-11-16 14:26:00','2020-11-16 14:26:00','',0,'https://lantern-realty.com/?p=1436',0,'post','',0),(1437,0,'2020-11-16 15:08:41','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-11-16 15:08:41','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1437',0,'post','',0),(1438,6,'2020-11-17 13:26:13','2020-11-17 13:26:13','<div dir=\"ltr\">Good morning, just wanted to give you an update on NAR recent Code of Ethics changes.  Below is a synopsis of changes.  PLEASE take this very seriously.  <div><br></div><div><blockquote type=\"cite\" style=\"color:rgb(0,0,0)\"><div dir=\"ltr\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"padding:0px;margin:0px;width:924px\"><tbody><tr><td width=\"600\" style=\"padding:0px\"><table style=\"margin:0px;padding:0px;font-family:\"Helvetica Neue\",Helvetica,Helvetica,Arial,sans-serif;width:600px\"><tbody><tr style=\"margin:0px;padding:0px\"><td bgcolor=\"#FFFFFF\" style=\"font-family:\"Helvetica Neue\",Helvetica,Helvetica,Arial,sans-serif;padding:0px;margin-right:auto;margin-left:auto;display:block;max-width:600px;clear:both\"><div style=\"padding:0px;max-width:600px;margin:0px auto\"><table style=\"margin:0px;padding:0px;width:592px\"><tbody><tr style=\"margin:0px;padding:0px\"><td style=\"font-family:\"Helvetica Neue\",Helvetica,Helvetica,Arial,sans-serif;padding:0px\"><div style=\"padding:0px;max-width:600px;margin:0px auto\"><div style=\"padding:0px;max-width:600px;margin:0px auto\"><table style=\"margin:0px;padding:0px;width:588px\"><tbody><tr style=\"margin:0px;padding:0px\"><td style=\"font-family:\"Helvetica Neue\",Helvetica,Helvetica,Arial,sans-serif;padding:0px\"><h4 style=\"margin:0px 0px 15px;padding:0px;font-family:Arial;line-height:1.1;font-weight:500;font-size:23px\">NAR Directors take strong action to curb hate speech</h4><p style=\"margin-right:0px;margin-left:0px;padding:0px;font-family:Arial;margin-bottom:10px;font-size:14px;line-height:1.6\">The National Association of REALTORS® Board of Directors took historic action on Nov. 13, 2020, to strengthen REALTORS®’ commitment to fair housing.</p><p style=\"margin-right:0px;margin-left:0px;padding:0px;font-family:Arial;margin-bottom:10px;font-size:14px;line-height:1.6\">Directors approved recommendations to:</p><ul style=\"font-family:Arial;margin-bottom:10px;font-size:14px;line-height:1.6\"><li style=\"margin-left:15px\">Extend the application of <a href=\"https://carolinarealtors.us16.list-manage.com/track/click?u=7623c2bd475a7fcc68831c162&amp;id=80b1693afd&amp;e=2b5170a446\" target=\"_blank\" rel=\"noopener noreferrer\">Article 10 of the Code of Ethics</a> through the addition of a new Standard of Practice prohibiting the use of harassing speech, hate speech, epithets, or slurs against the protected classes.</li><li style=\"margin-left:15px\">Amend professional standards policy, expanding the applicability of the Code of Ethics to all of a REALTOR®’s activities.</li><li style=\"margin-left:15px\">Add guidance to the <a href=\"https://carolinarealtors.us16.list-manage.com/track/click?u=7623c2bd475a7fcc68831c162&amp;id=2c0d9ab919&amp;e=2b5170a446\" target=\"_blank\" rel=\"noopener noreferrer\">Code of Ethics and Arbitration Manual</a> to help professional standards hearing panels apply the new Standard of Practice.</li><li style=\"margin-left:15px\">Revise the NAR Bylaws, expanding the definition of “public trust” to include all discrimination against the protected classes under Article 10 along with all fraud.</li><li style=\"margin-left:15px\">Continue the requirement for associations to share with the state real estate licensing authority final ethics decisions holding REALTORS® in violation of the Code of Ethics in instances involving real estate–related activities and transactions where there is reason to believe the public trust may have been violated.</li></ul><p style=\"margin-right:0px;margin-left:0px;padding:0px;font-family:Arial;margin-bottom:10px;font-size:14px;line-height:1.6\">NAR has produced training and resource materials to assist leaders with understanding and implementing the changes and will be rolling those out in the coming weeks.</p><p style=\"margin-right:0px;margin-left:0px;padding:0px;font-family:Arial;margin-bottom:10px;font-size:14px;line-height:1.6\">The changes are <b>effective immediately</b>; however, they are not retroactive to speech or conduct that occurred before the effective date.</p></td></tr></tbody></table></div></div></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div></blockquote><div><br></div>','NAR Code of Ethics change','','publish','closed','open','','nar-code-of-ethics-change','','','2020-11-17 13:26:13','2020-11-17 13:26:13','',0,'https://lantern-realty.com/?p=1438',0,'post','',0),(1439,6,'2020-11-18 14:56:03','2020-11-18 14:56:03','<div dir=\"ltr\">Good Morning All, below is a link for Jenna&#39;s Instagram class.  Starts at 11.  <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Instagram Class<br>Time: Nov 18, 2020 11:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/88063751481?pwd=Zk5SYTZ4RU05eFFGeGZ2Z3E4L0kyUT09\">https://us02web.zoom.us/j/88063751481?pwd=Zk5SYTZ4RU05eFFGeGZ2Z3E4L0kyUT09</a><br><br>Meeting ID: 880 6375 1481<br>Passcode: 430848<br>One tap mobile<br>+13017158592,,88063751481#,,,,,,0#,,430848# US (Washington D.C)<br>+13126266799,,88063751481#,,,,,,0#,,430848# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 880 6375 1481<br>Passcode: 430848<br>Find your local number: <a href=\"https://us02web.zoom.us/u/krxTKStb\">https://us02web.zoom.us/u/krxTKStb</a><br><br><div><br></div>','Instagram class','','publish','closed','open','','instagram-class-2','','','2020-11-18 14:56:03','2020-11-18 14:56:03','',0,'https://lantern-realty.com/?p=1439',0,'post','',0),(1430,8,'2020-11-11 18:36:31','2020-11-11 18:36:31','<div>  &nbsp; I have decided to&nbsp;reschedule my&nbsp;Art of Negotiation Class. Once I have a new date l will let you all know.&nbsp;<br><br><div>I believe everyone could benefit to attend the Dotloop training offered through Dotloop on November 17th.<br><div><br></div><div>Hope you all are having a great week!!&nbsp;<br><br><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><b style=\"word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">Paula G Severt</i></b>&nbsp;<img title=\"Emoji\" alt=\"Emoji\" class=\"yiv2427752816ydpc53d7409yahoo-emoji-wrapper\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding: 0px 2px; vertical-align: middle; word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><span style=\"word-wrap: break-word !important;\">Owner, Broker/ Realtor®</span><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><a href=\"http://lantern-realty.com/\" style=\"-webkit-tap-highlight-color: initial; word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">lantern-realty.com</a><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Lantern Realty and Development LLC</div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">\"Let Us Guide You Home\"</i></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Cell&nbsp;<a href=\"tel:704-232-3433\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/1\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">704-232-3433</a><br style=\"word-wrap: break-word !important;\">Office&nbsp;<a href=\"tel:704-298-0087\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/2\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">704-298-0087</a><br style=\"word-wrap: break-word !important;\">eMail Signature<br style=\"word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\">NOTE: BUYERS and SELLERS, NC real estate agents are required&nbsp;by law&nbsp;to provide&nbsp;the&nbsp;\"Working with Real Estate Agents Brochure\"&nbsp;Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure.&nbsp;<br style=\"word-wrap: break-word !important;\"><a href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"4\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a>&nbsp;<br style=\"word-wrap: break-word !important;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br><p class=\"yahoo-quoted-begin\" style=\"font-size: 15px; color: #715FFA; padding-top: 15px; margin-top: 0\">On Wednesday, November 11, 2020, 11:00 AM, Hayley Rogers &lt;<a href=\"mailto:hayley.realestate.rogers@gmail.com&gt\" >hayley.realestate.rogers@gmail.com&gt</a>; wrote:</p><blockquote class=\"iosymail\"><div id=\"yiv6469231463\"><div><div dir=\"ltr\">Good Morning everyone,<div><br clear=\"none\"></div><div>I just wanted to remind you that we have a professional service disclosure&nbsp;class today at 1:00pm. If you would like to join we will be doing the meeting with google meets and the link is:&nbsp; &nbsp;<a shape=\"rect\" href=\"http://meet.google.com/yyh-mard-gaz\" target=\"_blank\" rel=\"noreferrer noopener\">meet.google.com/yyh-mard-gaz</a>. This class is going to be a great class to get leads on different trades you may need in&nbsp;the future or even currently.&nbsp; Please let me know if you have any questions or concerns.</div><div><br clear=\"none\"></div><div>Thanks</div><div>Hayley Rogers</div><div>LRD-BIC/Harrisburg</div><br clear=\"none\"><div class=\"yiv6469231463yqt3062299772\" id=\"yiv6469231463yqt12752\"><div class=\"yiv6469231463gmail_quote\"><div class=\"yiv6469231463gmail_attr\" dir=\"ltr\">On Wed, Nov 11, 2020 at 9:39 AM Chris Puckett &lt;<a shape=\"rect\" ymailto=\"mailto:ch2realty@gmail.com\" href=\"mailto:<a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a>\" target=\"_blank\" rel=\"noreferrer noopener\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br clear=\"none\"></div><blockquote class=\"yiv6469231463gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex;\"><div dir=\"ltr\">Hello All, wanted to make sure you saw this invite pop up when you log into Dotloop.&nbsp; I would recommend it for everyone.&nbsp;&nbsp;<div><br clear=\"none\"></div><div>Also, FYI there are a ton of Dotloop tutorials on Youtube.&nbsp; Just Google Dotloop Training Tutorials.&nbsp;&nbsp;</div><div><br clear=\"none\"></div><div>If you need any assistance in the meantime, please let Paula, Deana or myself know.&nbsp;</div><div><br clear=\"none\"></div><div><div><img src=\"https://lantern-realty.com/wp-content/uploads/2020/11/image-1.png\" yahoo_partid=\"2\" alt=\"image.png\" width=\"452\" height=\"254\"><br clear=\"none\"></div><div><br clear=\"none\"></div>','Dotloop training','','publish','closed','open','','dotloop-training-2','','','2020-11-11 18:36:31','2020-11-11 18:36:31','',0,'https://lantern-realty.com/?p=1430',0,'post','',0),(1431,8,'2020-11-11 18:35:58','2020-11-11 18:35:58','','image.png','','inherit','closed','closed','','image-1','','','2020-11-11 18:36:31','2020-11-11 18:36:31','',1430,'https://lantern-realty.com/wp-content/uploads/2020/11/image-1.png',0,'attachment','image/png',0),(1432,6,'2020-11-12 15:25:55','2020-11-12 15:25:55','<div dir=\"ltr\">Good Morning, due to my scheduling error yesterday, the MIRACLE MORNING discussion will start at 11am today.  Zoom invite is below.  My apologies. <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Miracle Morning Discussion UPDATED!!!!!<br>Time: Nov 12, 2020 11:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/83570670319?pwd=aFMzQWpwNUNHU0x3dHZzK2YwRmJwUT09\">https://us02web.zoom.us/j/83570670319?pwd=aFMzQWpwNUNHU0x3dHZzK2YwRmJwUT09</a><br><br>Meeting ID: 835 7067 0319<br>Passcode: 609544<br>One tap mobile<br>+19292056099,,83570670319#,,,,,,0#,,609544# US (New York)<br>+13017158592,,83570670319#,,,,,,0#,,609544# US (Washington D.C)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 835 7067 0319<br>Passcode: 609544<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kjsg1U06G\">https://us02web.zoom.us/u/kjsg1U06G</a><br><br><div><br></div>','Miracle Morning discussion','','publish','closed','open','','miracle-morning-discussion-3','','','2020-11-12 15:25:55','2020-11-12 15:25:55','',0,'https://lantern-realty.com/?p=1432',0,'post','',0),(1423,1,'2020-11-11 02:11:01','2020-11-11 02:11:01','[[\"Office\",\"Address\",\"City\",\"State\",\"Zip Code\",\"Phone\",\"Broker In Charge\",\"CMLS\",\"NCREC\",\"HUD NAID\"],[\"Kannapolis\",\"119 West Avenue\",\"Kannapolis\",\"NC\",\"28081\",\"704-298-0087\",\"Deana Petty\",\"10712\",\"C29719\",\"LNTRNR2230\"],[\"Salisbury\",\"105 N. Main Street - Suite B\",\"Salisbury\",\"NC\",\"28144\",\"\",\"Jessica Cloward\",\"1071201\",\"C29719\",\"LNTRNR2230\"],[\"Harrisburg\",\"6477 Morehead Road\",\"Harrisburg\",\"NC\",\"28075\",\"\",\"Hayley Rogers\",\"12779\",\"C29719\",\"LNTRNR2230\"],[\"Albemarle\",\"118 East Main Street\",\"Albemarle\",\"NC\",\"28001\",\"980-318-4961\",\"Michael Fullerton\",\"12781\",\"C29719\",\"LNTRNR2230\"],[\"Mooresville\",\"106 Langtree Village Drive - Suite 301\",\"Mooresville\",\"NC\",\"28117\",\"704-980-9379\",\"Sarah Romesburg\",\"\",\"\",\"\"]]','Offices','','inherit','closed','closed','','1206-revision-v1','','','2020-11-11 02:11:01','2020-11-11 02:11:01','',1206,'https://lantern-realty.com/1206-revision-v1/',0,'revision','',0),(1424,6,'2020-11-11 14:47:26','2020-11-11 14:47:26','<div dir=\"ltr\">Hello All, wanted to make sure you saw this invite pop up when you log into Dotloop.  I would recommend it for everyone.  <div><br></div><div>Also, FYI there are a ton of Dotloop tutorials on Youtube.  Just Google Dotloop Training Tutorials.  </div><div><br></div><div>If you need any assistance in the meantime, please let Paula, Deana or myself know. </div><div><br></div><div><div><img src=\"https://lantern-realty.com/wp-content/uploads/2020/11/image.png\" alt=\"image.png\" width=\"452\" height=\"254\"><br></div><div><br></div>','Dotloop training','','publish','closed','open','','dotloop-training','','','2020-11-11 14:47:26','2020-11-11 14:47:26','',0,'https://lantern-realty.com/?p=1424',0,'post','',0),(1425,6,'2020-11-11 14:46:52','2020-11-11 14:46:52','','image.png','','inherit','closed','closed','','image','','','2020-11-11 14:47:26','2020-11-11 14:47:26','',1424,'https://lantern-realty.com/wp-content/uploads/2020/11/image.png',0,'attachment','image/png',0),(1426,6,'2020-11-11 15:19:35','2020-11-11 15:19:35','<div dir=\"ltr\">Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Team Meeting<br>Time: Nov 19, 2020 09:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89306970016?pwd=QVZlY2xhSjc2bUZKQ2c3K1cydGF5dz09\">https://us02web.zoom.us/j/89306970016?pwd=QVZlY2xhSjc2bUZKQ2c3K1cydGF5dz09</a><br><br>Meeting ID: 893 0697 0016<br>Passcode: 092563<br>One tap mobile<br>+19292056099,,89306970016#,,,,,,0#,,092563# US (New York)<br>+13017158592,,89306970016#,,,,,,0#,,092563# US (Washington D.C)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 893 0697 0016<br>Passcode: 092563<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kbggYy5rlM\">https://us02web.zoom.us/u/kbggYy5rlM</a><br><br><div><br></div>','Lantern Team meeting invite - 11/19 @ 9am','','publish','closed','open','','lantern-team-meeting-invite-11-19-9am','','','2020-11-11 15:19:35','2020-11-11 15:19:35','',0,'https://lantern-realty.com/?p=1426',0,'post','',0),(1427,0,'2020-11-11 16:06:20','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-11-11 16:06:20','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1427',0,'post','',0),(1428,6,'2020-11-11 16:06:20','2020-11-11 16:06:20','<div dir=\"ltr\">Below is the invite to our Zoom meeting tomorrow at 10am.  Would love to have as many as possible.  It will be well worth your time. <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Miracle Morning - Discussion<br>Time: Nov 12, 2020 11:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89552657757?pwd=SVI2ZjI1QmxUOFF4RXE0QlF5eGFUZz09\">https://us02web.zoom.us/j/89552657757?pwd=SVI2ZjI1QmxUOFF4RXE0QlF5eGFUZz09</a><br><br>Meeting ID: 895 5265 7757<br>Passcode: 014732<br>One tap mobile<br>+13017158592,,89552657757#,,,,,,0#,,014732# US (Washington D.C)<br>+13126266799,,89552657757#,,,,,,0#,,014732# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 895 5265 7757<br>Passcode: 014732<br>Find your local number: <a href=\"https://us02web.zoom.us/u/k3MDXHSFU\">https://us02web.zoom.us/u/k3MDXHSFU</a><br><br><div><br></div>','Miracle Morning - Discussion','','publish','closed','open','','miracle-morning-discussion','','','2020-11-11 16:06:20','2020-11-11 16:06:20','',0,'https://lantern-realty.com/?p=1428',0,'post','',0),(1429,6,'2020-11-11 16:19:35','2020-11-11 16:19:35','<div dir=\"ltr\">new invite.  Meeting is at 10am.  my apologies<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Miracle Morning - Discussion<br>Time: Nov 12, 2020 10:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89552657757?pwd=SVI2ZjI1QmxUOFF4RXE0QlF5eGFUZz09\">https://us02web.zoom.us/j/89552657757?pwd=SVI2ZjI1QmxUOFF4RXE0QlF5eGFUZz09</a><br><br>Meeting ID: 895 5265 7757<br>Passcode: 014732<br>One tap mobile<br>+13017158592,,89552657757#,,,,,,0#,,014732# US (Washington D.C)<br>+13126266799,,89552657757#,,,,,,0#,,014732# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 895 5265 7757<br>Passcode: 014732<br>Find your local number: <a href=\"https://us02web.zoom.us/u/k3MDXHSFU\">https://us02web.zoom.us/u/k3MDXHSFU</a><br><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Nov 11, 2020 at 11:01 AM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Below is the invite to our Zoom meeting tomorrow at 10am.  Would love to have as many as possible.  It will be well worth your time. <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Miracle Morning - Discussion<br>Time: Nov 12, 2020 11:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89552657757?pwd=SVI2ZjI1QmxUOFF4RXE0QlF5eGFUZz09\" target=\"_blank\" rel=\"noopener noreferrer\">https://us02web.zoom.us/j/89552657757?pwd=SVI2ZjI1QmxUOFF4RXE0QlF5eGFUZz09</a><br><br>Meeting ID: 895 5265 7757<br>Passcode: 014732<br>One tap mobile<br>+13017158592,,89552657757#,,,,,,0#,,014732# US (Washington D.C)<br>+13126266799,,89552657757#,,,,,,0#,,014732# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 895 5265 7757<br>Passcode: 014732<br>Find your local number: <a href=\"https://us02web.zoom.us/u/k3MDXHSFU\" target=\"_blank\" rel=\"noopener noreferrer\">https://us02web.zoom.us/u/k3MDXHSFU</a><br><br><div><br></div>','Miracle Morning - Discussion','','publish','closed','open','','miracle-morning-discussion-2','','','2020-11-11 16:19:35','2020-11-11 16:19:35','',0,'https://lantern-realty.com/?p=1429',0,'post','',0),(1452,1,'2020-12-01 01:44:23','2020-12-01 01:44:23','[[\"Last Name\",\"First Name\",\"Phone\",\"Email\",\"Home Office\",\"Team Role\",\"License #\",\"MLS ID\"],[\"Aldridge\",\"Jeremy\",\"704-773-0722\",\"kadaendeavorenterprises@gmail.com\",\"Kannapolis\",\"Broker\",306776,68707],[\"Allison\",\"Sheila\",\"828-712-7843\",\"sheila.allison10@gmail.com\",\"Albemarle\",\"Broker\",307918,69499],[\"Amoakon\",\"Sabine\",\"704-433-8462\",\"sab1.homes@outlook.com\",\"Kannapolis\",\"Broker\",316331,78139],[\"Argabright\",\"Sherri Wiles\",\"704-202-0806\",\"sherriargabright@gmail.com\",\"Kannapolis\",\"Broker\",220340,97879],[\"Aylesworth\",\"Alan\",\"980-330-8401\",\"alan.aylesworth.lantern@gmail.com\",\"Salisbury\",\"Broker\",308001,69474],[\"Barber\",\"Casey\",\"678-516-5196\",\"casey.m.barber@gmail.com\",\"Kannapolis\",\"Broker\",309318,71136],[\"Baxter\",\"Cheryl\",\"704-796-8843\",\"cmbaxter2@gmail.com\",\"Kannapolis\",\"Broker\",298432,61673],[\"Bendig\",\"Robbie\",\"704-640-4171\",\"rbendig89@gmail.com\",\"Salisbury\",\"Broker\",303589,65910],[\"Benton\",\"Toni\",\"980-521-2696\",\"tbenton81@gmail.com\",\"Kannapolis\",\"Broker\",310611,72825],[\"Bird\",\"April\",\"901-569-3161\",\"abirdhomes@gmail.com\",\"Kannapolis\",\"Broker\",301315,63368],[\"Boger\",\"Annie\",\"980-521-3988\",\"Annie.homes4u@gmail.com\",\"Kannapolis\",\"Broker\",291550,50846],[\"Brown\",\"Elizabeth\",\"704-421-0317\",\"elizabethbrownrealtor@gmail.com\",\"Kannapolis\",\"Broker\",302094,62799],[\"Brown\",\"Brenda\",\"704-796-1948\",\"seniors2@twc.com\",\"Kannapolis\",\"Broker\",302340,70430],[\"Bullock\",\"Dale\",\"704-791-5457\",\"dale.bullock2014realtor@gmail.com\",\"Kannapolis\",\"Broker\",280284,34573],[\"Cauble\",\"Crystal\",\"980-521-8431\",\"crystalcauble27@gmail.com\",\"Kannapolis\",\"Broker\",297260,60165],[\"Caudill\",\"Evonne\",\"704-791-7012\",\"ecaudill12@gmail.com\",\"Kannapolis\",\"Broker\",242767,52756],[\"Chandler\",\"Emily\",\"615-397-1925\",\"emilychandler.realtor@gmail.com\",\"Harrisburg\",\"Broker\",297265,60204],[\"Christy\",\"Meredith\",\"980-248-4097\",\"meredith@meredithchristy.com\",\"Harrisburg\",\"Broker\",298605,61273],[\"Clark\",\"Tracie\",\"704-900-4637\",\"tracieclarksells@gmail.com\",\"Harrisburg\",\"Broker\",238413,29140],[\"Clodfelter\",\"Jody\",\"704-438-2190\",\"jodyc1972@gmail.com\",\"Albemarle\",\"Broker\",297153,58787],[\"Cloward\",\"Jessica\",\"704-502-8383\",\"jessicacloward1@gmail.com\",\"Salisbury\",\"Broker - in - Charge\",298274,57857],[\"Cody\",\"Amanda\",\"980-581-1399\",\"amandaearnhardt@yahoo.com\",\"Albemarle\",\"Broker\",217780,50220],[\"Cook\",\"Jenna\",\"704-960-5591\",\"4jennacook@gmail.com\",\"Kannapolis\",\"Broker\",293117,53960],[\"Crowder\",\"Lisa\",\"704-380-7455\",\"lisadcrowder@gmail.com\",\"Harrisburg\",\"Broker\",279316,32788],[\"Davis\",\"Michael\",\"\",\"mdavis@thewhiteoakgrove.com\",\"Kannapolis\",\"Broker\",289518,548508637],[\"Drakulich\",\"Kimberly\",\"704-778-6959\",\"kim.drakulich@gmail.com\",\"Kannapolis\",\"Broker\",277431,35684],[\"Dunphy\",\"Australia\",\"704-701-0177\",\"cdunphy51@hotmail,com\",\"Kannapolis\",\"Broker\",293885,67265],[\"Erion\",\"Ivonne\",\"704-796-3530\",\"ivonne@ivonneerion.com\",\"Kannapolis\",\"Broker\",289340,48565],[\"Evans\",\"Amy\",\"704-273-0107\",\"amyevansrealty@gmail.com\",\"Kannapolis\",\"Broker\",297737,59809],[\"Ferlauto\",\"Ashley\",\"980-333-8085\",\"ashleyferlauto@gmail.com\",\"Kannapolis\",\"Broker\",291080,50443],[\"Franklin\",\"Jeff\",\"704-787-4888\",\"jeff.franklin.realtor@gmail.com\",\"Salisbury\",\"Broker\",298704,61490],[\"Fullerton\",\"Michael\",\"980-318-4961\",\"mikefullerton72@gmail.com\",\"Albemarle\",\"Broker - in - Charge\",290662,51527],[\"Garcia\",\"Yira\",\"704-907-9573\",\"ygarciarealty@gmail.com\",\"Kannapolis\",\"Broker\",300114,63290],[\"Gearing\",\"Lynnette\",\"704-699-6902\",\"lynnettegearing.realtor@gmail.com\",\"Kannapolis\",\"Broker\",306394,69473],[\"Griffin\",\"Deborah\",\"980-428-2462\",\"deborahg142@gmail.com\",\"Salisbury\",\"Broker\",145465,56410],[\"Hager\",\"Cathy\",\"980-521-4429\",\"1cathyhager@gmail.com\",\"Kannapolis\",\"Broker\",294095,54235],[\"Hallman\",\"Liz\",\"980-621-9575\",\"lizphallman@gmail.com\",\"Kannapolis\",\"Broker\",281082,35806],[\"Haywood\",\"Conard\",\"704-467-5102\",\"conardhaywood@gmail.com\",\"Kannapolis\",\"Broker\",319615,\"\"],[\"Hedrick\",\"Courtney\",\"704-608-7893\",\"hedrickhomes@gmail.com\",\"Kannapolis\",\"Broker\",301363,63492],[\"Hedrick\",\"William\",\"704-773-9204\",\"will@thewillhedrick.com\",\"Kannapolis\",\"Broker\",314736,\"\"],[\"Hill\",\"Hosanna\",\"336-317-8050\",\"hill.hosanna@gmail.com\",\"Kannapolis\",\"Broker\",315320,76468],[\"Hiner\",\"Donna\",\"704-956-9898\",\"donnasellsrealestate1@gmail.com\",\"Harrisburg\",\"Broker\",272915,21485],[\"Howell\",\"Kimberly\",\"704-699-2600\",\"kdhowell1996@gmail.com\",\"Salisbury\",\"Broker\",302115,64440],[\"Jackling\",\"Melissa\",\"980-621-4623\",\"onlymyrealtormelissa@gmail.com\",\"Kannapolis\",\"Broker\",291920,51371],[\"Jalynski\",\"Christine\",\"704-749-4944\",\"cjalynskirealty@gmail.com\",\"Kannapolis\",\"Broker\",297054,58601],[\"Johnson\",\"Priscilla\",\"704-891-5386\",\"priscillajrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"\",80621],[\"Keller\",\"Kelly\",\"704-467-4485\",\"kelly.keller.realty@gmail.com\",\"Kannapolis\",\"Broker\",313269,74509],[\"Keller\",\"Margie\",\"704-245-2739\",\"margkellerhomes@gmail.com\",\"Salisbury\",\"Broker\",298750,61747],[\"Kidd\",\"Cheyenne\",\"980-939-3809\",\"cheyennekidd00@gmail.com\",\"Salisbury\",\"Broker\",318995,81249],[\"LaCroix\",\"Melissa\",\"704-796-6531\",\"mlacroix.realty@gmail.com\",\"Kannapolis\",\"Broker\",303207,65548],[\"Lamb\",\"Dawn\",\"980-781-7385\",\"dawnlambrealtor@gmail.com\",\"Kannapolis\",\"Broker\",315881,77815],[\"Lambert\",\"Amanda\",\"704-400-0641\",\"teamlambert.sellsnc@gmail.com\",\"Harrisburg\",\"Broker\",25766,65579],[\"Lambert\",\"Jerry\",\"704-791-0429\",\"jerry.teamlambert@gmail.com\",\"Harrisburg\",\"Broker\",321038,81412],[\"Laney\",\"Sandi\",\"704-773-5886\",\"sandilaney2@gmail.com\",\"Kannapolis\",\"Broker\",272563,22259],[\"Leonard\",\"Bret\",\"980-521-7156\",\"buywithbret@gmail.com\",\"Salisbury\",\"Broker\",303052,65034],[\"Matthews\",\"Helen\",\"704-796-4026\",\"hamatthews@gmail.com\",\"Kannapolis\",\"Broker\",303222,65519],[\"McCauley\",\"Lindsey\",\"704-236-7850\",\"lmccauley727@gmail.com\",\"Kannapolis\",\"Broker\",298645,61546],[\"Merrell\",\"Connie\",\"704-701-1678\",\"connie.merrell.realtor@gmail.com\",\"Kannapolis\",\"Broker\",320338,81061],[\"Miltz\",\"Deanna\",\"704-634-6289\",\"dmiltzrealtor@gmail.com\",\"Harrisburg\",\"Broker\",298941,61437],[\"Monrad\",\"Rachel\",\"704-682-9422\",\"rachel@randsrealtygroup.com\",\"Mooresville\",\"Broker\",251860,32949],[\"Nutter\",\"Julie\",\"240-888-7493\",\"teamnutter@gmail.com\",\"Kannapolis\",\"Broker\",293824,48403],[\"Overcash\",\"Jason\",\"980-622-6327\",\"jasonovercashrealty@gmail.com\",\"Kannapolis\",\"Broker\",305546,68295],[\"Overcash\",\"Laura\",\"704-699-0765\",\"lovercashre@gmail.com\",\"Kannapolis\",\"Broker\",301686,63472],[\"Petty\",\"Deana\",\"704-258-8068\",\"deana327@gmail.com\",\"Kannapolis\",\"BIC/Owner\",263080,72155],[\"Pricher\",\"Lisa\",\"704-288-7392\",\"ncrealtorlisa@gmail.com\",\"Harrisburg\",\"Broker\",276287,24658],[\"Puckett\",\"Chris\",\"704-298-5872\",\"ch2realty@gmail.com\",\"Kannapolis\",\"Qualifying Broker/Owner\",279213,32613],[\"Queen\",\"Rodney\",\"704-239-3617\",\"rodneque@aol.com\",\"Salisbury\",\"Broker\",197764,18091],[\"Rhew\",\"Rick\",\"704-491-2458\",\"ricksellsnc@gmail.com\",\"Harrisburg\",\"Broker\",288631,49282],[\"Robinson\",\"Kelly\",\"704-699-2268\",\"kelly.robinson.realtor@gmail.com\",\"Kannapolis\",\"Broker\",316981,79218],[\"Rogers\",\"Hayley\",\"704-431-2816\",\"hayley.realestate.rogers@gmail.com\",\"Harrisburg\",\"Broker - in - Charge\",281085,35693],[\"Romesburg\",\"Sarah\",\"336-466-1646\",\"sarah@randsrealtygroup.com\",\"Mooresville\",\"Broker\",279215,32982],[\"Sadler\",\"Kimberly\",\"704-798-8338\",\"kimsadler.realtor@gmail.com\",\"Kannapolis\",\"Broker\",290260,49723],[\"Severt\",\"Paula\",\"704-232-3433\",\"paulasevert@yahoo.com\",\"Kannapolis\",\"Broker/Owner\",256100,68433],[\"Sherin\",\"Chelsi\",\"570-690-3723\",\"chelsi.sherin@gmail.com\",\"Kannapolis\",\"Broker\",317621,79645],[\"Sides\",\"Holden\",\"704-699-2092\",\"sideshb94@yahoo.com\",\"Kannapolis\",\"Broker\",322169,\"\"],[\"Sloan Holshouser\",\"Courtney\",\"704-754-7104\",\"csloansellshomes@gmail.com\",\"Salisbury\",\"Broker\",314926,\"\"],[\"Solarek\",\"Leslie\",\"229-854-0444\",\"lesliesellsnc@gmail.com\",\"Kannapolis\",\"Broker\",298587,61042],[\"Starnes\",\"Susan\",\"704-305-0040\",\"susansellsnchomes@gmail.com\",\"Harrisburg\",\"Broker\",304452,66546],[\"Stillinger\",\"Ethan\",\"704-957-1282\",\"ethanstillingerlrd@gmail.com\",\"Kannapolis\",\"Broker\",283899,39819],[\"Strickland\",\"Tricia\",\"704-791-7314\",\"tricia.strickland927@gmail.com\",\"Kannapolis\",\"Broker\",314178,75477],[\"Suther\",\"John\",\"704-622-1432\",\"johnsutherllc@gmail.com\",\"Kannapolis\",\"Broker\",309445,71221],[\"Thomas\",\"Ellen\",\"704-791-3141\",\"ellencthomasservices@gmail.com\",\"Kannapolis\",\"Broker\",305464,67704],[\"Thompson\",\"Chuck\",\"704-701-0129\",\"crtbroker@gmail.com\",\"Kannapolis\",\"Broker\",278357,31317],[\"Trask\",\"Kimberly\",\"336-906-0848\",\"kimberlyktrask@gmail.com\",\"Kannapolis\",\"Broker\",312666,75085],[\"Watson\",\"Brianne\",\"704-791-3272\",\"briannewatsonrealtor@gmail.com\",\"Kannapolis\",\"Broker\",293189,53736],[\"Widenhouse\",\"Cindy\",\"704-795-8017\",\"cindy.s.widenhouse@gmail.com\",\"Kannapolis\",\"Broker\",299028,61885],[\"Wilson\",\"Rick\",\"704-996-9902\",\"richard.wilson4565@gmail.com\",\"Kannapolis\",\"Broker\",321788,81743],[\"Wooley\",\"Todd\",\"704-904-7162\",\"twooleyrealty@gmail.com\",\"Kannapolis\",\"Broker\",309536,71163],[\"Yates\",\"Melissa\",\"704-239-3835\",\"melissayates4u@gmail.com\",\"Salisbury\",\"Broker\",307917,69428],[\"Zhang\",\"Min\",\"319-471-1622\",\"realtymin77@gmail.com\",\"Harrisburg\",\"Broker\",299816,63292]]','Team Directory','','inherit','closed','closed','','1199-revision-v1','','','2020-12-01 01:44:23','2020-12-01 01:44:23','',1199,'https://lantern-realty.com/1199-revision-v1/',0,'revision','',0),(1422,1,'2020-11-11 02:08:42','2020-11-11 02:08:42','[[\"Last Name\",\"First Name\",\"Phone\",\"Email\",\"Home Office\",\"Team Role\",\"License #\",\"MLS ID\"],[\"Aldridge\",\"Jeremy\",\"704-773-0722\",\"kadaendeavorenterprises@gmail.com\",\"Kannapolis\",\"Broker\",\"306776\",\"68707\"],[\"Allison\",\"Sheila\",\"828-712-7843\",\"sheila.allison10@gmail.com\",\"Albemarle\",\"Broker\",\"307918\",\"69499\"],[\"Amoakon\",\"Sabine\",\"704-433-8462\",\"sab1.homes@outlook.com\",\"Kannapolis\",\"Broker\",\"316331\",\"78139\"],[\"Argabright\",\"Sherri Wiles\",\"704-202-0806\",\"sherriargabright@gmail.com\",\"Kannapolis\",\"Broker\",\"220340\",\"97879\"],[\"Aylesworth\",\"Alan\",\"980-330-8401\",\"alan.aylesworth.lantern@gmail.com\",\"Salisbury\",\"Broker\",\"308001\",\"69474\"],[\"Barber\",\"Casey\",\"678-516-5196\",\"casey.m.barber@gmail.com\",\"Kannapolis\",\"Broker\",\"309318\",\"71136\"],[\"Baxter\",\"Cheryl\",\"704-796-8843\",\"cmbaxter2@gmail.com\",\"Kannapolis\",\"Broker\",\"298432\",\"61673\"],[\"Bendig\",\"Robbie\",\"704-640-4171\",\"rbendig89@gmail.com\",\"Salisbury\",\"Broker\",\"303589\",\"65910\"],[\"Benton\",\"Toni\",\"980-521-2696\",\"tbenton81@gmail.com\",\"Kannapolis\",\"Broker\",\"310611\",\"72825\"],[\"Bird\",\"April\",\"901-569-3161\",\"abirdhomes@gmail.com\",\"Kannapolis\",\"Broker\",\"301315\",\"63368\"],[\"Boger\",\"Annie\",\"980-521-3988\",\"Annie.homes4u@gmail.com\",\"Kannapolis\",\"Broker\",\"291550\",\"50846\"],[\"Brown\",\"Elizabeth\",\"704-421-0317\",\"elizabethbrownrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"302094\",\"62799\"],[\"Brown\",\"Brenda\",\"704-796-1948\",\"seniors2@twc.com\",\"Kannapolis\",\"Broker\",\"302340\",\"70430\"],[\"Bullock\",\"Dale\",\"704-791-5457\",\"dale.bullock2014realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"280284\",\"34573\"],[\"Cauble\",\"Crystal\",\"980-521-8431\",\"crystalcauble27@gmail.com\",\"Kannapolis\",\"Broker\",\"297260\",\"60165\"],[\"Caudill\",\"Evonne\",\"704-791-7012\",\"ecaudill12@gmail.com\",\"Kannapolis\",\"Broker\",\"242767\",\"52756\"],[\"Chandler\",\"Emily\",\"615-397-1925\",\"emilychandler.realtor@gmail.com\",\"Harrisburg\",\"Broker\",\"297265\",\"60204\"],[\"Christy\",\"Meredith\",\"980-248-4097\",\"meredith@meredithchristy.com\",\"Harrisburg\",\"Broker\",\"298605\",\"61273\"],[\"Clark\",\"Tracie\",\"704-900-4637\",\"tracieclarksells@gmail.com\",\"Harrisburg\",\"Broker\",\"238413\",\"29140\"],[\"Clodfelter\",\"Jody\",\"704-438-2190\",\"jodyc1972@gmail.com\",\"Albemarle\",\"Broker\",\"297153\",\"58787\"],[\"Cloward\",\"Jessica\",\"704-502-8383\",\"jessicacloward1@gmail.com\",\"Salisbury\",\"Broker - in - Charge\",\"298274\",\"57857\"],[\"Cody\",\"Amanda\",\"980-581-1399\",\"amandaearnhardt@yahoo.com\",\"Albemarle\",\"Broker\",\"217780\",\"50220\"],[\"Cook\",\"Jenna\",\"704-960-5591\",\"4jennacook@gmail.com\",\"Kannapolis\",\"Broker\",\"293117\",\"53960\"],[\"Crowder\",\"Lisa\",\"704-380-7455\",\"lisadcrowder@gmail.com\",\"Harrisburg\",\"Broker\",\"279316\",\"32788\"],[\"Davis\",\"Michael\",\"\",\"mdavis@thewhiteoakgrove.com\",\"Kannapolis\",\"Broker\",\"289518\",\"548508637\"],[\"Drakulich\",\"Kimberly\",\"704-778-6959\",\"kim.drakulich@gmail.com\",\"Kannapolis\",\"Broker\",\"277431\",\"35684\"],[\"Dunphy\",\"Australia\",\"704-701-0177\",\"cdunphy51@hotmail,com\",\"Kannapolis\",\"Broker\",\"293885\",\"67265\"],[\"Erion\",\"Ivonne\",\"704-796-3530\",\"ivonne@ivonneerion.com\",\"Kannapolis\",\"Broker\",\"289340\",\"48565\"],[\"Evans\",\"Amy\",\"704-273-0107\",\"amyevansrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"297737\",\"59809\"],[\"Ferlauto\",\"Ashley\",\"980-333-8085\",\"ashleyferlauto@gmail.com\",\"Kannapolis\",\"Broker\",\"291080\",\"50443\"],[\"Franklin\",\"Jeff\",\"704-787-4888\",\"jeff.franklin.realtor@gmail.com\",\"Salisbury\",\"Broker\",\"298704\",\"61490\"],[\"Fullerton\",\"Michael\",\"980-318-4961\",\"mikefullerton72@gmail.com\",\"Albemarle\",\"Broker - in - Charge\",\"290662\",\"51527\"],[\"Garcia\",\"Yira\",\"704-907-9573\",\"ygarciarealty@gmail.com\",\"Kannapolis\",\"Broker\",\"300114\",\"63290\"],[\"Gearing\",\"Lynnette\",\"704-699-6902\",\"lynnettegearing.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"306394\",\"69473\"],[\"Griffin\",\"Deborah\",\"980-428-2462\",\"deborahg142@gmail.com\",\"Salisbury\",\"Broker\",\"145465\",\"56410\"],[\"Hager\",\"Cathy\",\"980-521-4429\",\"1cathyhager@gmail.com\",\"Kannapolis\",\"Broker\",\"294095\",\"54235\"],[\"Hallman\",\"Liz\",\"980-621-9575\",\"lizphallman@gmail.com\",\"Kannapolis\",\"Broker\",\"281082\",\"35806\"],[\"Haywood\",\"Conard\",\"704-467-5102\",\"conardhaywood@gmail.com\",\"Kannapolis\",\"Broker\",\"319615\",\"\"],[\"Hedrick\",\"Courtney\",\"704-608-7893\",\"hedrickhomes@gmail.com\",\"Kannapolis\",\"Broker\",\"301363\",\"63492\"],[\"Hedrick\",\"William\",\"704-773-9204\",\"will@thewillhedrick.com\",\"Kannapolis\",\"Broker\",\"314736\",\"\"],[\"Hill\",\"Hosanna\",\"336-317-8050\",\"hill.hosanna@gmail.com\",\"Kannapolis\",\"Broker\",\"315320\",\"76468\"],[\"Hiner\",\"Donna\",\"704-956-9898\",\"donnasellsrealestate1@gmail.com\",\"Harrisburg\",\"Broker\",\"272915\",\"21485\"],[\"Howell\",\"Kimberly\",\"704-699-2600\",\"kdhowell1996@gmail.com\",\"Salisbury\",\"Broker\",\"302115\",\"64440\"],[\"Jackling\",\"Melissa\",\"980-621-4623\",\"onlymyrealtormelissa@gmail.com\",\"Kannapolis\",\"Broker\",\"291920\",\"51371\"],[\"Jalynski\",\"Christine\",\"704-749-4944\",\"cjalynskirealty@gmail.com\",\"Kannapolis\",\"Broker\",\"297054\",\"58601\"],[\"Johnson\",\"Priscilla\",\"704-891-5386\",\"priscillajrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"\",\"80621\"],[\"Keller\",\"Kelly\",\"704-467-4485\",\"kelly.keller.realty@gmail.com\",\"Kannapolis\",\"Broker\",\"313269\",\"74509\"],[\"Keller\",\"Margie\",\"704-245-2739\",\"margkellerhomes@gmail.com\",\"Salisbury\",\"Broker\",\"298750\",\"61747\"],[\"Kidd\",\"Cheyenne\",\"980-939-3809\",\"cheyennekidd00@gmail.com\",\"Salisbury\",\"Broker\",\"318995\",\"81249\"],[\"LaCroix\",\"Melissa\",\"704-796-6531\",\"mlacroix.realty@gmail.com\",\"Kannapolis\",\"Broker\",\"303207\",\"65548\"],[\"Lamb\",\"Dawn\",\"980-781-7385\",\"dawnlambrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"315881\",\"77815\"],[\"Lambert\",\"Amanda\",\"704-400-0641\",\"teamlambert.sellsnc@gmail.com\",\"Harrisburg\",\"Broker\",\"25766\",\"65579\"],[\"Lambert\",\"Jerry\",\"704-791-0429\",\"jerry.teamlambert@gmail.com\",\"Harrisburg\",\"Broker\",\"321038\",\"81412\"],[\"Laney\",\"Sandi\",\"704-773-5886\",\"sandilaney2@gmail.com\",\"Kannapolis\",\"Broker\",\"272563\",\"22259\"],[\"Leonard\",\"Bret\",\"980-521-7156\",\"buywithbret@gmail.com\",\"Salisbury\",\"Broker\",\"303052\",\"65034\"],[\"Matthews\",\"Helen\",\"704-796-4026\",\"hamatthews@gmail.com\",\"Kannapolis\",\"Broker\",\"303222\",\"65519\"],[\"McCauley\",\"Lindsey\",\"704-236-7850\",\"lmccauley727@gmail.com\",\"Kannapolis\",\"Broker\",\"298645\",\"61546\"],[\"Merrell\",\"Connie\",\"704-701-1678\",\"connie.merrell.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"320338\",\"81061\"],[\"Miltz\",\"Deanna\",\"704-634-6289\",\"dmiltzrealtor@gmail.com\",\"Harrisburg\",\"Broker\",\"298941\",\"61437\"],[\"Monrad\",\"Rachel\",\"704-682-9422\",\"rachel@randsrealtygroup.com\",\"Mooresville\",\"Broker\",\"251860\",\"32949\"],[\"Nutter\",\"Julie\",\"240-888-7493\",\"teamnutter@gmail.com\",\"Kannapolis\",\"Broker\",\"293824\",\"48403\"],[\"Overcash\",\"Jason\",\"980-622-6327\",\"jasonovercashrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"305546\",\"68295\"],[\"Overcash\",\"Laura\",\"704-699-0765\",\"lovercashre@gmail.com\",\"Kannapolis\",\"Broker\",\"301686\",\"63472\"],[\"Petty\",\"Deana\",\"704-258-8068\",\"deana327@gmail.com\",\"Kannapolis\",\"BIC/Owner\",\"263080\",\"72155\"],[\"Pricher\",\"Lisa\",\"704-288-7392\",\"ncrealtorlisa@gmail.com\",\"Harrisburg\",\"Broker\",\"276287\",\"24658\"],[\"Puckett\",\"Chris\",\"704-298-5872\",\"ch2realty@gmail.com\",\"Kannapolis\",\"Qualifying Broker/Owner\",\"279213\",\"32613\"],[\"Queen\",\"Rodney\",\"704-239-3617\",\"rodneque@aol.com\",\"Salisbury\",\"Broker\",\"197764\",\"18091\"],[\"Rhew\",\"Rick\",\"704-491-2458\",\"ricksellsnc@gmail.com\",\"Harrisburg\",\"Broker\",\"288631\",\"49282\"],[\"Robinson\",\"Kelly\",\"704-699-2268\",\"kelly.robinson.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"316981\",\"79218\"],[\"Rogers\",\"Hayley\",\"704-431-2816\",\"hayley.realestate.rogers@gmail.com\",\"Harrisburg\",\"Broker - in - Charge\",\"281085\",\"35693\"],[\"Romesburg\",\"Sarah\",\"336-466-1646\",\"sarah@randsrealtygroup.com\",\"Mooresville\",\"Broker\",\"279215\",\"32982\"],[\"Sadler\",\"Kimberly\",\"704-798-8338\",\"kimsadler.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"290260\",\"49723\"],[\"Severt\",\"Paula\",\"704-232-3433\",\"paulasevert@yahoo.com\",\"Kannapolis\",\"Broker/Owner\",\"256100\",\"68433\"],[\"Sherin\",\"Chelsi\",\"570-690-3723\",\"chelsi.sherin@gmail.com\",\"Kannapolis\",\"Broker\",\"317621\",\"79645\"],[\"Sides\",\"Holden\",\"704-699-2092\",\"sideshb94@yahoo.com\",\"Kannapolis\",\"Broker\",\"322169\",\"\"],[\"Solarek\",\"Leslie\",\"229-854-0444\",\"lesliesellsnc@gmail.com\",\"Kannapolis\",\"Broker\",\"298587\",\"61042\"],[\"Starnes\",\"Susan\",\"704-305-0040\",\"susansellsnchomes@gmail.com\",\"Harrisburg\",\"Broker\",\"304452\",\"66546\"],[\"Stillinger\",\"Ethan\",\"704-957-1282\",\"ethanstillingerlrd@gmail.com\",\"Kannapolis\",\"Broker\",\"283899\",\"39819\"],[\"Strickland\",\"Tricia\",\"704-791-7314\",\"tricia.strickland927@gmail.com\",\"Kannapolis\",\"Broker\",\"314178\",\"75477\"],[\"Suther\",\"John\",\"704-622-1432\",\"johnsutherllc@gmail.com\",\"Kannapolis\",\"Broker\",\"309445\",\"71221\"],[\"Thomas\",\"Ellen\",\"704-791-3141\",\"ellencthomasservices@gmail.com\",\"Kannapolis\",\"Broker\",\"305464\",\"67704\"],[\"Thompson\",\"Chuck\",\"704-701-0129\",\"crtbroker@gmail.com\",\"Kannapolis\",\"Broker\",\"278357\",\"31317\"],[\"Trask\",\"Kimberly\",\"336-906-0848\",\"kimberlyktrask@gmail.com\",\"Kannapolis\",\"Broker\",\"312666\",\"75085\"],[\"Watson\",\"Brianne\",\"704-791-3272\",\"briannewatsonrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"293189\",\"53736\"],[\"Widenhouse\",\"Cindy\",\"704-795-8017\",\"cindy.s.widenhouse@gmail.com\",\"Kannapolis\",\"Broker\",\"299028\",\"61885\"],[\"Wilson\",\"Rick\",\"704-996-9902\",\"richard.wilson4565@gmail.com\",\"Kannapolis\",\"Broker\",\"321788\",\"81743\"],[\"Wooley\",\"Todd\",\"704-904-7162\",\"twooleyrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"309536\",\"71163\"],[\"Yates\",\"Melissa\",\"704-239-3835\",\"melissayates4u@gmail.com\",\"Salisbury\",\"Broker\",\"307917\",\"69428\"],[\"Zhang\",\"Min\",\"319-471-1622\",\"realtymin77@gmail.com\",\"Harrisburg\",\"Broker\",\"299816\",\"63292\"]]','Team Directory','','inherit','closed','closed','','1199-revision-v1','','','2020-11-11 02:08:42','2020-11-11 02:08:42','',1199,'https://lantern-realty.com/1199-revision-v1/',0,'revision','',0),(1412,1,'2020-11-11 01:53:52','2020-11-11 01:53:52','<h2>Lantern Realty  - Mooresville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7049809379\">						\n										(704) 980-9379\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:LanternRealtyMooresville@gmail.com\">						\n										LanternRealtyMooresville@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Mooresville','','inherit','closed','closed','','1309-revision-v1','','','2020-11-11 01:53:52','2020-11-11 01:53:52','',1309,'https://lantern-realty.com/1309-revision-v1/',0,'revision','',0),(1415,1,'2020-11-11 02:04:44','2020-11-11 02:04:44','','LRD Direct Deposit','','inherit','','closed','','lrd-direct-deposit','','','2020-11-11 02:04:44','2020-11-11 02:04:44','',0,'https://lantern-realty.com/wp-content/uploads/2020/11/LRD-Direct-Deposit.pdf',0,'attachment','application/pdf',0),(1416,1,'2020-11-11 02:04:48','2020-11-11 02:04:48','','LRD Draft Authorization Form','','inherit','','closed','','lrd-draft-authorization-form','','','2020-11-11 02:04:48','2020-11-11 02:04:48','',0,'https://lantern-realty.com/wp-content/uploads/2020/11/LRD-Draft-Authorization-Form.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(1417,1,'2020-11-11 02:04:51','2020-11-11 02:04:51','','LRD Mentoring Program Guidelines 2020','','inherit','','closed','','lrd-mentoring-program-guidelines-2020','','','2020-11-11 02:04:51','2020-11-11 02:04:51','',0,'https://lantern-realty.com/wp-content/uploads/2020/11/LRD-Mentoring-Program-Guidelines-2020.pdf',0,'attachment','application/pdf',0),(1418,1,'2020-11-11 02:04:58','2020-11-11 02:04:58','','LRD Policy Updated 10_14_2020','','inherit','','closed','','lrd-policy-updated-10_14_2020','','','2020-11-11 02:04:58','2020-11-11 02:04:58','',0,'https://lantern-realty.com/wp-content/uploads/2020/11/LRD-Policy-Updated-10_14_2020.pdf',0,'attachment','application/pdf',0),(1419,1,'2020-11-11 02:05:02','2020-11-11 02:05:02','','LRD Safety Plan','','inherit','','closed','','lrd-safety-plan','','','2020-11-11 02:05:02','2020-11-11 02:05:02','',0,'https://lantern-realty.com/wp-content/uploads/2020/11/LRD-Safety-Plan.pdf',0,'attachment','application/pdf',0),(1420,1,'2020-11-11 02:05:06','2020-11-11 02:05:06','','Measurement Booklet (NCREC) v1','','inherit','','closed','','measurement-booklet-ncrec-v1','','','2020-11-11 02:05:06','2020-11-11 02:05:06','',0,'https://lantern-realty.com/wp-content/uploads/2020/11/Measurement-Booklet-NCREC-v1.pdf',0,'attachment','application/pdf',0),(1401,1,'2020-11-11 01:38:40','2020-11-11 01:38:40','<!-- wp:paragraph -->\n<p>The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in real estate in 2015. She was also named “Rookie of the Year” in 2017 by Central Carolina Association of Realtors. Liz has been an active NC real estate broker since 2014. Liz currently resides with her husband, son, Great Dane &amp; English Bulldog in the small town of Mt. Pleasant NC. Since she could remember, Liz has always wanted to work in real estate. After graduating from Mt. Pleasant High School in 2009, the economy had recently crashed so she decided to put her dreams of a real estate career on hold and started taking college courses for the medical field. Realizing this was not the path she wanted to pursue, she took a leap of faith and decided to get her real estate license like she had originally planned. Coming from a strong customer service background, this has helped Liz develop excellent listening skills and patience to better service her clients. Liz became a new homeowner herself in 2016 and has built a strong client base by helping many of her former classmates purchase their first homes, so she understands the hurdles for first time home buyers. Having lived in the area her entire life, Liz can tell you nearly anything you need to know about the area, and if she doesn’t have the answer for you–you can bet she will find it out! She has helped many clients relocate to our area. Whether it’s your first or last home buying experience, you can count on Liz!</p>\n<!-- /wp:paragraph -->','Liz Hallman','','inherit','closed','closed','','1398-revision-v1','','','2020-11-11 01:38:40','2020-11-11 01:38:40','',1398,'https://lantern-realty.com/1398-revision-v1/',0,'revision','',0),(1402,1,'2020-11-11 01:43:18','2020-11-11 01:43:18','<!-- wp:paragraph -->\n<p>Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant, NC with her husband, Jerry, daughters, Mabry and Quinlee and their dogs, Stella and Riggins. Amanda is a graduate of Central Cabarrus High School and The Art Institute of Charlotte with a degree in Interior Design. Amanda’s love and passion for construction and design started at an early age as she would attend construction job site and client meetings with her father who was a general contractor and land developer here in Cabarrus County. Once Amanda obtained her interior design degree she worked for both large &amp; small architecture firms in the Piedmont Region. Life was full as she also continued to help her father with custom design projects for homes he was building. Amanda knew that a career move into real estate was the perfect fit. Amanda’s knowledge of construction, design, architecture, and the community will make any real estate transaction exceed your expectations.</p>\n<!-- /wp:paragraph -->','Amanda Lambert','','publish','closed','closed','','amanda-lambert','','','2021-02-18 14:17:59','2021-02-18 14:17:59','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1402',68,'houzez_agent','',0),(1403,1,'2020-11-11 01:41:40','2020-11-11 01:41:40','<!-- wp:paragraph -->\n<p>Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant, NC with her husband, Jerry, daughters, Mabry and Quinlee and their dogs, Stella and Riggins. Amanda is a graduate of Central Cabarrus High School and The Art Institute of Charlotte with a degree in Interior Design. Amanda’s love and passion for construction and design started at an early age as she would attend construction job site and client meetings with her father who was a general contractor and land developer here in Cabarrus County. Once Amanda obtained her interior design degree she worked for both large &amp; small architecture firms in the Piedmont Region. Life was full as she also continued to help her father with custom design projects for homes he was building. Amanda knew that a career move into real estate was the perfect fit. Amanda’s knowledge of construction, design, architecture, and the community will make any real estate transaction exceed your expectations.</p>\n<!-- /wp:paragraph -->','Amanda Lambert','','inherit','closed','closed','','1402-revision-v1','','','2020-11-11 01:41:40','2020-11-11 01:41:40','',1402,'https://lantern-realty.com/1402-revision-v1/',0,'revision','',0),(1404,1,'2020-11-11 01:42:47','2020-11-11 01:42:47','','Amanda_Lambert','','inherit','','closed','','amanda_lambert','','','2020-11-11 01:42:47','2020-11-11 01:42:47','',1402,'https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg',0,'attachment','image/jpeg',0),(1405,1,'2020-11-11 01:47:05','2020-11-11 01:47:05','<!-- wp:paragraph -->\n<p>Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant with his wife, Amanda, daughters, Mabry and Quinlee and their dogs, Stella and Riggins. Jerry is a graduate of Mt Pleasant High School. After spending 20 years in the racing world, building race cars, Jerry decided to join his wife as a licensed realtor. Together Jerry &amp; Amanda forms The Lambert Team.</p>\n<!-- /wp:paragraph -->','Jerry Lambert','','draft','closed','closed','','jerry-lambert','','','2022-06-24 01:18:12','2022-06-24 01:18:12','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1405',69,'houzez_agent','',0),(1406,1,'2020-11-11 01:45:34','2020-11-11 01:45:34','<!-- wp:paragraph -->\n<p>Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant with his wife, Amanda, daughters, Mabry and Quinlee and their dogs, Stella and Riggins. Jerry is a graduate of Mt Pleasant High School. After spending 20 years in the racing world, building race cars, Jerry decided to join his wife as a licensed realtor. Together Jerry &amp; Amanda forms The Lambert Team.</p>\n<!-- /wp:paragraph -->','Jerry Lambert','','inherit','closed','closed','','1405-revision-v1','','','2020-11-11 01:45:34','2020-11-11 01:45:34','',1405,'https://lantern-realty.com/1405-revision-v1/',0,'revision','',0),(1407,1,'2020-11-11 01:46:35','2020-11-11 01:46:35','','Jerry_Lambert','','inherit','','closed','','jerry_lambert','','','2020-11-11 01:46:35','2020-11-11 01:46:35','',1405,'https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg',0,'attachment','image/jpeg',0),(1408,1,'2020-11-11 01:51:19','2020-11-11 01:51:19','<!-- wp:paragraph -->\n<p>Let me put my 20 years of experience in our local market (Cabarrus &amp; Rowan Counties) to work for you! Attentive to detail, being responsive in this competitive market, professional and knowledgeable, and treating others as I would like to be treated (the Golden Rule), are all character traits that you’ll see in me if you allow me the privilege and opportunity to serve as your Real Estate Agent. As complex as a real estate transaction can be, I strive to make it as pleasant, hassle-free and as smooth a process as possible for my clients, both Buyers and Sellers. As a former school teacher, I enjoy making sure that my clients understand the details of all the moving parts of what can sometimes be a tricky endeavor to navigate! Let me guide you home!</p>\n<!-- /wp:paragraph -->','Sherri Wiles Argabright','','publish','closed','closed','','sherri-wiles-argabright','','','2020-11-11 01:51:21','2020-11-11 01:51:21','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1408',109,'houzez_agent','',0),(1409,1,'2020-11-11 01:49:49','2020-11-11 01:49:49','<!-- wp:paragraph -->\n<p>Let me put my 20 years of experience in our local market (Cabarrus &amp; Rowan Counties) to work for you! Attentive to detail, being responsive in this competitive market, professional and knowledgeable, and treating others as I would like to be treated (the Golden Rule), are all character traits that you’ll see in me if you allow me the privilege and opportunity to serve as your Real Estate Agent. As complex as a real estate transaction can be, I strive to make it as pleasant, hassle-free and as smooth a process as possible for my clients, both Buyers and Sellers. As a former school teacher, I enjoy making sure that my clients understand the details of all the moving parts of what can sometimes be a tricky endeavor to navigate! Let me guide you home!</p>\n<!-- /wp:paragraph -->','Sherri Wiles Argabright','','inherit','closed','closed','','1408-revision-v1','','','2020-11-11 01:49:49','2020-11-11 01:49:49','',1408,'https://lantern-realty.com/1408-revision-v1/',0,'revision','',0),(1410,1,'2020-11-11 01:50:38','2020-11-11 01:50:38','','Sherri_Wiles_Argabright','','inherit','','closed','','sherri_wiles_argabright','','','2020-11-11 01:50:38','2020-11-11 01:50:38','',1408,'https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg',0,'attachment','image/jpeg',0),(1411,1,'2020-11-11 01:53:21','2020-11-11 01:53:21','<h2>Lantern Realty  - Mooresville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Square\">\n							<img width=\"300\" height=\"345\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7049809379\">						\n										(704) 980-9379\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:LanternRealtyMooresville@gmail.com\">						\n										LanternRealtyMooresville@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Mooresville','','inherit','closed','closed','','1309-revision-v1','','','2020-11-11 01:53:21','2020-11-11 01:53:21','',1309,'https://lantern-realty.com/1309-revision-v1/',0,'revision','',0),(303,1,'2018-08-25 19:02:15','2018-08-25 19:02:15',' ','','','publish','closed','closed','','303','','','2020-10-15 20:57:00','2020-10-15 20:57:00','',0,'http://lantern-realty.com/?p=303',4,'nav_menu_item','',0),(304,1,'2018-08-25 19:02:15','2018-08-25 19:02:15','','Home','','publish','closed','closed','','home-2','','','2020-10-15 20:57:00','2020-10-15 20:57:00','',0,'http://lantern-realty.com/?p=304',1,'nav_menu_item','',0),(305,1,'2018-08-25 19:02:15','2018-08-25 19:02:15','','Property Search','','publish','closed','closed','','property-search-2','','','2020-10-15 20:57:00','2020-10-15 20:57:00','',0,'http://lantern-realty.com/?p=305',2,'nav_menu_item','',0),(306,1,'2018-08-25 19:02:15','2018-08-25 19:02:15',' ','','','publish','closed','closed','','306','','','2020-10-15 20:57:00','2020-10-15 20:57:00','',0,'http://lantern-realty.com/?p=306',3,'nav_menu_item','',0),(1383,0,'2020-11-09 15:06:30','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-11-09 15:06:30','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1383',0,'post','',0),(1464,6,'2020-12-14 16:39:47','2020-12-14 16:39:47','<div dir=\"ltr\">See link below<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: CANVA Class by Jenna Cook<br>Time: Dec 15, 2020 10:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89074624729?pwd=cFdzSStOdExjd3pOeS9sVE5QdTRlZz09\">https://us02web.zoom.us/j/89074624729?pwd=cFdzSStOdExjd3pOeS9sVE5QdTRlZz09</a><br><br>Meeting ID: 890 7462 4729<br>Passcode: 059557<br>One tap mobile<br>+19292056099,,89074624729#,,,,,,0#,,059557# US (New York)<br>+13017158592,,89074624729#,,,,,,0#,,059557# US (Washington D.C)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 890 7462 4729<br>Passcode: 059557<br>Find your local number: <a href=\"https://us02web.zoom.us/u/k0MdCqlkk\">https://us02web.zoom.us/u/k0MdCqlkk</a><br><br><div><br></div>','CANVA.com class w/ Jenna Cook - Invite - Jan 15th @ 10am','','publish','closed','open','','canva-com-class-w-jenna-cook-invite-jan-15th-10am','','','2020-12-14 16:39:47','2020-12-14 16:39:47','',0,'https://lantern-realty.com/?p=1464',0,'post','',0),(1463,6,'2020-12-12 14:16:42','2020-12-12 14:16:42','<div dir=\"ltr\">Good Saturday Morning All,  hope you had a productive week and are ready to close out a fantastic 2020.  We have a busy week ahead, here are a few things you need to know.  <div><br></div><div>- We have a HUGE week of classes coming up. All classes and the team meeting will be recorded.  Make sure you have subscribed to our You Tube channel for notifications of when new content is posted.  </div><div> ** Tuesday 12/15 at 10am Jenna Cook will be hosting a class on how to use <b>CANVA.com.</b>  This is a site dedicated to helping with your online content.  Very user friendly and really helpful so you can start delivering higher quality social media content. </div><div> ** Wednesday 12/16 at 1130am is our last <b>Team meeting</b> of the year.  We will have a Q&amp;A session with an Appraiser.  Lord knows we all need this!  </div><div> ** Thursday 12/17 at 10am Jenna Cook will be hosting her <b>INSTAGRAM</b> class again for those that missed the original one.  Don&#39;t rely on the recording to learn, use this live class to ask questions and fully understand how to best utilize this FREE social media tool.  </div><div><br></div><div>Just a few notes...</div><div><br></div><div>- Please make sure you are wearing a mask if you are meeting in a Lantern office with someone outside of your household. </div><div>- If you are showing properties, for the love of all that is decent FILL OUT THE FEEDBACK.  None of you are THAT busy that you can&#39;t fill out feedback.  It&#39;s a respect thing towards your other agents. </div><div><br></div><div>Thanks again for making this a HUGELY successful year.  We are truly blessed to have you as part of our team.  </div><div><br>','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes','','','2020-12-12 14:16:42','2020-12-12 14:16:42','',0,'https://lantern-realty.com/?p=1463',0,'post','',0),(1980,0,'2021-07-13 23:13:15','2021-07-13 23:13:15','','Dawn Fisher','','inherit','closed','closed','','headshot-cutout','','','2021-08-01 22:33:45','2021-08-01 22:33:45','',0,'https://lantern-realty.com/headshot-cutout/',0,'attachment','image/png',0),(1981,9,'2021-07-14 00:56:19','2021-07-14 00:56:19','<div dir=\"ltr\">Hi All,<div><br></div><div>Please note there are two separate links in this email.  The first is for our Broker Q&amp;A with Amanda Cody and the second link is for our Team Meeting.</div><div><br></div><div><br></div><div>Here is the <b style=\"background-color:rgb(255,255,0)\">Zoom</b> link for the Broker Q&amp;A Wednesday July 14 at 10 a.m.  Bring your questions for Amanda Cody.  These are great sessions for all experience level of agents, you do not want to miss</div><div><br></div><div><br><b>Topic: Broker Q&amp;A w/Amanda Cody<br>Time: Jul 14, 2021 10:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/85650464603?pwd=ZFpwSG1BVUl3TFBsQVJGOENiTnowUT09\">https://us02web.zoom.us/j/85650464603?pwd=ZFpwSG1BVUl3TFBsQVJGOENiTnowUT09</a><br><br>Meeting ID: 856 5046 4603<br>Passcode: 139760<br>One tap mobile<br>+13126266799,,85650464603#,,,,*139760# US (Chicago)<br>+19292056099,,85650464603#,,,,*139760# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 856 5046 4603<br>Passcode: 139760<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kmkBb700y\">https://us02web.zoom.us/u/kmkBb700y</a><br><br></div><div><br></div><div><br></div><div>Here is <b style=\"background-color:rgb(255,255,0)\">Zoom</b> link number 2 for our team meeting starting at 11 a.m. Wednesday July 14.  Terry Whitesell will be doing a presentation on various loans and what we need to know, so bring your questions....If Matthew from GEICO has a few minutes, he&#39;ll pop on and tell us how he can be an asset to us and our clients.<br><div><div><br></div><div><br><b>Topic: Lantern Realty Team Meeting<br>Time: Jul 14, 2021 11:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89532375207?pwd=UnQ2a2dPUmxPS0IwaGJac3RtVGIvQT09\">https://us02web.zoom.us/j/89532375207?pwd=UnQ2a2dPUmxPS0IwaGJac3RtVGIvQT09</a><br><br>Meeting ID: 895 3237 5207<br>Passcode: 124020<br>One tap mobile<br>+13017158592,,89532375207#,,,,*124020# US (Washington DC)<br>+13126266799,,89532375207#,,,,*124020# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 895 3237 5207<br>Passcode: 124020<br>Find your local number: <a href=\"https://us02web.zoom.us/u/keGJ9ljDgi\">https://us02web.zoom.us/u/keGJ9ljDgi</a><br><br></div><div><br></div>','Broker Q&amp;A and Team Meeting Zoom Links','','publish','closed','open','','broker-qa-and-team-meeting-zoom-links','','','2021-07-14 00:56:19','2021-07-14 00:56:19','',0,'https://lantern-realty.com/?p=1981',0,'post','',0),(1392,1,'2020-11-11 01:22:29','2020-11-11 01:22:29','','Alan_Aylesworth','','inherit','','closed','','alan_aylesworth','','','2020-11-11 01:22:29','2020-11-11 01:22:29','',0,'https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg',0,'attachment','image/jpeg',0),(1393,1,'2020-11-11 01:33:56','2020-11-11 01:33:56','<!-- wp:paragraph -->\n<p>Born and raised in the small town of Mount Pleasant she is embedded with the qualities that it takes to be an exceptional agent: loyalty, honesty, and confidence. If Jenna isn’t working she is usually with her family and friends, including her 10 nieces and nephews who she adores. Her biggest pride is her baby Milo, he is a 100 pound Blue Tick Coon Hound who is a big ole lap dog. Jenna is a social media and technology devotee. She stays up to date with what is happening in the real estate world and combines that knowledge with her wits in social media. Make sure to follow Jenna for update knowledge of the market. How did Jenna Get Started In Her Dream Career? Jenna’s love for real estate began at a very young age. Growing up she always had an eye for decor: rearranging or changing her room every few months, watching any and all real estate shows, and constantly looking up homes for sale online to see what was out there. After attending UNC Charlotte she decided that her heart was elsewhere and that is when she found herself in real estate school. Jenna is headstrong and this showed while in school: spending weekends and late nights in a book, shadowing agents, and becoming knowledgeable about her real estate endeavor she was about to embark on. At the young age of 19 Jenna began her real estate career and never looked back. What Makes Jenna The Right Agent For You? Her caring attributes shine bright through each transaction that she has: even organizing a moving team consisting of her local high school student council members to help an elderly client move. She is always looking for opportunities to give back: being a big sister, volunteering at local events, and giving back to the community through charities. Working with first time home buyers, second/third time home buyers, investors, and commercial clients she is well rounded in her knowledge. She makes sure she keeps her clients up to date throughout the entire transaction. Staying in constant communication is the key to success. For Jenna, it is not just another transaction. It’s finding the place where your child takes their first steps and where friends gather. It is finding not just a house but a home. If you are looking for an agent who cares for her clients, who builds relationships not just transactions then give Jenna a call.</p>\n<!-- /wp:paragraph -->','Jenna Cook','','publish','closed','closed','','jenna-cook','','','2020-11-11 01:34:03','2020-11-11 01:34:03','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1393',28,'houzez_agent','',0),(1394,1,'2020-11-11 01:28:07','2020-11-11 01:28:07','','Jenna Cook','','inherit','closed','closed','','1393-revision-v1','','','2020-11-11 01:28:07','2020-11-11 01:28:07','',1393,'https://lantern-realty.com/1393-revision-v1/',0,'revision','',0),(1396,1,'2020-11-11 01:30:12','2020-11-11 01:30:12','<!-- wp:paragraph -->\n<p>Born and raised in the small town of Mount Pleasant she is embedded with the qualities that it takes to be an exceptional agent: loyalty, honesty, and confidence. If Jenna isn’t working she is usually with her family and friends, including her 10 nieces and nephews who she adores. Her biggest pride is her baby Milo, he is a 100 pound Blue Tick Coon Hound who is a big ole lap dog. Jenna is a social media and technology devotee. She stays up to date with what is happening in the real estate world and combines that knowledge with her wits in social media. Make sure to follow Jenna for update knowledge of the market. How did Jenna Get Started In Her Dream Career? Jenna’s love for real estate began at a very young age. Growing up she always had an eye for decor: rearranging or changing her room every few months, watching any and all real estate shows, and constantly looking up homes for sale online to see what was out there. After attending UNC Charlotte she decided that her heart was elsewhere and that is when she found herself in real estate school. Jenna is headstrong and this showed while in school: spending weekends and late nights in a book, shadowing agents, and becoming knowledgeable about her real estate endeavor she was about to embark on. At the young age of 19 Jenna began her real estate career and never looked back. What Makes Jenna The Right Agent For You? Her caring attributes shine bright through each transaction that she has: even organizing a moving team consisting of her local high school student council members to help an elderly client move. She is always looking for opportunities to give back: being a big sister, volunteering at local events, and giving back to the community through charities. Working with first time home buyers, second/third time home buyers, investors, and commercial clients she is well rounded in her knowledge. She makes sure she keeps her clients up to date throughout the entire transaction. Staying in constant communication is the key to success. For Jenna, it is not just another transaction. It’s finding the place where your child takes their first steps and where friends gather. It is finding not just a house but a home. If you are looking for an agent who cares for her clients, who builds relationships not just transactions then give Jenna a call.</p>\n<!-- /wp:paragraph -->','Jenna Cook','','inherit','closed','closed','','1393-revision-v1','','','2020-11-11 01:30:12','2020-11-11 01:30:12','',1393,'https://lantern-realty.com/1393-revision-v1/',0,'revision','',0),(1397,1,'2020-11-11 01:32:46','2020-11-11 01:32:46','','Jenna_Cook','','inherit','','closed','','jenna_cook','','','2020-11-11 01:32:46','2020-11-11 01:32:46','',1393,'https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg',0,'attachment','image/jpeg',0),(1398,1,'2020-11-11 01:38:40','2020-11-11 01:38:40','<!-- wp:paragraph -->\n<p>The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in real estate in 2015. She was also named “Rookie of the Year” in 2017 by Central Carolina Association of Realtors. Liz has been an active NC real estate broker since 2014. Liz currently resides with her husband, son, Great Dane &amp; English Bulldog in the small town of Mt. Pleasant NC. Since she could remember, Liz has always wanted to work in real estate. After graduating from Mt. Pleasant High School in 2009, the economy had recently crashed so she decided to put her dreams of a real estate career on hold and started taking college courses for the medical field. Realizing this was not the path she wanted to pursue, she took a leap of faith and decided to get her real estate license like she had originally planned. Coming from a strong customer service background, this has helped Liz develop excellent listening skills and patience to better service her clients. Liz became a new homeowner herself in 2016 and has built a strong client base by helping many of her former classmates purchase their first homes, so she understands the hurdles for first time home buyers. Having lived in the area her entire life, Liz can tell you nearly anything you need to know about the area, and if she doesn’t have the answer for you–you can bet she will find it out! She has helped many clients relocate to our area. Whether it’s your first or last home buying experience, you can count on Liz!</p>\n<!-- /wp:paragraph -->','Liz Hallman','','publish','closed','closed','','liz-hallman','','','2020-11-11 01:38:44','2020-11-11 01:38:44','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1398',46,'houzez_agent','',0),(1399,1,'2020-11-11 01:36:46','2020-11-11 01:36:46','','Liz Hallman','','inherit','closed','closed','','1398-revision-v1','','','2020-11-11 01:36:46','2020-11-11 01:36:46','',1398,'https://lantern-realty.com/1398-revision-v1/',0,'revision','',0),(1400,1,'2020-11-11 01:37:35','2020-11-11 01:37:35','','Liz_Hallman','','inherit','','closed','','liz_hallman','','','2020-11-11 01:37:35','2020-11-11 01:37:35','',1398,'https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg',0,'attachment','image/jpeg',0),(1378,6,'2020-11-04 19:36:20','2020-11-04 19:36:20','<div dir=\"ltr\">Good afternoon, I wanted to get this information in front of you as soon as possible.  We learned after our team meeting today that we now have 2 agents in the Kannapolis office that have tested positive for Covid-19.  <div><br></div><div>With that said, we are going to halt all large gatherings temporarily.  All classes will either be rescheduled, canceled or moved online.  </div><div><br></div><div>This will impact Kim Drakulich&#39;s Facebook class scheduled for tomorrow at the Kannapolis office at 430.  I spoke to Kim and we have decided to postpone this class until we can meet in person again.  Kim feels like this class needs to be very hands on and will not present well online.  </div><div><br></div><div>We ARE NOT closing the Kannapolis office.  We will just be limiting in person contact.  Paula, Deana and I will be available to meet in person if the need arises.  If meetings can be held via Zoom, Google Meets or other online platforms then we encourage you to do so.  </div><div><br></div><div>We do not want to be \"panic peddlers&#39; but the health and safety of our Lantern family and their families is our utmost priority.  </div><div><br></div><div>As of today, both agents are doing well.  </div><div><br></div><div>We&#39;ll keep you posted as things arise as we always do.  If you need anything at all, please let me know.  </div><div><br></div><div><div><br></div>','Important Announcement','','publish','closed','open','','important-announcement','','','2020-11-04 19:36:20','2020-11-04 19:36:20','',0,'https://lantern-realty.com/?p=1378',0,'post','',0),(1379,6,'2020-11-04 19:46:18','2020-11-04 19:46:18','<div dir=\"ltr\">Just a quick update on classes scheduled for tomorrow....<div><br></div><div>- Facebook class @ 430 is postponed until further notice</div><div>- 7 Levels/Miracle Morning discussion with Laura Overcash is going to be cancelled for tomorrow only.  We will resume on Thursday 11/12.  <br clear=\"all\"><div><br></div>','classes on 11/5','','publish','closed','open','','classes-on-11-5','','','2020-11-04 19:46:18','2020-11-04 19:46:18','',0,'https://lantern-realty.com/?p=1379',0,'post','',0),(1380,0,'2020-11-05 12:56:30','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-11-05 12:56:30','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1380',0,'post','',0),(1381,0,'2020-11-05 15:16:14','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-11-05 15:16:14','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1381',0,'post','',0),(1382,6,'2020-11-07 14:16:51','2020-11-07 14:16:51','<div dir=\"ltr\">Good morning All, here are a few notes to get your weekend started.<div><br></div><div>- Our <b>next team meeting</b> will be held via Zoom on 11/19 at 1pm.  I will be sending out an invite as we get closer.  John Suther, one of our very own and licensed structural engineer will be briefly speaking to us regarding mobile homes, among other topics and speakers.  </div><div><br></div><div>- <b>CONGRATS!!!!</b> to our very own <b>Amanda Cody</b> for being voted Stanly News &amp; Press Readers Choice Top Real estate agent.  Shouldn&#39;t be a surprise to anyone that knows her.  We are blessed to have her as part of our team.  </div><div><br></div><div>-  Just a reminder, the <b>Kannapolis office is NOT closed</b>.  We are open.  You can bring clients here, meet other agents here or come and work if you like.  We just aren&#39;t holding any large gatherings/classes for now.  If you need to meet with Paula, Deana or myself just let us know.  Our offices are open.  </div><div><br></div><div>- If you didnt see our post a few days ago, Lantern Realty surpassed <b>$100,000,000 in homes sales in 2020</b>.  Quite an achievement for a company not even 2.5 years old.  Paula, Deana and I are just overwhelmed at the talent in this company and so thankful for each and every one of you.  Now, how soon can we get to $1,000,000,000??????</div><div><br></div><div>- As far as <b>classes</b> go for this upcoming week, I will be sending out a separate email on how you can participate.  </div><div><br></div><div>- Lastly, please make sure you <b>have paid your dues</b>.  If you think you gave us your bank draft info, but havent seen the draft come out of your account let me know ASAP.  Otherwise, we need your cash, check, money order or Venmo payment ASAP!<br clear=\"all\"><div><br></div>','News &amp; Notes (11/7/20)','','publish','closed','open','','news-notes-11-7-20','','','2020-11-07 14:16:51','2020-11-07 14:16:51','',0,'https://lantern-realty.com/?p=1382',0,'post','',0),(309,1,'2018-08-26 14:05:48','0000-00-00 00:00:00','','widget_image','','draft','closed','closed','','','','','2018-08-26 14:05:48','2018-08-26 14:05:48','a:0:{}',0,'https://lantern-realty.com/?post_type=jetpack_migration&#038;p=309',0,'jetpack_migration','',0),(310,1,'2018-08-26 14:05:48','0000-00-00 00:00:00','','sidebars_widgets','','draft','closed','closed','','','','','2018-08-26 14:05:48','2018-08-26 14:05:48','a:15:{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:19:\"wp_inactive_widgets\";a:3:{i:0;s:25:\"ihomefindersocialwidget-3\";i:1;s:31:\"ihomefinderhotsheetlistwidget-3\";i:2;s:27:\"ihomefinderagentbiowidget-3\";}s:15:\"default-sidebar\";a:0:{}s:16:\"property-listing\";a:0:{}s:15:\"single-property\";a:0:{}s:14:\"agency-sidebar\";a:0:{}s:13:\"agent-sidebar\";a:1:{i:0;s:28:\"ihomefindervaluationwidget-3\";}s:14:\"search-sidebar\";a:0:{}s:12:\"page-sidebar\";a:2:{i:0;s:24:\"ihomefinderloginwidget-3\";i:1;s:30:\"ihomefinderpropertiesgallery-3\";}s:11:\"idx-sidebar\";a:4:{i:0;s:24:\"ihomefinderloginwidget-2\";i:1;s:28:\"ihomefindervaluationwidget-2\";i:2;s:27:\"ihomefindermoreinfowidget-2\";i:3;s:30:\"ihomefinderpropertiesgallery-2\";}s:22:\"create-listing-sidebar\";a:0:{}s:16:\"footer-sidebar-1\";a:1:{i:0;s:6:\"text-2\";}s:16:\"footer-sidebar-2\";a:1:{i:0;s:16:\"houzez_contact-2\";}s:16:\"footer-sidebar-3\";a:1:{i:0;s:34:\"ihomefinderemailsignupformwidget-2\";}s:16:\"footer-sidebar-4\";a:0:{}}',0,'https://lantern-realty.com/?post_type=jetpack_migration&#038;p=310',0,'jetpack_migration','',0),(1373,6,'2020-11-02 15:37:19','2020-11-02 15:37:19','<div dir=\"ltr\">Good Frigid Morning All, here are a few notes to start your week off.  <div><br></div><div>- Our <b>team meeting this Wednesday</b> is going to be held via Zoom.  It will be from 11-12.  I will be sending out a meeting invite to all later this morning. We are doing this one online so I can show you some of the new attributes that have been added to our website.  </div><div><br></div><div>- This week we have a lot going on.  Today Hayley will be starting an <b>Acco<font face=\"arial, sans-serif\">untability Group</font></b><font face=\"arial, sans-serif\"> again.  It will be at 1pm held at the Harrisburg office and by Google Meet.  If you want to attend get in touch with Hayley and she will send you the link.  </font></div><div><font face=\"arial, sans-serif\"><br></font></div><div><font face=\"arial, sans-serif\">  Thursday at 430pm Kim Drakulich will be holding a <b>Facebook class</b>.  This will be live at the Kannapolis office.  Here is Kim&#39;s note regarding the class.  </font></div><div><font face=\"arial, sans-serif\"><br></font></div><div><div style=\"color:rgb(0,0,0)\"><div style=\"margin-bottom:8px;color:rgb(5,5,5);font-size:15px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\">Good Morning! I will be teaching a Facebook marketing class this Thursday afternoon. I am trying to get a feel for what everyone is wanting/needing out of this class. Our main focus will be navigating your business page. For those who plan on attending, which best describes you?</font></span></div><ol style=\"margin-top:8px;margin-bottom:8px;padding-left:32px;color:rgb(5,5,5);font-size:15px\"><li style=\"margin-left:15px\"><div style=\"margin-bottom:8px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\">I do not have a business page and need help setting it up</font></span></div></li><li style=\"margin-left:15px\"><div style=\"margin-bottom:8px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\">I have a business page set up, but have no clue what I&#39;m doing with it.</font></span></div></li><li style=\"margin-left:15px\"><div style=\"margin-bottom:8px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\">I have a business page, have somewhat of a clue what I&#39;m doing, just looking for more guidance.</font></span></div></li><li style=\"margin-left:15px\"><div style=\"margin-bottom:8px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\">I&#39;m a FB guru, I just miss seeing Kim&#39;s smiling face <span style=\"margin:0px 1px;height:16px;width:16px;display:inline-flex;vertical-align:middle\"><img height=\"16\" width=\"16\" alt=\"😜\" src=\"https://static.xx.fbcdn.net/images/emoji.php/v9/t79/1.5/16/1f61c.png\" class=\"gmail-CToWUd\" style=\"border: 0px;\"></span><span style=\"margin:0px 1px;height:16px;width:16px;display:inline-flex;vertical-align:middle\"><img height=\"16\" width=\"16\" alt=\"😜\" src=\"https://static.xx.fbcdn.net/images/emoji.php/v9/t79/1.5/16/1f61c.png\" class=\"gmail-CToWUd\" style=\"border: 0px;\"></span></font></span></div></li></ol><div style=\"margin-bottom:8px;color:rgb(5,5,5);font-size:15px\"><font face=\"arial, sans-serif\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"></span></font></div><div style=\"margin-bottom:8px;color:rgb(5,5,5);font-size:15px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\">Depending on your answers, this will help me decide where to start, and if we need a \"FB 1\" and a \"FB 2\"</font></span></div></div><div style=\"margin-bottom:8px;color:rgb(5,5,5);font-size:15px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\"><br></font></span></div><div style=\"margin-bottom:8px;color:rgb(5,5,5);font-size:15px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\">**PLEASE DO NOT \"REPLY ALL\". Just reply to me....I\"m sure we all get enough emails throughout the day!</font></span></div><div style=\"margin-bottom:8px;color:rgb(5,5,5);font-size:15px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\">- Your <b>Q4 dues are due today</b>. Make sure you have made arrangements to pay.  We accept cash, check, money order or Venmo payment.  You can also be signed up for bank draft, if you haven&#39;t already.  </font></span></div><div style=\"margin-bottom:8px;color:rgb(5,5,5);font-size:15px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\">- Tomorrow is a very important day in our country&#39;s history.  Regardless of party affiliation, please <b>GO VOTE!!!!!</b></font></span></div><div style=\"margin-bottom:8px;color:rgb(5,5,5);font-size:15px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\"><b><br></b></font></span></div><div style=\"margin-bottom:8px;color:rgb(5,5,5);font-size:15px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\"><b>Thanks again for all you do!</b></font></span></div><div style=\"margin-bottom:8px;color:rgb(5,5,5);font-size:15px\"><span style=\"line-height:1.3333;max-width:100%;min-width:0px;font-size:0.9375rem;word-break:break-word\"><font face=\"arial, sans-serif\"><br></font></span></div><br class=\"gmail-Apple-interchange-newline\">','News &amp; Notes - W/O 11/2','','publish','closed','open','','news-notes-w-o-11-2','','','2020-11-02 15:37:19','2020-11-02 15:37:19','',0,'https://lantern-realty.com/?p=1373',0,'post','',0),(1374,6,'2020-11-02 15:46:40','2020-11-02 15:46:40','<div dir=\"ltr\">Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Lantern Team Meeting<br>Time: Nov 4, 2020 11:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/85229223945?pwd=dXRyVWF1dlFTaFpFUTZ0Tkp0aHBndz09\">https://us02web.zoom.us/j/85229223945?pwd=dXRyVWF1dlFTaFpFUTZ0Tkp0aHBndz09</a><br><br>Meeting ID: 852 2922 3945<br>Passcode: 512586<br>One tap mobile<br>+13017158592,,85229223945#,,,,,,0#,,512586# US (Germantown)<br>+13126266799,,85229223945#,,,,,,0#,,512586# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Germantown)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 852 2922 3945<br>Passcode: 512586<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kcMSLEJPiw\">https://us02web.zoom.us/u/kcMSLEJPiw</a><br><br><div><br></div>','Lantern Team Meeting - 11/4 @ 11am','','publish','closed','open','','lantern-team-meeting-11-4-11am','','','2020-11-02 15:46:41','2020-11-02 15:46:41','',0,'https://lantern-realty.com/?p=1374',0,'post','',0),(1375,6,'2020-11-02 16:07:18','2020-11-02 16:07:18','<div dir=\"ltr\">See below. <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Accountability Group<br>Time: Nov 2, 2020 01:00 PM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/85455315735?pwd=SExsdWlrbkdzdURXRGNXTjRaS3hEdz09\">https://us02web.zoom.us/j/85455315735?pwd=SExsdWlrbkdzdURXRGNXTjRaS3hEdz09</a><br><br>Meeting ID: 854 5531 5735<br>Passcode: 995530<br>One tap mobile<br>+13017158592,,85455315735#,,,,,,0#,,995530# US (Germantown)<br>+13126266799,,85455315735#,,,,,,0#,,995530# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Germantown)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 854 5531 5735<br>Passcode: 995530<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kPxLKeOgV\">https://us02web.zoom.us/u/kPxLKeOgV</a><br><br><div><br></div>','Todays Accountability Meeting invote','','publish','closed','open','','todays-accountability-meeting-invote','','','2020-11-02 16:07:18','2020-11-02 16:07:18','',0,'https://lantern-realty.com/?p=1375',0,'post','',0),(1376,6,'2020-11-02 16:16:24','2020-11-02 16:16:24','<div dir=\"ltr\">See below. <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Accountability Group<br>Time: Nov 2, 2020 01:00 PM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/85455315735?pwd=SExsdWlrbkdzdURXRGNXTjRaS3hEdz09\">https://us02web.zoom.us/j/85455315735?pwd=SExsdWlrbkdzdURXRGNXTjRaS3hEdz09</a><br><br>Meeting ID: 854 5531 5735<br>Passcode: 995530<br>One tap mobile<br>+13017158592,,85455315735#,,,,,,0#,,995530# US (Germantown)<br>+13126266799,,85455315735#,,,,,,0#,,995530# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Germantown)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 854 5531 5735<br>Passcode: 995530<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kPxLKeOgV\">https://us02web.zoom.us/u/kPxLKeOgV</a><br><br><div><br></div>','Accountability Group Meeting Invite','','publish','closed','open','','accountability-group-meeting-invite','','','2020-11-02 16:16:24','2020-11-02 16:16:24','',0,'https://lantern-realty.com/?p=1376',0,'post','',0),(1377,6,'2020-11-04 14:06:17','2020-11-04 14:06:17','<div dir=\"ltr\">Dont forget our team meeting today via Zoom at 11am.  Below is the link. <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Lantern Team Meeting<br>Time: Nov 4, 2020 11:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/85229223945?pwd=dXRyVWF1dlFTaFpFUTZ0Tkp0aHBndz09\">https://us02web.zoom.us/j/85229223945?pwd=dXRyVWF1dlFTaFpFUTZ0Tkp0aHBndz09</a><br><br>Meeting ID: 852 2922 3945<br>Passcode: 512586<br>One tap mobile<br>+13017158592,,85229223945#,,,,,,0#,,512586# US (Germantown)<br>+13126266799,,85229223945#,,,,,,0#,,512586# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Germantown)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 852 2922 3945<br>Passcode: 512586<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kcMSLEJPiw\">https://us02web.zoom.us/u/kcMSLEJPiw</a><br><br><div><br></div>','Team Meeting today at 11am','','publish','closed','open','','team-meeting-today-at-11am','','','2020-11-04 14:06:17','2020-11-04 14:06:17','',0,'https://lantern-realty.com/?p=1377',0,'post','',0),(1372,6,'2020-10-28 12:56:25','2020-10-28 12:56:25','','2020-Educational-Calendar.xlsx','','inherit','closed','closed','','2020-educational-calendar-3','','','2020-10-28 12:56:25','2020-10-28 12:56:25','',1371,'https://lantern-realty.com/wp-content/uploads/2020/10/2020-Educational-Calendar-3.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1371,6,'2020-10-28 12:56:25','2020-10-28 12:56:25','<div dir=\"ltr\">Good morning All, just a few notes for the rest of your week.<div><br></div><div>- We have added a TON of <b>new classes</b> to the schedule.  See the attached schedule for dates &amp; times.  </div><div>- Speaking of classes don&#39;t forget tomorrow, Thursday 10/29 at 10am Laura Overcash will be starting her series on the <b>\"7 Levels of Communication\"</b> book for real estate agents.  If you have or haven&#39;t read the book, I would encourage you to come.  This book is so simple yet profound.  Its message resonates with everyone, not just in the real estate world. </div><div>  Also, I will be holding <b>\"Goal Setting for 2021\"</b> again at 4pm for those that missed the first one.  We will be discussing how to set yourself up for a successful 2021. That will be tomorrow at 4pm at the Kannapolis office.  </div><div>- Our efforts to record Nic&#39;s class on Tuesday didn&#39;t go so well.  We need to get a better understanding of the equipment or figure out if we need new equipment.  Be patient.  </div><div>- Lastly, don&#39;t forget your <b>Q4 dues</b> are due on Nov. 1st.  If you have already paid, THANK YOU!  If you have signed up for bank draft, your dues will be drafted on Nov 2nd.  Otherwise, please make arrangements to pay ASAP.</div><div><br></div><div>Thanks again for all you folks do.  I&#39;m amazed on a daily basis at the talented folks God has blessed us with.  </div><div><br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/2020-Educational-Calendar-3.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2020-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes - 10/28/2020','','publish','closed','open','','news-notes-10-28-2020','','','2020-10-28 12:56:25','2020-10-28 12:56:25','',0,'https://lantern-realty.com/?p=1371',0,'post','',0),(1363,0,'2020-10-20 14:09:38','2020-10-20 14:09:38','','Lantern Mooresville','','inherit','closed','closed','','05f1bb70-445b-4044-aacc-8382ce3c590e','','','2022-04-30 19:16:02','2022-04-30 19:16:02','',0,'https://lantern-realty.com/05f1bb70-445b-4044-aacc-8382ce3c590e/',0,'attachment','image/png',0),(1364,0,'2020-10-22 18:23:44','2020-10-22 18:23:44','','98A5F20E-DCBA-4C78-A8D1-F08E48673BF2','','inherit','','closed','','98a5f20e-dcba-4c78-a8d1-f08e48673bf2','','','2020-10-22 18:23:44','2020-10-22 18:23:44','',0,'https://lantern-realty.com/98a5f20e-dcba-4c78-a8d1-f08e48673bf2/',0,'attachment','image/jpeg',0),(1365,6,'2020-10-22 18:26:59','2020-10-22 18:26:59','<div dir=\"ltr\">AS you know, we recently received our SC Firm license and are now ready to do business in SC as Lantern Realty.<div><br></div><div>Our SC license is physically going to be located in our Mooresville office.  The BIC in Mooresvile, Sarah Romesburg will also be the BIC of our SC office for now. SCREC does not require us to have a physical location in SC to operate. <br><div>  <div>There are a few steps you will need to take in order to join our SC office. First you must change your office affiliation with SCLLR.  You will have to log into SCLLR profile and change this in your profile.  </div><div><br></div><div>Secondly you will have to join SC Realtor®. This will allow you access to SC docs.  That link is below.  </div><div><br></div><div><a href=\"https://www.screaltors.org/secondarymembership/\">https://www.screaltors.org/secondarymembership/</a><br></div><div><br></div><div>We are working on getting the SC docs uploaded to Dotloop and will have them available only to those that join SC Realtors®.  </div><div><br></div><div><div><br></div>','Further info regarding our SC Firm License','','publish','closed','open','','further-info-regarding-our-sc-firm-license','','','2020-10-22 18:26:59','2020-10-22 18:26:59','',0,'https://lantern-realty.com/?p=1365',0,'post','',0),(1366,0,'2020-10-22 18:46:54','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-10-22 18:46:54','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1366',0,'post','',0),(1368,0,'2020-10-23 01:10:28','2020-10-23 01:10:28','','jerrpic','','inherit','','closed','','jerrpic','','','2020-10-23 01:10:28','2020-10-23 01:10:28','',0,'https://lantern-realty.com/jerrpic/',0,'attachment','image/jpeg',0),(1369,6,'2020-10-23 20:26:53','2020-10-23 20:26:53','<div dir=\"ltr\">Good Friday All!  Hope you had a productive week. Here are a few things to remember as we head into next week.  <div><br></div><div>- We have our <b>SC firm license</b> and are ready to do business in SC!  If you have your SC license, you will need to change your affiliation through your SCLLR profile and then join SC Realtors® so we can give you access to SC documents.  We have reached out to Dotloop and will have the SC docs available early next week for your use.  </div><div><br></div><div>- we have some wonderful changes coming with our <b>website</b>.  We will be conducting a Zoom call as soon as they are complete to show you the increased functionality. </div><div><br></div><div>-  You should have received your <b>Q4 invoices</b> by now.  If not, please let me know.  Still time to sign up for bank draft.  </div><div><br></div><div>- In case you didnt see Jessica&#39;s post about BlockWork tomorrow in Salisbury, here is the info she posted. There is still time to participate. </div><div>   \r\n<font face=\"arial, sans-serif\"><span style=\"color:rgb(5,5,5);font-size:15px\"><span style=\"font-weight:600\">Thank you all for signing up to help at BlockWork this coming weekend!</span></span><span style=\"color:rgb(5,5,5);font-size:15px\"> To help keep everyone stay safe, we have assigned </span><span style=\"color:rgb(5,5,5);font-size:15px\"><u>ALL</u></span><span style=\"color:rgb(5,5,5);font-size:15px\"> volunteers an assignment in advance. When you arrive to the 200 block of South Clay </span><span style=\"color:rgb(5,5,5);font-size:15px\"><u>please check in at the registration table</u></span><span style=\"color:rgb(5,5,5);font-size:15px\">, pick up a t-shirt, mask and gloves if you did not bring them with you. Please see attached map for reference to parking, porta-potty location, as well as registration. *Parking at Crown and Glory Church is only available on </span><span style=\"color:rgb(5,5,5);font-size:15px\"><span style=\"font-weight:600\">Saturday</span></span><span style=\"color:rgb(5,5,5);font-size:15px\">.* There is plenty of on street parking throughout the neighborhood. Food and drinks will be located near to registration and will be overseen by committee members.</span>  </font></div><div><font face=\"arial, sans-serif\"><br></font><div> - We currently have <b>food drives</b> going on at the Kannapolis &amp; Salisbury offices.  Please take the time next time you are at the grocery store and buy a little extra to donate. </div><div><br></div><div>- We have a <b>HUGE week of classes</b> coming up next week.  </div><div>*** Monday 10/26 at 330-5p at the Kannapolis office Nic Lovelace from Knipp Law will be talking to us about Foreclosures.  There is a huge wave of foreclosures forecasted for 2021, we need to be prepared!</div><div>*** Tuesday 10/27 at 10a-1130 at the Kannapolis office Laura Overcash will start her first class in the series of <i style=\"font-weight:bold\">7 Levels of Communications </i>book.  If you haven&#39;t read these books, they are a must for anyone looking to make a lasting and sustainable career in real estate.</div><div>*** Tuesday 10/27 at 1pm-3pm Paula Severt will be covering Dotloop &amp; forms class.  This is for ANY level of expertise, from beginner to expert.  Come and bring your questions. </div><div>*** Thursday 10/29 at 4pm - 530pm I will be holding my 2021 Goal Setting class again. We had tremendous feedback at the last one a few weeks ago so I wanted to give more people the chance to join in. </div><div><br></div><div>- Concerning our <b>Education classes,</b> leadership has decided to invest in equipment that would allow us to record classes and meetings with good video and audio quality that would allow us to post the videos on our website, Facebook or our soon to be released YouTube channel.  </div><div><br></div><div>- Lastly, we have a lot of new faces around the office.  Reach out to these folks and make them feel at home!</div><div><br clear=\"all\"><div><br></div>','Friday October 23rd - News &amp; Notes','','publish','closed','open','','friday-october-23rd-news-notes','','','2020-10-23 20:26:53','2020-10-23 20:26:53','',0,'https://lantern-realty.com/?p=1369',0,'post','',0),(1355,1,'2020-10-19 02:07:09','2020-10-19 02:07:09','<h2>Property Search</h2>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Buy</strong>\n                                <!-- text-with-icon-title -->\n                                    Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/homes-for-sale-search/\"  >Search Homes</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Buy</strong>\n                                <!-- text-with-icon-title -->\n                                    Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/homes-for-sale-search/\"  >Search Homes</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Buy</strong>\n                                <!-- text-with-icon-title -->\n                                    Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/homes-for-sale-search/\"  >Search Homes</a>\n                        <!-- text-with-icon-item  -->','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 02:07:09','2020-10-19 02:07:09','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1356,1,'2020-10-19 02:10:30','2020-10-19 02:10:30','<h2>Property Search</h2>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Buy</strong>\n                                <!-- text-with-icon-title -->\n                                    Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/homes-for-sale-search/\"  >Search Homes</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Sell</strong>\n                                <!-- text-with-icon-title -->\n                                    Lantern Realty and Development dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/valuation-form/\"  >Free Valuation Request</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Contact</strong>\n                                <!-- text-with-icon-title -->\n                                    Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"tel://(704)%20298-0087\"  >Speak to an Agent</a>\n                        <!-- text-with-icon-item  -->','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 02:10:30','2020-10-19 02:10:30','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1358,1,'2020-10-19 02:15:05','2020-10-19 02:15:05','<h2>Property Search</h2>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Buy</strong>\n                                <!-- text-with-icon-title -->\n                                    Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/homes-for-sale-search/\"  >Search Homes</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Sell</strong>\n                                <!-- text-with-icon-title -->\n                                    Lantern Realty and Development dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/valuation-form/\"  >Free Valuation Request</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Contact</strong>\n                                <!-- text-with-icon-title -->\n                                    Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"tel://(704)%20298-0087\"  >Speak to an Agent</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Lantern Listings</h2>		\n		[optima_express_gallery_slider height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"pd\" maxResults=\"25\"]','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 02:15:05','2020-10-19 02:15:05','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1359,1,'2020-10-19 02:16:43','2020-10-19 02:16:43','<h2>Property Search</h2>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Buy</strong>\n                                <!-- text-with-icon-title -->\n                                    Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/homes-for-sale-search/\"  >Search Homes</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Sell</strong>\n                                <!-- text-with-icon-title -->\n                                    Lantern Realty and Development dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/valuation-form/\"  >Free Valuation Request</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Contact</strong>\n                                <!-- text-with-icon-title -->\n                                    Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"tel://(704)%20298-0087\"  >Speak to an Agent</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Lantern Listings</h2>		\n		[optima_express_gallery_slider height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"pd\" maxResults=\"25\"]		\n			<h2>Listed this Week</h2>		\n		[optima_express_gallery_slider id=\"813462\" height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"ds\" maxResults=\"25\"]','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 02:16:43','2020-10-19 02:16:43','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1360,1,'2020-10-19 02:27:00','2020-10-19 02:27:00','<h2>Property Search</h2>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Buy</strong>\n                                <!-- text-with-icon-title -->\n                                    Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/homes-for-sale-search/\"  >Search Homes</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Sell</strong>\n                                <!-- text-with-icon-title -->\n                                    Lantern Realty and Development dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/valuation-form/\"  >Free Valuation Request</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Contact</strong>\n                                <!-- text-with-icon-title -->\n                                    Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"tel://(704)%20298-0087\"  >Speak to an Agent</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Lantern Listings</h2>		\n		[optima_express_gallery_slider height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"pd\" maxResults=\"25\"]		\n			<h2>Listed this Week</h2>		\n		[optima_express_gallery_slider id=\"813462\" height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"ds\" maxResults=\"25\"]','new homepage','','inherit','closed','closed','','1325-autosave-v1','','','2020-10-19 02:27:00','2020-10-19 02:27:00','',1325,'https://lantern-realty.com/1325-autosave-v1/',0,'revision','',0),(1454,1,'2020-12-01 01:46:59','2020-12-01 01:46:59','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"536\" img_size=\"medium\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"http://lanternrealty.freedompremier.com/\" title=\"Mortgage Lender\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" title=\"Mortgage Lender\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" title=\"Home Warranty\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" title=\"Real Estate Law\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h3><a href=\"https://geico.widen.net/s/wteghfnoeo\" target=\"_blank\" rel=\"noopener noreferrer\">Matthew Young - GEICO Insurance</a></h3>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-514 size-medium\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young-300x252.png\" alt=\"\" width=\"300\" height=\"252\" /></a></p>\n<p>Matthew Young, originally from Salisbury, has been in the insurance industry since 2001. Matthew’s dedication to the industry is embodied by the numerous affiliate awards from the Realtor Associations with which he partners.<br />Offering the services of an insurance broker with many carriers while backed by a national brand, Matthew can provide policies for virtually any residential property transactions in North Carolina, South Carolina, or Virginia.<br />Exceptional service is the hallmark of his team, evidenced by agents being available every day until 10:00 pm. He is happy to help with any questions or solutions needed to make the real estate transaction as smooth as possible. He is married with two young sons. His hobbies include fishing, hiking, and anything outdoors.</p>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-515 size-full\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" alt=\"\" width=\"120\" height=\"29\" /></a></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n','Lantern Partners','','inherit','closed','closed','','508-revision-v1','','','2020-12-01 01:46:59','2020-12-01 01:46:59','',508,'https://lantern-realty.com/508-revision-v1/',0,'revision','',0),(1325,1,'2020-10-19 01:24:15','2020-10-19 01:24:15','<h2>Property Search</h2>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Buy</strong>\n                                <!-- text-with-icon-title -->\n                                    Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/homes-for-sale-search/\"  >Search Homes</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Sell</strong>\n                                <!-- text-with-icon-title -->\n                                    Lantern Realty and Development dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/valuation-form/\"  >Free Valuation Request</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Contact</strong>\n                                <!-- text-with-icon-title -->\n                                    Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"tel://(704)%20298-0087\"  >Speak to an Agent</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Lantern Listings</h2>		\n		[optima_express_gallery_slider height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"pd\" maxResults=\"25\"]		\n			<h2>Listed this Week</h2>		\n		[optima_express_gallery_slider id=\"813462\" height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"ds\" maxResults=\"25\"]','new homepage','','publish','closed','closed','','new-homepage','','','2020-10-19 02:16:43','2020-10-19 02:16:43','',0,'https://lantern-realty.com/?page_id=1325',0,'page','',0),(1326,1,'2020-10-19 01:24:15','2020-10-19 01:24:15','','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:24:15','2020-10-19 01:24:15','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1328,1,'2020-10-19 01:29:09','2020-10-19 01:29:09','','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:29:09','2020-10-19 01:29:09','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1329,1,'2020-10-19 01:30:26','2020-10-19 01:30:26','','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:30:26','2020-10-19 01:30:26','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1330,1,'2020-10-19 01:31:16','2020-10-19 01:31:16','','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:31:16','2020-10-19 01:31:16','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1331,1,'2020-10-19 01:32:39','2020-10-19 01:32:39','','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:32:39','2020-10-19 01:32:39','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1332,1,'2020-10-19 01:33:51','2020-10-19 01:33:51','','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:33:51','2020-10-19 01:33:51','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1333,1,'2020-10-19 01:34:17','2020-10-19 01:34:17','','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:34:17','2020-10-19 01:34:17','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1334,1,'2020-10-19 01:35:18','2020-10-19 01:35:18','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:35:18','2020-10-19 01:35:18','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1335,1,'2020-10-19 01:36:15','2020-10-19 01:36:15','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:36:15','2020-10-19 01:36:15','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1336,1,'2020-10-19 01:37:03','2020-10-19 01:37:03','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:37:03','2020-10-19 01:37:03','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1337,1,'2020-10-19 01:37:34','2020-10-19 01:37:34','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:37:34','2020-10-19 01:37:34','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1338,1,'2020-10-19 01:39:52','2020-10-19 01:39:52','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:39:52','2020-10-19 01:39:52','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1339,1,'2020-10-19 01:41:55','2020-10-19 01:41:55','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:41:55','2020-10-19 01:41:55','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1340,1,'2020-10-19 01:43:40','2020-10-19 01:43:40','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:43:40','2020-10-19 01:43:40','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1341,1,'2020-10-19 01:44:51','2020-10-19 01:44:51','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:44:51','2020-10-19 01:44:51','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1342,1,'2020-10-19 01:45:13','2020-10-19 01:45:13','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:45:13','2020-10-19 01:45:13','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1343,1,'2020-10-19 01:45:58','2020-10-19 01:45:58','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:45:58','2020-10-19 01:45:58','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1344,1,'2020-10-19 01:47:09','2020-10-19 01:47:09','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:47:09','2020-10-19 01:47:09','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1345,1,'2020-10-19 01:47:36','2020-10-19 01:47:36','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:47:36','2020-10-19 01:47:36','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1346,1,'2020-10-19 01:48:50','2020-10-19 01:48:50','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:48:50','2020-10-19 01:48:50','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1347,1,'2020-10-19 01:49:33','2020-10-19 01:49:33','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:49:33','2020-10-19 01:49:33','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1348,1,'2020-10-19 01:50:30','2020-10-19 01:50:30','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:50:30','2020-10-19 01:50:30','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1350,1,'2020-10-19 01:57:02','2020-10-19 01:57:02','<h2>Property Search</h2>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 01:57:02','2020-10-19 01:57:02','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1352,1,'2020-10-19 02:02:00','2020-10-19 02:02:00','<h2>Property Search</h2>		\n				<h3>\n					Buy\n				</h3>\n								<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 02:02:00','2020-10-19 02:02:00','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1353,1,'2020-10-19 02:02:13','2020-10-19 02:02:13','<h2>Property Search</h2>		\n				<h3>\n					Buy\n				</h3>\n								<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 02:02:13','2020-10-19 02:02:13','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(1354,1,'2020-10-19 02:06:01','2020-10-19 02:06:01','<h2>Property Search</h2>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Buy</strong>\n                                <!-- text-with-icon-title -->\n                                    Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/homes-for-sale-search/\"  >Search Homes</a>\n                        <!-- text-with-icon-item  -->','new homepage','','inherit','closed','closed','','1325-revision-v1','','','2020-10-19 02:06:01','2020-10-19 02:06:01','',1325,'https://lantern-realty.com/1325-revision-v1/',0,'revision','',0),(316,1,'2018-08-26 23:56:33','2018-08-26 23:56:33','','HomeValue-01','','inherit','open','closed','','homevalue-01','','','2018-08-26 23:56:33','2018-08-26 23:56:33','',0,'https://lantern-realty.com/wp-content/uploads/2018/08/HomeValue-01.png',0,'attachment','image/png',0),(317,1,'2018-08-27 00:01:11','2018-08-27 00:01:11','','HomeValue-02-01','','inherit','open','closed','','homevalue-02-01','','','2018-08-27 00:01:11','2018-08-27 00:01:11','',0,'https://lantern-realty.com/wp-content/uploads/2018/08/HomeValue-02-01.png',0,'attachment','image/png',0),(322,1,'2018-09-01 21:42:13','2018-09-01 21:42:13','','Jason Overcash','','publish','closed','closed','','jason-overcash','','','2020-09-19 19:43:45','2020-09-19 19:43:45','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=322',75,'houzez_agent','',0),(323,1,'2018-09-01 21:42:04','2018-09-01 21:42:04','','Jason_Overcash','','inherit','open','closed','','jason_overcash','','','2018-09-01 21:42:04','2018-09-01 21:42:04','',322,'https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash.jpg',0,'attachment','image/jpeg',0),(391,1,'2019-01-04 23:30:38','2019-01-04 23:30:38','','Melissa Jackling','','inherit','open','closed','','melissa-jackling','','','2019-01-04 23:30:38','2019-01-04 23:30:38','',390,'https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling.jpg',0,'attachment','image/jpeg',0),(326,1,'2018-09-02 19:23:43','2018-09-02 19:23:43','','RowanCounty','','inherit','open','closed','','rowancounty','','','2018-09-02 19:23:43','2018-09-02 19:23:43','',325,'https://lantern-realty.com/wp-content/uploads/2018/09/RowanCounty.png',0,'attachment','image/png',0),(328,1,'2018-09-03 15:36:50','0000-00-00 00:00:00','','Property Detail','','draft','closed','closed','','','','','2018-09-03 15:36:50','2018-09-03 15:36:50','',0,'https://lantern-realty.com/?page_id=328',0,'page','',0),(1460,0,'2020-12-11 01:10:00','2020-12-11 01:10:00','','IMG_7791 Small','','inherit','','closed','','img_7791-small','','','2020-12-11 01:10:00','2020-12-11 01:10:00','',0,'https://lantern-realty.com/img_7791-small/',0,'attachment','image/jpeg',0),(1449,1,'2020-12-01 01:37:49','2020-12-01 01:37:49','<!-- wp:paragraph -->\n<p>Courtney loves helping others reach their goals! She has experience working residential sales, land sales, and investment properties in Rowan, Davidson, Forsyth and surrounding counties. In her spare time she enjoys singing at local events and being involved in community support. Courtney has a bachelor’s degree in Psychology from the University of North Carolina at Charlotte and has lived in Rowan county for 20 years. She is also the proud mother of three fabulous and creative boys.</p>\n<!-- /wp:paragraph -->','Courtney Sloan Holshouser','','publish','closed','closed','','courtney-sloan-holshouser','','','2020-12-01 01:38:18','2020-12-01 01:38:18','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1449',98,'houzez_agent','',0),(1450,1,'2020-12-01 01:34:16','2020-12-01 01:34:16','<!-- wp:paragraph -->\n<p>Courtney loves helping others reach their goals! She has experience working residential sales, land sales, and investment properties in Rowan, Davidson, Forsyth and surrounding counties. In her spare time she enjoys singing at local events and being involved in community support. Courtney has a bachelor’s degree in Psychology from the University of North Carolina at Charlotte and has lived in Rowan county for 20 years. She is also the proud mother of three fabulous and creative boys.</p>\n<!-- /wp:paragraph -->','Courtney Sloan Holshouser','','inherit','closed','closed','','1449-revision-v1','','','2020-12-01 01:34:16','2020-12-01 01:34:16','',1449,'https://lantern-realty.com/1449-revision-v1/',0,'revision','',0),(1451,1,'2020-12-01 01:37:09','2020-12-01 01:37:09','','Courtney_Sloan_Holshouser','','inherit','','closed','','courtney_sloan_holshouser','','','2020-12-01 01:37:09','2020-12-01 01:37:09','',1449,'https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg',0,'attachment','image/jpeg',0),(1453,1,'2020-12-01 01:45:20','2020-12-01 01:45:20','[[\"Last Name\",\"First Name\",\"Phone\",\"Email\",\"Home Office\",\"Team Role\",\"License #\",\"MLS ID\"],[\"Aldridge\",\"Jeremy\",\"704-773-0722\",\"kadaendeavorenterprises@gmail.com\",\"Kannapolis\",\"Broker\",\"306776\",\"68707\"],[\"Allison\",\"Sheila\",\"828-712-7843\",\"sheila.allison10@gmail.com\",\"Albemarle\",\"Broker\",\"307918\",\"69499\"],[\"Amoakon\",\"Sabine\",\"704-433-8462\",\"sab1.homes@outlook.com\",\"Kannapolis\",\"Broker\",\"316331\",\"78139\"],[\"Argabright\",\"Sherri Wiles\",\"704-202-0806\",\"sherriargabright@gmail.com\",\"Kannapolis\",\"Broker\",\"220340\",\"97879\"],[\"Aylesworth\",\"Alan\",\"980-330-8401\",\"alan.aylesworth.lantern@gmail.com\",\"Salisbury\",\"Broker\",\"308001\",\"69474\"],[\"Barber\",\"Casey\",\"678-516-5196\",\"casey.m.barber@gmail.com\",\"Kannapolis\",\"Broker\",\"309318\",\"71136\"],[\"Baxter\",\"Cheryl\",\"704-796-8843\",\"cmbaxter2@gmail.com\",\"Kannapolis\",\"Broker\",\"298432\",\"61673\"],[\"Bendig\",\"Robbie\",\"704-640-4171\",\"rbendig89@gmail.com\",\"Salisbury\",\"Broker\",\"303589\",\"65910\"],[\"Benton\",\"Toni\",\"980-521-2696\",\"tbenton81@gmail.com\",\"Kannapolis\",\"Broker\",\"310611\",\"72825\"],[\"Bird\",\"April\",\"901-569-3161\",\"abirdhomes@gmail.com\",\"Kannapolis\",\"Broker\",\"301315\",\"63368\"],[\"Boger\",\"Annie\",\"980-521-3988\",\"Annie.homes4u@gmail.com\",\"Kannapolis\",\"Broker\",\"291550\",\"50846\"],[\"Brown\",\"Elizabeth\",\"704-421-0317\",\"elizabethbrownrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"302094\",\"62799\"],[\"Brown\",\"Brenda\",\"704-796-1948\",\"seniors2@twc.com\",\"Kannapolis\",\"Broker\",\"302340\",\"70430\"],[\"Bullock\",\"Dale\",\"704-791-5457\",\"dale.bullock2014realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"280284\",\"34573\"],[\"Cauble\",\"Crystal\",\"980-521-8431\",\"crystalcauble27@gmail.com\",\"Kannapolis\",\"Broker\",\"297260\",\"60165\"],[\"Caudill\",\"Evonne\",\"704-791-7012\",\"ecaudill12@gmail.com\",\"Kannapolis\",\"Broker\",\"242767\",\"52756\"],[\"Chandler\",\"Emily\",\"615-397-1925\",\"emilychandler.realtor@gmail.com\",\"Harrisburg\",\"Broker\",\"297265\",\"60204\"],[\"Christy\",\"Meredith\",\"980-248-4097\",\"meredith@meredithchristy.com\",\"Harrisburg\",\"Broker\",\"298605\",\"61273\"],[\"Clark\",\"Tracie\",\"704-900-4637\",\"tracieclarksells@gmail.com\",\"Harrisburg\",\"Broker\",\"238413\",\"29140\"],[\"Clodfelter\",\"Jody\",\"704-438-2190\",\"jodyc1972@gmail.com\",\"Albemarle\",\"Broker\",\"297153\",\"58787\"],[\"Cloward\",\"Jessica\",\"704-502-8383\",\"jessicacloward1@gmail.com\",\"Salisbury\",\"Broker - in - Charge\",\"298274\",\"57857\"],[\"Cody\",\"Amanda\",\"980-581-1399\",\"amandaearnhardt@yahoo.com\",\"Albemarle\",\"Broker\",\"217780\",\"50220\"],[\"Cook\",\"Jenna\",\"704-960-5591\",\"4jennacook@gmail.com\",\"Kannapolis\",\"Broker\",\"293117\",\"53960\"],[\"Crowder\",\"Lisa\",\"704-380-7455\",\"lisadcrowder@gmail.com\",\"Harrisburg\",\"Broker\",\"279316\",\"32788\"],[\"Davis\",\"Michael\",\"\",\"mdavis@thewhiteoakgrove.com\",\"Kannapolis\",\"Broker\",\"289518\",\"548508637\"],[\"Drakulich\",\"Kimberly\",\"704-778-6959\",\"kim.drakulich@gmail.com\",\"Kannapolis\",\"Broker\",\"277431\",\"35684\"],[\"Dunphy\",\"Australia\",\"704-701-0177\",\"cdunphy51@hotmail,com\",\"Kannapolis\",\"Broker\",\"293885\",\"67265\"],[\"Erion\",\"Ivonne\",\"704-796-3530\",\"ivonne@ivonneerion.com\",\"Kannapolis\",\"Broker\",\"289340\",\"48565\"],[\"Evans\",\"Amy\",\"704-273-0107\",\"amyevansrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"297737\",\"59809\"],[\"Ferlauto\",\"Ashley\",\"980-333-8085\",\"ashleyferlauto@gmail.com\",\"Kannapolis\",\"Broker\",\"291080\",\"50443\"],[\"Franklin\",\"Jeff\",\"704-787-4888\",\"jeff.franklin.realtor@gmail.com\",\"Salisbury\",\"Broker\",\"298704\",\"61490\"],[\"Fullerton\",\"Michael\",\"980-318-4961\",\"mikefullerton72@gmail.com\",\"Albemarle\",\"Broker - in - Charge\",\"290662\",\"51527\"],[\"Garcia\",\"Yira\",\"704-907-9573\",\"ygarciarealty@gmail.com\",\"Kannapolis\",\"Broker\",\"300114\",\"63290\"],[\"Gearing\",\"Lynnette\",\"704-699-6902\",\"lynnettegearing.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"306394\",\"69473\"],[\"Griffin\",\"Deborah\",\"980-428-2462\",\"deborahg142@gmail.com\",\"Salisbury\",\"Broker\",\"145465\",\"56410\"],[\"Hager\",\"Cathy\",\"980-521-4429\",\"1cathyhager@gmail.com\",\"Kannapolis\",\"Broker\",\"294095\",\"54235\"],[\"Hallman\",\"Liz\",\"980-621-9575\",\"lizphallman@gmail.com\",\"Kannapolis\",\"Broker\",\"281082\",\"35806\"],[\"Haywood\",\"Conard\",\"704-467-5102\",\"conardhaywood@gmail.com\",\"Kannapolis\",\"Broker\",\"319615\",\"\"],[\"Hedrick\",\"Courtney\",\"704-608-7893\",\"hedrickhomes@gmail.com\",\"Kannapolis\",\"Broker\",\"301363\",\"63492\"],[\"Hedrick\",\"William\",\"704-773-9204\",\"will@thewillhedrick.com\",\"Kannapolis\",\"Broker\",\"314736\",\"\"],[\"Hill\",\"Hosanna\",\"336-317-8050\",\"hill.hosanna@gmail.com\",\"Kannapolis\",\"Broker\",\"315320\",\"76468\"],[\"Hiner\",\"Donna\",\"704-956-9898\",\"donnasellsrealestate1@gmail.com\",\"Harrisburg\",\"Broker\",\"272915\",\"21485\"],[\"Howell\",\"Kimberly\",\"704-699-2600\",\"kdhowell1996@gmail.com\",\"Salisbury\",\"Broker\",\"302115\",\"64440\"],[\"Jackling\",\"Melissa\",\"980-621-4623\",\"onlymyrealtormelissa@gmail.com\",\"Kannapolis\",\"Broker\",\"291920\",\"51371\"],[\"Jalynski\",\"Christine\",\"704-749-4944\",\"cjalynskirealty@gmail.com\",\"Kannapolis\",\"Broker\",\"297054\",\"58601\"],[\"Johnson\",\"Priscilla\",\"704-891-5386\",\"priscillajrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"\",\"80621\"],[\"Keller\",\"Kelly\",\"704-467-4485\",\"kelly.keller.realty@gmail.com\",\"Kannapolis\",\"Broker\",\"313269\",\"74509\"],[\"Keller\",\"Margie\",\"704-245-2739\",\"margkellerhomes@gmail.com\",\"Salisbury\",\"Broker\",\"298750\",\"61747\"],[\"Kidd\",\"Cheyenne\",\"980-939-3809\",\"cheyennekidd00@gmail.com\",\"Salisbury\",\"Broker\",\"318995\",\"81249\"],[\"LaCroix\",\"Melissa\",\"704-796-6531\",\"mlacroix.realty@gmail.com\",\"Kannapolis\",\"Broker\",\"303207\",\"65548\"],[\"Lamb\",\"Dawn\",\"980-781-7385\",\"dawnlambrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"315881\",\"77815\"],[\"Lambert\",\"Amanda\",\"704-400-0641\",\"teamlambert.sellsnc@gmail.com\",\"Harrisburg\",\"Broker\",\"25766\",\"65579\"],[\"Lambert\",\"Jerry\",\"704-791-0429\",\"jerry.teamlambert@gmail.com\",\"Harrisburg\",\"Broker\",\"321038\",\"81412\"],[\"Laney\",\"Sandi\",\"704-773-5886\",\"sandilaney2@gmail.com\",\"Kannapolis\",\"Broker\",\"272563\",\"22259\"],[\"Leonard\",\"Bret\",\"980-521-7156\",\"buywithbret@gmail.com\",\"Salisbury\",\"Broker\",\"303052\",\"65034\"],[\"Matthews\",\"Helen\",\"704-796-4026\",\"hamatthews@gmail.com\",\"Kannapolis\",\"Broker\",\"303222\",\"65519\"],[\"McCauley\",\"Lindsey\",\"704-236-7850\",\"lmccauley727@gmail.com\",\"Kannapolis\",\"Broker\",\"298645\",\"61546\"],[\"Merrell\",\"Connie\",\"704-701-1678\",\"connie.merrell.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"320338\",\"81061\"],[\"Miltz\",\"Deanna\",\"704-634-6289\",\"dmiltzrealtor@gmail.com\",\"Harrisburg\",\"Broker\",\"298941\",\"61437\"],[\"Monrad\",\"Rachel\",\"704-682-9422\",\"rachel@randsrealtygroup.com\",\"Mooresville\",\"Broker\",\"251860\",\"32949\"],[\"Nutter\",\"Julie\",\"240-888-7493\",\"teamnutter@gmail.com\",\"Kannapolis\",\"Broker\",\"293824\",\"48403\"],[\"Overcash\",\"Jason\",\"980-622-6327\",\"jasonovercashrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"305546\",\"68295\"],[\"Overcash\",\"Laura\",\"704-699-0765\",\"lovercashre@gmail.com\",\"Kannapolis\",\"Broker\",\"301686\",\"63472\"],[\"Petty\",\"Deana\",\"704-258-8068\",\"deana327@gmail.com\",\"Kannapolis\",\"BIC/Owner\",\"263080\",\"72155\"],[\"Pricher\",\"Lisa\",\"704-288-7392\",\"ncrealtorlisa@gmail.com\",\"Harrisburg\",\"Broker\",\"276287\",\"24658\"],[\"Puckett\",\"Chris\",\"704-298-5872\",\"ch2realty@gmail.com\",\"Kannapolis\",\"Qualifying Broker/Owner\",\"279213\",\"32613\"],[\"Queen\",\"Rodney\",\"704-239-3617\",\"rodneque@aol.com\",\"Salisbury\",\"Broker\",\"197764\",\"18091\"],[\"Rhew\",\"Rick\",\"704-491-2458\",\"ricksellsnc@gmail.com\",\"Harrisburg\",\"Broker\",\"288631\",\"49282\"],[\"Robinson\",\"Kelly\",\"704-699-2268\",\"kelly.robinson.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"316981\",\"79218\"],[\"Rogers\",\"Hayley\",\"704-431-2816\",\"hayley.realestate.rogers@gmail.com\",\"Harrisburg\",\"Broker - in - Charge\",\"281085\",\"35693\"],[\"Romesburg\",\"Sarah\",\"336-466-1646\",\"sarah@randsrealtygroup.com\",\"Mooresville\",\"Broker\",\"279215\",\"32982\"],[\"Sadler\",\"Kimberly\",\"704-798-8338\",\"kimsadler.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"290260\",\"49723\"],[\"Severt\",\"Paula\",\"704-232-3433\",\"paulasevert@yahoo.com\",\"Kannapolis\",\"Broker/Owner\",\"256100\",\"68433\"],[\"Sherin\",\"Chelsi\",\"570-690-3723\",\"chelsi.sherin@gmail.com\",\"Kannapolis\",\"Broker\",\"317621\",\"79645\"],[\"Sides\",\"Holden\",\"704-699-2092\",\"sideshb94@yahoo.com\",\"Kannapolis\",\"Broker\",\"322169\",\"\"],[\"Sloan Holshouser\",\"Courtney\",\"704-754-7104\",\"csloansellshomes@gmail.com\",\"Salisbury\",\"Broker\",\"314926\",\"\"],[\"Solarek\",\"Leslie\",\"229-854-0444\",\"lesliesellsnc@gmail.com\",\"Kannapolis\",\"Broker\",\"298587\",\"61042\"],[\"Starnes\",\"Susan\",\"704-305-0040\",\"susansellsnchomes@gmail.com\",\"Harrisburg\",\"Broker\",\"304452\",\"66546\"],[\"Stillinger\",\"Ethan\",\"704-957-1282\",\"ethanstillingerlrd@gmail.com\",\"Kannapolis\",\"Broker\",\"283899\",\"39819\"],[\"Strickland\",\"Tricia\",\"704-791-7314\",\"tricia.strickland927@gmail.com\",\"Kannapolis\",\"Broker\",\"314178\",\"75477\"],[\"Suther\",\"John\",\"704-622-1432\",\"johnsutherllc@gmail.com\",\"Kannapolis\",\"Broker\",\"309445\",\"71221\"],[\"Thomas\",\"Ellen\",\"704-791-3141\",\"ellencthomasservices@gmail.com\",\"Kannapolis\",\"Broker\",\"305464\",\"67704\"],[\"Thompson\",\"Chuck\",\"704-701-0129\",\"crtbroker@gmail.com\",\"Kannapolis\",\"Broker\",\"278357\",\"31317\"],[\"Trask\",\"Kimberly\",\"336-906-0848\",\"kimberlyktrask@gmail.com\",\"Kannapolis\",\"Broker\",\"312666\",\"75085\"],[\"Watson\",\"Brianne\",\"704-791-3272\",\"briannewatsonrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"293189\",\"53736\"],[\"Widenhouse\",\"Cindy\",\"704-795-8017\",\"cindy.s.widenhouse@gmail.com\",\"Kannapolis\",\"Broker\",\"299028\",\"61885\"],[\"Wilson\",\"Rick\",\"704-996-9902\",\"richard.wilson4565@gmail.com\",\"Kannapolis\",\"Broker\",\"321788\",\"81743\"],[\"Wooley\",\"Todd\",\"704-904-7162\",\"twooleyrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"309536\",\"71163\"],[\"Yates\",\"Melissa\",\"704-239-3835\",\"melissayates4u@gmail.com\",\"Salisbury\",\"Broker\",\"307917\",\"69428\"],[\"Zhang\",\"Min\",\"319-471-1622\",\"realtymin77@gmail.com\",\"Harrisburg\",\"Broker\",\"299816\",\"63292\"]]','Team Directory','','inherit','closed','closed','','1199-revision-v1','','','2020-12-01 01:45:20','2020-12-01 01:45:20','',1199,'https://lantern-realty.com/1199-revision-v1/',0,'revision','',0),(1440,6,'2020-11-21 19:17:42','2020-11-21 19:17:42','<div dir=\"ltr\">Good Afternoon, here are a few notes as we move in Thanksgiving week.  What a perfect time to remind yourself of the many blessings you have and to tell those in your life that have helped you along the way that you are grateful!<div><br></div><div>- We have added <b>four new classes</b> to this year&#39;s educational calendar.</div><div>   * 12/1 Our Mooresville office BIC, Sarah Romesburg will be teaching a <b>Listings</b> class.  It will be all about what to bring, what to expect and what to do on a listing appointment. </div><div>** 12/15 Jenna Cook will be teaching a class on <b>CANVA</b>.  This is a website you can use to create social media graphics.  It&#39;s really user friendly and I encourage you to try it out and attend Jennas class for tips and tricks.</div><div>*** 12/17 Jenna will be holding an <b>Instagram</b> class on 12/17.  This is the same class she taught this past week.  We had such a good response we are going to do it again.  For those of us that are lagging behind in social media, I will be taking it again!</div><div>**** 12/16 is our Team meeting.  As I&#39;m typing this email I literally just booked an <b>appraiser</b> to join us.  She will be having a Q&amp;A during the meeting.  We get a lot of questions throughout the year regarding appraisals/appraisers so this would be a perfect time to pick her brain. </div><div><br></div><div>- Dont forget this Monday at 11am, Hayley Rogers will be holding a class online, <b>\"All Things Google\"</b>.  If you are looking to streamline your workflow and get more organized, this is a perfect class for you. </div><div><br></div><div>- Lastly, here is a link to our <b>Lantern YouTube channel</b>.  This is where we will be posting class and team meeting videos as well as links to other useful videos such as  NAR, NCREC and Dotloop.  If the link doesn&#39;t work, copy it to your browser and go from there.  Subscribe so you get the latest content we upload.  </div><div><br></div><div><a href=\"https://www.youtube.com/channel/UCcXc_gZCOeOGN7seqUcEHZg?view_as=subscriber\">https://www.youtube.com/channel/UCcXc_gZCOeOGN7seqUcEHZg?view_as=subscriber</a></div><div><br></div><div>We are truly thankful for each and everyone of you.  Please let  us know what we can do to help.  </div><div><br></div><div>Have a great weekend. <br clear=\"all\"><div><br></div>','News &amp; Notes','','publish','closed','open','','news-notes-4','','','2020-11-21 19:17:42','2020-11-21 19:17:42','',0,'https://lantern-realty.com/?p=1440',0,'post','',0),(1441,0,'2020-11-23 14:36:25','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-11-23 14:36:25','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1441',0,'post','',0),(1442,0,'2020-11-24 18:34:42','2020-11-24 18:34:42','','19_199043_GFR_LGO_Young_Gecko','','inherit','','closed','','19_199043_gfr_lgo_young_gecko','','','2020-11-24 18:34:42','2020-11-24 18:34:42','',0,'https://lantern-realty.com/19_199043_gfr_lgo_young_gecko/',0,'attachment','image/jpeg',0),(1443,6,'2020-11-24 21:39:43','2020-11-24 21:39:43','<div dir=\"ltr\">Good Afternoon, on the heels of the recent mask mandate from Governor Cooper, we are requiring masks be worn in all of our locations, if you are around other agents or clients until further notice.  <div><br></div><div>I&#39;m not looking to make a political statement, so let&#39;s not go down that road.  We are trying to protect each of you and our valued clients.  </div><div><br></div><div>That being said, don&#39;t let it slow you down from doing your job.  Just do it smartly!<br clear=\"all\"><div><br></div>','NC Mask Mandate','','publish','closed','open','','nc-mask-mandate','','','2020-11-24 21:39:43','2020-11-24 21:39:43','',0,'https://lantern-realty.com/?p=1443',0,'post','',0),(1444,0,'2020-11-24 21:46:08','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2020-11-24 21:46:08','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1444',0,'post','',0),(1445,6,'2020-11-30 17:57:45','2020-11-30 17:57:45','<div dir=\"ltr\">Here is the invite to Sarah&#39;s class.  <div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Sarah&#39;s Listing Class<br>Time: Dec 1, 2020 10:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/84030336743?pwd=SkY1ZXJpZjhNdTBUZ3RXTmdFOXkwQT09\">https://us02web.zoom.us/j/84030336743?pwd=SkY1ZXJpZjhNdTBUZ3RXTmdFOXkwQT09</a><br><br>Meeting ID: 840 3033 6743<br>Passcode: 452854<br>One tap mobile<br>+13126266799,,84030336743#,,,,,,0#,,452854# US (Chicago)<br>+19292056099,,84030336743#,,,,,,0#,,452854# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington D.C)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 840 3033 6743<br>Passcode: 452854<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kPxkhTo30\">https://us02web.zoom.us/u/kPxkhTo30</a><br><br><div><br></div>','Sarah Romesburgs \"Listing Class\", Tuesday at 10am','','publish','closed','open','','sarah-romesburgs-listing-class-tuesday-at-10am','','','2020-11-30 17:57:45','2020-11-30 17:57:45','',0,'https://lantern-realty.com/?p=1445',0,'post','',0),(1447,1,'2020-12-01 01:27:35','2020-12-01 01:27:35','<p>[vc_section full_width=\"stretch_row\" full_height=\"yes\" content_placement=\"middle\" css_animation=\"fadeIn\" css=\".vc_custom_1535990071877{padding-top: 10% !important;background-image: url(https://lantern-realty.com/wp-content/uploads/2018/08/Lantern_OpenHouse.png?id=56) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row css=\".vc_custom_1534901322962{margin-bottom: 250px !important;padding-right: 20px !important;padding-left: 20px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1534901068460{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 20px !important;padding-left: 20px !important;background-color: rgba(255,255,255,0.76) !important;*background-color: rgb(255,255,255) !important;}\"]</p>\n<h1>Property Search</h1>\n<p>[optima_express_quick_search style=\"twoline\" showPropertyType=\"false\"][/vc_column_text][/vc_column][/vc_row][/vc_section][vc_row content_placement=\"middle\" css=\".vc_custom_1535223457405{padding-top: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"top\" disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_btn title=\"Buy\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fhomes-for-sale-search%2F|title:Home%20Search||\"][vc_column_text css_animation=\"fadeIn\"]Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\'re one click away from discovering your next home![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Sell\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fvaluation-form%2F|title:Sell%20My%20Home||\"][vc_column_text css_animation=\"fadeIn\"]Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it\'s worth. Let us speak with you about selling your property and you\'ll learn why our previous clients love us. Click here to submit a home valuation request.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Contact\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:tel%3A9808582074|title:Call%20Lantern||\"][vc_column_text css_animation=\"fadeIn\"]Looking to speak with an agent now? Click here to contact an agent. We\'re available around the clock to provide you with the very best professional real estate representation.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner][text_with_icons columns=\"three_columns\" style=\"style_one\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-search\" title=\"Buy\" text=\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!\" read_more_text=\"Search Homes\" read_more_link=\"https://lantern-realty.com/homes-for-sale-search/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-home\" title=\"Sell\" text=\"Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.\" read_more_text=\"Submit a Valuation Request\" read_more_link=\"https://lantern-realty.com/valuation-form/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-phone\" title=\"Contact\" text=\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\" read_more_text=\"Contact an Agent\" read_more_link=\"tel:9808582074\"][/text_with_icons][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\"][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Listings</h1>\n<p>[optima_express_gallery_slider height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"pd\" maxResults=\"25\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<h1>Listed this Week</h1>\n<p>[optima_express_gallery_slider id=\"813462\" height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"ds\" maxResults=\"25\"][/vc_column_text][houzez-agents agents_type=\"Carousel\" agent_category=\"front-page\" agent_city=\"\" custom_title=\"Lantern Agents\" custom_subtitle=\"\" columns=\"3\" posts_limit=\"15\" offset=\"\" orderby=\"rand\" order=\"ASC\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\">See what clients are saying about Lantern Agents</h1>\n<p>[/vc_column_text][vc_single_image image=\"276\" img_size=\"medium\" alignment=\"center\" css_animation=\"bounceInLeft\"][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItbGlrZSUyMiUyMHN0eWxlJTNEJTIyYWxpZ24tY29udGVudCUzQSUyMGNlbnRlciUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLWxheW91dCUzRCUyMnN0YW5kYXJkJTIyJTIwZGF0YS1hY3Rpb24lM0QlMjJyZWNvbW1lbmQlMjIlMjBkYXRhLXNpemUlM0QlMjJzbWFsbCUyMiUyMGRhdGEtc2hvdy1mYWNlcyUzRCUyMmZhbHNlJTIyJTIwZGF0YS1zaGFyZSUzRCUyMmZhbHNlJTIyJTNFJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column_inner][vc_column_inner width=\"3/4\"][houzez-testimonials testimonials_type=\"slides\" posts_limit=\"10\" offset=\"\" orderby=\"rand\" order=\"ASC\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Find Homes for Sale in these Communities</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Kannapolis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DKannapolis%26propertyType%3DSFR%26status%3Dactive|title:Kannapolis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Concord\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DConcord%26propertyType%3DSFR%26status%3Dactive|title:Concord||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Landis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DLandis%26propertyType%3DSFR%26status%3Dactive|title:Landis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"China Grove\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DChina%20Grove%26propertyType%3DSFR%26status%3Dactive|title:China%20Grove||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Salisbury\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DSalisbury%26propertyType%3DSFR%26status%3Dactive|title:Salisbury||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Rockwell\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DRockwell%26propertyType%3DSFR%26status%3Dactive|title:Rockwell||\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Charlotte\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCharlotte%26propertyType%3DSFR%26status%3Dactive|title:Charlotte||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Huntersville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DHuntersville%26propertyType%3DSFR%26status%3Dactive|title:Huntersville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Cornelius\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCornelius%26propertyType%3DSFR%26status%3Dactive|title:Cornelius||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mooresville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMooresville%26propertyType%3DSFR%26status%3Dactive|title:Mooresville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mount Pleasant\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMount%20Pleasant%26propertyType%3DSFR%26status%3Dactive|title:Mount%20Pleasant||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Gold Hill\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DGold%20Hill%26propertyType%3DSFR%26status%3Dactive|title:Gold%20Hill||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner][hz-section-title hz_section_title=\"Follow Lantern on Facebook\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][/vc_column_inner][/vc_row_inner][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItcGFnZSUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLXRhYnMlM0QlMjJ0aW1lbGluZSUyMiUyMGRhdGEtd2lkdGglM0QlMjI1MDAlMjIlMjBkYXRhLWhlaWdodCUzRCUyMjEwMDAlMjIlMjBkYXRhLXNtYWxsLWhlYWRlciUzRCUyMnRydWUlMjIlMjBkYXRhLWFkYXB0LWNvbnRhaW5lci13aWR0aCUzRCUyMnRydWUlMjIlMjBkYXRhLWhpZGUtY292ZXIlM0QlMjJmYWxzZSUyMiUyMGRhdGEtc2hvdy1mYWNlcGlsZSUzRCUyMnRydWUlMjIlM0UlM0NibG9ja3F1b3RlJTIwY2l0ZSUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBjbGFzcyUzRCUyMmZiLXhmYm1sLXBhcnNlLWlnbm9yZSUyMiUzRSUzQ2ElMjBocmVmJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZmFjZWJvb2suY29tJTJGbGFudGVybnJlYWx0eSUyMiUzRUxhbnRlcm4lMjBSZWFsdHklMjAlMjZhbXAlM0IlMjBEZXZlbG9wbWVudCUyQyUyMExMQyUzQyUyRmElM0UlM0MlMkZibG9ja3F1b3RlJTNFJTNDJTJGZGl2JTNFJTBBJTBBJTBBJTNDJTIxLS0lMjBMb2FkJTIwRmFjZWJvb2slMjBTREslMjBmb3IlMjBKYXZhU2NyaXB0JTIwLS0lM0UlMEElM0NkaXYlMjBpZCUzRCUyMmZiLXJvb3QlMjIlM0UlM0MlMkZkaXYlM0UlMEElM0NzY3JpcHQlM0UlMjhmdW5jdGlvbiUyOGQlMkMlMjBzJTJDJTIwaWQlMjklMjAlN0IlMEElMjAlMjB2YXIlMjBqcyUyQyUyMGZqcyUyMCUzRCUyMGQuZ2V0RWxlbWVudHNCeVRhZ05hbWUlMjhzJTI5JTVCMCU1RCUzQiUwQSUyMCUyMGlmJTIwJTI4ZC5nZXRFbGVtZW50QnlJZCUyOGlkJTI5JTI5JTIwcmV0dXJuJTNCJTBBJTIwJTIwanMlMjAlM0QlMjBkLmNyZWF0ZUVsZW1lbnQlMjhzJTI5JTNCJTIwanMuaWQlMjAlM0QlMjBpZCUzQiUwQSUyMCUyMGpzLnNyYyUyMCUzRCUyMCUyN2h0dHBzJTNBJTJGJTJGY29ubmVjdC5mYWNlYm9vay5uZXQlMkZlbl9VUyUyRnNkayUyRnhmYm1sLmN1c3RvbWVyY2hhdC5qcyUyM3hmYm1sJTNEMSUyNnZlcnNpb24lM0R2Mi4xMiUyNmF1dG9Mb2dBcHBFdmVudHMlM0QxJTI3JTNCJTBBJTIwJTIwZmpzLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlJTI4anMlMkMlMjBmanMlMjklM0IlMEElN0QlMjhkb2N1bWVudCUyQyUyMCUyN3NjcmlwdCUyNyUyQyUyMCUyN2ZhY2Vib29rLWpzc2RrJTI3JTI5JTI5JTNCJTNDJTJGc2NyaXB0JTNFJTBBJTBBJTNDJTIxLS0lMjBZb3VyJTIwY3VzdG9tZXIlMjBjaGF0JTIwY29kZSUyMC0tJTNFJTBBJTNDZGl2JTIwY2xhc3MlM0QlMjJmYi1jdXN0b21lcmNoYXQlMjIlMEElMjAlMjBhdHRyaWJ1dGlvbiUzRHNldHVwX3Rvb2wlMEElMjAlMjBwYWdlX2lkJTNEJTIyMTgyMTczMTk1OTU1NjUzJTIyJTBBJTIwJTIwbG9nZ2VkX2luX2dyZWV0aW5nJTNEJTIySGklMjElMjBXb3VsZCUyMHlvdSUyMGxpa2UlMjB0byUyMGNvbm5lY3QlMjB3aXRoJTIwYSUyMExhbnRlcm4lMjBBZ2VudCUyMG5vdyUzRiUyMiUwQSUyMCUyMGxvZ2dlZF9vdXRfZ3JlZXRpbmclM0QlMjJIaSUyMSUyMFdvdWxkJTIweW91JTIwbGlrZSUyMHRvJTIwY29ubmVjdCUyMHdpdGglMjBhJTIwTGFudGVybiUyMEFnZW50JTIwbm93JTNGJTIyJTNFJTBBJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column][vc_column width=\"1/2\"][hz-section-title hz_section_title=\"Kannapolis Community News\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][vc_wp_rss items=\"7\" options=\"show_summary,show_date\" url=\"http://www.kannapolisnc.gov/Community/News\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Partners</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://www.hwahomewarranty.com/\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"1442\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"http://www.terrywhitesell.com/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n','Lantern Realty and Development - Home','','inherit','closed','closed','','2-revision-v1','','','2020-12-01 01:27:35','2020-12-01 01:27:35','',2,'https://lantern-realty.com/2-revision-v1/',0,'revision','',0),(1321,1,'2020-10-19 01:12:01','2020-10-19 01:12:01','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">6477 Morehead Road Harrisburg, North Carolina 28075 </br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thanks for checking out my profile! My name is Meredith Christy and the three...	\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...	\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"><strong>Lisa Pricher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">118 East Main Street Albemarle, North Carolina 28001 </br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2020-10-19 01:12:01','2020-10-19 01:12:01','',101,'https://lantern-realty.com/101-revision-v1/',0,'revision','',0),(1320,1,'2020-10-19 01:11:15','2020-10-19 01:11:15','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/agency/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/agency/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">6477 Morehead Road Harrisburg, North Carolina 28075 </br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thanks for checking out my profile! My name is Meredith Christy and the three...	\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...	\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"><strong>Lisa Pricher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/agency/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">118 East Main Street Albemarle, North Carolina 28001 </br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/agency/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2020-10-19 01:11:15','2020-10-19 01:11:15','',101,'https://lantern-realty.com/101-revision-v1/',0,'revision','',0),(1311,1,'2020-10-19 00:56:37','2020-10-19 00:56:37','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:56:37','2020-10-19 00:56:37','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1307,1,'2020-10-19 00:53:47','2020-10-19 00:53:47','<h2>Lantern Realty - Albemarle Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Albemarle Team\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:lrdalbemarle@gmail.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Albemarle Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Albemarle','','publish','closed','closed','','lantern-albemarle','','','2020-10-19 01:08:56','2020-10-19 01:08:56','',1279,'https://lantern-realty.com/?page_id=1307',0,'page','',0),(350,1,'2018-09-04 23:43:40','2018-09-04 23:43:40','[vc_row][vc_column][vc_column_text][optima_express_contact_form][/vc_column_text][/vc_column][/vc_row]','Contact Lantern Realty and Development','','publish','closed','closed','','contact-lantern','','','2018-09-04 23:50:53','2018-09-04 23:50:53','',0,'https://lantern-realty.com/?page_id=350',0,'page','',0),(353,1,'2018-09-04 23:53:12','2018-09-04 23:53:12','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','trash','closed','closed','','wpforms-preview__trashed','','','2020-10-11 18:10:15','2020-10-11 18:10:15','',0,'https://lantern-realty.com/wpforms-preview/',0,'page','',0),(354,1,'2018-09-04 23:53:24','2018-09-04 23:53:24','{\"id\":\"354\",\"field_id\":3,\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}],\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"{field_id=\\\"0\\\"}\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"Thanks for contacting us! We will be in touch with you shortly.\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"350\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"contact\"}}','Simple Contact Form','','publish','closed','closed','','simple-contact-form','','','2018-09-04 23:53:29','2018-09-04 23:53:29','',0,'https://lantern-realty.com/?post_type=wpforms&#038;p=354',0,'wpforms','',0),(356,1,'2018-09-13 11:57:38','2018-09-13 11:57:38','','ehomlslogo','','inherit','open','closed','','ehomlslogo','','','2018-09-13 11:57:38','2018-09-13 11:57:38','',0,'https://lantern-realty.com/wp-content/uploads/2018/09/ehomlslogo.png',0,'attachment','image/png',0),(358,1,'2018-09-15 20:02:36','2018-09-15 20:02:36','Tabitha graduated from UNCC in 2004 and married her high school sweetheart shortly after. They are now raising their two children in Kannapolis not far from where she and her husband grew up. Being lifelong residents of Cabarrus and Mecklenburg counties gives her a certain knowledge of the Charlotte and surrounding areas. Tabitha joined the real estate profession out of a pure interest in the business, and is willing to work hard to help you find a home that fits your needs. Tabitha is thrilled to be a part of the Lantern Realty and Development team, and can\'t wait to help you in the process of buying a home! She looks forward to working with you!','Tabitha Furr','','trash','closed','closed','','tabitha-furr__trashed','','','2020-09-19 19:26:58','2020-09-19 19:26:58','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=358',26,'houzez_agent','',0),(359,1,'2018-09-15 20:01:29','2018-09-15 20:01:29','','Tabitha_Furr','','inherit','open','closed','','tabitha_furr','','','2018-09-15 20:02:21','2018-09-15 20:02:21','',358,'https://lantern-realty.com/wp-content/uploads/2018/09/Tabitha_Furr.jpeg',0,'attachment','image/jpeg',0),(361,1,'2018-09-15 20:04:25','2018-09-15 20:04:25','Hello, my name is Tanner Bost and I am a licensed broker with Lantern Realty and Development. I am a lifelong Concord, NC &nbsp;resident, which has helped me gain extensive knowledge of Concord and the surrounding areas. If you are looking to purchase or sell a home, land, commercial property, I am ready to help. If you are wanting to start investing in real estate properties, like flipping, I am ready to help. My goal as a real estate agent is to provide you with a smooth, stress-free transaction. Other than real estate, I enjoy helping my local high school and middle school by coaching the baseball teams in the fall and Spring.','Tanner Bost','','trash','closed','closed','','tanner-bost__trashed','','','2020-09-19 19:18:06','2020-09-19 19:18:06','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=361',12,'houzez_agent','',0),(362,1,'2018-09-15 20:04:06','2018-09-15 20:04:06','','Tanner_Bost','','inherit','open','closed','','tanner_bost','','','2018-09-15 20:04:06','2018-09-15 20:04:06','',361,'https://lantern-realty.com/wp-content/uploads/2018/09/Tanner_Bost.jpg',0,'attachment','image/jpeg',0),(411,1,'2019-02-08 18:32:58','2019-02-08 18:32:58','<!-- wp:paragraph -->\n<p>As a Realtor, Sheila’s first priority is to make her clients happy and build a long-term relationship. A focused listener, able advisor, and fierce, yet fair, advocate, Sheila is known for her intuition and diligence while employing encouragement and genuine concern as she creates a positive experience for both sides in any property transaction. Her business approach is direct and successful: she listens to her client’s needs and matches them to the right property, then assures an honest and efficient transaction. Sheila has been an active member of her community for over 8 years now, and is so excited to be turning that community focus toward real estate. With a passion for real estate services in the area, Sheila is ready to help with your home buying and selling needs. As a proud member of the Lantern family, Sheila carries the values of hard work, integrity, and outstanding client service into everything she does. When Sheila isn’t making home ownership dreams come true for her clients, she enjoys spending time with family, camping, and participating in social events.</p>\n<!-- /wp:paragraph -->','Sheila Allison','','publish','closed','closed','','sheila-allison','','','2020-10-17 23:46:34','2020-10-17 23:46:34','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=411',5,'houzez_agent','',0),(414,1,'2019-02-08 18:34:57','2019-02-08 18:34:57','','Sheila Allison','','inherit','open','closed','','sheila-allison-2','','','2019-02-08 18:34:57','2019-02-08 18:34:57','',411,'https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg',0,'attachment','image/jpeg',0),(416,1,'2019-02-08 18:37:58','2019-02-08 18:37:58','','Casey Barber','','publish','closed','closed','','casey-barber','','','2020-09-19 19:16:06','2020-09-19 19:16:06','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=416',8,'houzez_agent','',0),(417,1,'2019-02-08 18:37:21','2019-02-08 18:37:21','','Casey Barber','','inherit','open','closed','','casey-barber','','','2019-02-08 18:37:21','2019-02-08 18:37:21','',416,'https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber.jpg',0,'attachment','image/jpeg',0),(419,1,'2019-02-08 18:40:03','2019-02-08 18:40:03','','Donna Hawkins','','trash','closed','closed','','donna-hawkins__trashed','','','2020-09-19 19:32:59','2020-09-19 19:32:59','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=419',31,'houzez_agent','',0),(421,1,'2019-02-08 18:41:55','2019-02-08 18:41:55','','Erica Henry','','trash','closed','closed','','erica-henry__trashed','','','2020-09-19 19:27:48','2020-09-19 19:27:48','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=421',35,'houzez_agent','',0),(423,1,'2019-02-08 18:42:45','2019-02-08 18:42:45','','Erica Henry','','inherit','open','closed','','erica-henry-2','','','2019-02-08 18:42:45','2019-02-08 18:42:45','',421,'https://lantern-realty.com/wp-content/uploads/2019/02/Erica-Henry.jpg',0,'attachment','image/jpeg',0),(424,1,'2019-02-08 18:47:42','2019-02-08 18:47:42','<!-- wp:paragraph -->\n<p>Helping folks find a home that fits their needs, or helping someone sell a home in a season of change is what I love to do.   I find joy in being part of a team in a transaction with the goal of meeting the needs of the client. </p>\n<!-- /wp:paragraph -->','Melissa LaCroix','','publish','closed','closed','','melissa-lacroix','','','2020-09-20 15:36:28','2020-09-20 15:36:28','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=424',63,'houzez_agent','',0),(425,1,'2019-02-08 18:47:12','2019-02-08 18:47:12','','Melissa LaCroix','','inherit','open','closed','','melissa-lacroix','','','2019-02-08 18:47:12','2019-02-08 18:47:12','',424,'https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix.jpg',0,'attachment','image/jpeg',0),(427,1,'2019-02-08 18:49:59','2019-02-08 18:49:59','','Sandi Laney','','draft','closed','closed','','sandi-laney','','','2022-04-30 22:02:46','2022-04-30 22:02:46','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=427',65,'houzez_agent','',0),(428,1,'2019-02-08 18:49:32','2019-02-08 18:49:32','','Sandi Laney','','inherit','open','closed','','sandi-laney','','','2019-02-08 18:49:32','2019-02-08 18:49:32','',427,'https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney.jpg',0,'attachment','image/jpeg',0),(430,1,'2019-02-08 18:52:46','2019-02-08 18:52:46','','Laura Overcash','','publish','closed','closed','','laura-overcash','','','2020-09-19 19:45:07','2020-09-19 19:45:07','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=430',76,'houzez_agent','',0),(431,1,'2019-02-08 18:52:01','2019-02-08 18:52:01','','Laura Overcash','','inherit','open','closed','','laura-overcash','','','2019-02-08 18:52:01','2019-02-08 18:52:01','',430,'https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash.jpg',0,'attachment','image/jpeg',0),(434,1,'2019-02-08 18:54:10','2019-02-08 18:54:10','','Rick Rhew','','publish','closed','closed','','rick-rhew','','','2020-09-19 20:10:17','2020-09-19 20:10:17','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=434',83,'houzez_agent','',0),(436,1,'2019-02-08 18:57:22','2019-02-08 18:57:22','','Jill Sawant','','trash','closed','closed','','jill-sawant__trashed','','','2020-09-19 19:28:59','2020-09-19 19:28:59','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=436',51,'houzez_agent','',0),(437,1,'2019-02-08 18:56:40','2019-02-08 18:56:40','','Jill Sawant','','inherit','open','closed','','jill-sawant','','','2019-02-08 18:56:40','2019-02-08 18:56:40','',436,'https://lantern-realty.com/wp-content/uploads/2019/02/Jill-Sawant.jpg',0,'attachment','image/jpeg',0),(439,1,'2019-02-08 18:59:23','2019-02-08 18:59:23','','John Suther','','publish','closed','closed','','john-suther','','','2020-09-19 20:11:30','2020-09-19 20:11:30','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=439',98,'houzez_agent','',0),(440,1,'2019-02-08 18:58:47','2019-02-08 18:58:47','','John Suther','','inherit','open','closed','','john-suther','','','2019-02-08 18:58:47','2019-02-08 18:58:47','',439,'https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther.jpg',0,'attachment','image/jpeg',0),(442,1,'2019-02-08 19:00:44','2019-02-08 19:00:44','','Chuck Thompson','','draft','closed','closed','','chuck-thompson','','','2022-02-18 01:45:25','2022-02-18 01:45:25','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=442',100,'houzez_agent','',0),(444,1,'2019-02-08 19:02:25','2019-02-08 19:02:25','','Todd Wooley','','publish','closed','closed','','todd-wooley','','','2020-09-19 20:12:28','2020-09-19 20:12:28','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=444',106,'houzez_agent','',0),(445,1,'2019-02-08 19:02:00','2019-02-08 19:02:00','','Todd Wooley','','inherit','open','closed','','todd-wooley','','','2019-02-08 19:02:00','2019-02-08 19:02:00','',444,'https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg',0,'attachment','image/jpeg',0),(451,1,'2019-02-08 19:44:39','2019-02-08 19:44:39','','Terry Whitesell','','inherit','open','closed','','terry-whitesell-2','','','2019-02-08 19:44:39','2019-02-08 19:44:39','',448,'https://lantern-realty.com/wp-content/uploads/2019/02/Terry-Whitesell.png',0,'attachment','image/png',0),(452,1,'2019-02-08 19:48:15','2019-02-08 19:48:15','','Home Warranty of America','','publish','closed','closed','','home-warranty-of-america','','','2019-02-08 19:48:15','2019-02-08 19:48:15','',0,'https://lantern-realty.com/?post_type=houzez_partner&#038;p=452',0,'houzez_partner','',0),(453,1,'2019-02-08 19:48:03','2019-02-08 19:48:03','','HWA - 13 mo','','inherit','open','closed','','hwa-13-mo','','','2019-02-08 19:48:03','2019-02-08 19:48:03','',452,'https://lantern-realty.com/wp-content/uploads/2019/02/HomeWarrantyofAmerica.jpg',0,'attachment','image/jpeg',0),(455,1,'2019-02-08 19:49:14','2019-02-08 19:49:14','','Knipp Law','','publish','closed','closed','','knipp-law','','','2019-02-08 19:49:14','2019-02-08 19:49:14','',0,'https://lantern-realty.com/?post_type=houzez_partner&#038;p=455',0,'houzez_partner','',0),(456,1,'2019-02-08 19:49:09','2019-02-08 19:49:09','','KnippLaw','','inherit','open','closed','','knipplaw','','','2019-02-08 19:49:09','2019-02-08 19:49:09','',455,'https://lantern-realty.com/wp-content/uploads/2019/02/KnippLaw.jpg',0,'attachment','image/jpeg',0),(1315,1,'2020-10-19 01:05:49','2020-10-19 01:05:49','<h2>Lantern Realty  - Mooresville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Square\">\n							<img width=\"300\" height=\"345\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Mooresville','','inherit','closed','closed','','1309-revision-v1','','','2020-10-19 01:05:49','2020-10-19 01:05:49','',1309,'https://lantern-realty.com/1309-revision-v1/',0,'revision','',0),(1310,1,'2020-10-19 00:54:30','2020-10-19 00:54:30','<h2>Lantern Realty  - Kannapolis Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										119 West Avenue, Kannapolis, NC 28081</li>\n 	<li>\n					<a href=\"tel:7042980087\">\n(704) 298-0087\n</a></li>\n 	<li>\n					<a href=\"mailto:contact@lantern-realty.com\">\ncontact@lantern-realty.com\n</a></li>\n</ul>\n<a href=\"tel:7042980087\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:7042980087\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Kannapolis Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBrenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a resident of Cabarrus County for almost 30 years and absolutely...\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Concord area since 2003, and have enjoyed watching our...\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCourtney is a native North Carolinian and long time resident of Kannapolis. She is...\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAshley Hines a real estate professional, she recognizes and values the trust her clients...\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHelping folks find a home that fits their needs, or helping someone sell a...\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWelcome to Lantern Realty and Development!&nbsp; I have been an active member of the...\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Kimberly Trask and I have lived in Cabarrus County since 2013....\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a local having grown up in Concord leaving only for a 20-year...\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Mooresville','','inherit','closed','closed','','1309-revision-v1','','','2020-10-19 00:54:30','2020-10-19 00:54:30','',1309,'https://lantern-realty.com/1309-revision-v1/',0,'revision','',0),(1309,1,'2020-10-19 00:54:13','2020-10-19 00:54:13','<h2>Lantern Realty  - Mooresville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7049809379\">						\n										(704) 980-9379\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:LanternRealtyMooresville@gmail.com\">						\n										LanternRealtyMooresville@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Mooresville','','publish','closed','closed','','lantern-mooresville','','','2020-11-11 01:53:52','2020-11-11 01:53:52','',1279,'https://lantern-realty.com/?page_id=1309',0,'page','',0),(1316,1,'2020-10-19 01:06:15','2020-10-19 01:06:15','<h2>Lantern Realty  - Mooresville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Square\">\n							<img width=\"300\" height=\"345\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Mooresville','','inherit','closed','closed','','1309-revision-v1','','','2020-10-19 01:06:15','2020-10-19 01:06:15','',1309,'https://lantern-realty.com/1309-revision-v1/',0,'revision','',0),(1318,1,'2020-10-19 01:08:56','2020-10-19 01:08:56','<h2>Lantern Realty - Albemarle Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Albemarle Team\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:lrdalbemarle@gmail.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Albemarle Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Albemarle','','inherit','closed','closed','','1307-revision-v1','','','2020-10-19 01:08:56','2020-10-19 01:08:56','',1307,'https://lantern-realty.com/1307-revision-v1/',0,'revision','',0),(1317,1,'2020-10-19 01:08:41','2020-10-19 01:08:41','<h2>Lantern Realty - Albemarle Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Albemarle Team\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:lrdalbemarle@gmail.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Albemarle','','inherit','closed','closed','','1307-revision-v1','','','2020-10-19 01:08:41','2020-10-19 01:08:41','',1307,'https://lantern-realty.com/1307-revision-v1/',0,'revision','',0),(1308,1,'2020-10-19 00:54:04','2020-10-19 00:54:04','<h2>Lantern Realty  - Kannapolis Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										119 West Avenue, Kannapolis, NC 28081</li>\n 	<li>\n					<a href=\"tel:7042980087\">\n(704) 298-0087\n</a></li>\n 	<li>\n					<a href=\"mailto:contact@lantern-realty.com\">\ncontact@lantern-realty.com\n</a></li>\n</ul>\n<a href=\"tel:7042980087\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:7042980087\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Kannapolis Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBrenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a resident of Cabarrus County for almost 30 years and absolutely...\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Concord area since 2003, and have enjoyed watching our...\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCourtney is a native North Carolinian and long time resident of Kannapolis. She is...\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAshley Hines a real estate professional, she recognizes and values the trust her clients...\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHelping folks find a home that fits their needs, or helping someone sell a...\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWelcome to Lantern Realty and Development!&nbsp; I have been an active member of the...\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Kimberly Trask and I have lived in Cabarrus County since 2013....\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a local having grown up in Concord leaving only for a 20-year...\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Albemarle','','inherit','closed','closed','','1307-revision-v1','','','2020-10-19 00:54:04','2020-10-19 00:54:04','',1307,'https://lantern-realty.com/1307-revision-v1/',0,'revision','',0),(468,1,'2019-06-04 00:13:15','2019-06-04 00:13:15','','Robbie Bendig','','publish','closed','closed','','robbie-bendig','','','2020-09-19 19:16:30','2020-09-19 19:16:30','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=468',10,'houzez_agent','',0),(470,1,'2019-06-04 00:16:38','2019-06-04 00:16:38','','Jessica Cloward','','publish','closed','closed','','jessica-cloward','','','2022-02-18 01:29:58','2022-02-18 01:29:58','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=470',25,'houzez_agent','',0),(471,1,'2019-06-04 00:16:28','2019-06-04 00:16:28','','Jessica_Cloward','','inherit','open','closed','','jessica_cloward','','','2019-06-04 00:16:28','2019-06-04 00:16:28','',470,'https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward.jpg',0,'attachment','image/jpeg',0),(473,1,'2019-06-04 00:19:31','2019-06-04 00:19:31','','Kimberly Howell','','draft','closed','closed','','kimberly-howell','','','2021-11-22 00:21:59','2021-11-22 00:21:59','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=473',54,'houzez_agent','',0),(474,1,'2019-06-04 00:19:20','2019-06-04 00:19:20','','Kimberly_Howell','','inherit','open','closed','','kimberly_howell','','','2019-06-04 00:19:20','2019-06-04 00:19:20','',473,'https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg',0,'attachment','image/jpeg',0),(476,1,'2019-06-04 00:21:57','2019-06-04 00:21:57','','Christine Jalynski','','publish','closed','closed','','christine-jalynski','','','2020-09-19 19:39:00','2020-09-19 19:39:00','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=476',56,'houzez_agent','',0),(478,1,'2019-06-04 00:24:33','2019-06-04 00:24:33','','Leslie Liles','','trash','closed','closed','','leslie-liles__trashed','','','2020-09-19 19:28:17','2020-09-19 19:28:17','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=478',47,'houzez_agent','',0),(479,1,'2019-06-04 00:24:24','2019-06-04 00:24:24','','Leslie_Liles','','inherit','open','closed','','leslie_liles','','','2019-06-04 00:24:24','2019-06-04 00:24:24','',478,'https://lantern-realty.com/wp-content/uploads/2019/06/Leslie_Liles.jpeg',0,'attachment','image/jpeg',0),(481,1,'2019-06-04 00:27:44','2019-06-04 00:27:44','','Helen Robb','','publish','closed','closed','','helen-matthews','','','2021-09-04 01:48:54','2021-09-04 01:48:54','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=481',68,'houzez_agent','',0),(482,1,'2019-06-04 00:27:39','2019-06-04 00:27:39','','Helen_Matthews','','inherit','open','closed','','helen_matthews','','','2019-06-04 00:27:39','2019-06-04 00:27:39','',481,'https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews.jpg',0,'attachment','image/jpeg',0),(484,1,'2019-06-04 00:30:40','2019-06-04 00:30:40','','Julie Nutter','','publish','closed','closed','','julie-nutter','','','2022-02-18 01:39:41','2022-02-18 01:39:41','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=484',74,'houzez_agent','',0),(485,1,'2019-06-04 00:30:30','2019-06-04 00:30:30','','Julie_Nutter','','inherit','open','closed','','julie_nutter','','','2019-06-04 00:30:30','2019-06-04 00:30:30','',484,'https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter.jpg',0,'attachment','image/jpeg',0),(487,1,'2019-06-04 00:33:35','2019-06-04 00:33:35','','Lisa Pricher','','draft','closed','closed','','lisa-pricher','','','2021-02-18 14:16:54','2021-02-18 14:16:54','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=487',78,'houzez_agent','',0),(489,1,'2019-06-04 00:37:00','2019-06-04 00:37:00','','Bridget Quinn','','trash','closed','closed','','bridget-quinn__trashed','','','2020-09-19 19:28:37','2020-09-19 19:28:37','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=489',48,'houzez_agent','',0),(490,1,'2019-06-04 00:36:46','2019-06-04 00:36:46','','Bridget_Quinn','','inherit','open','closed','','bridgett_quinn','','','2019-06-04 00:36:52','2019-06-04 00:36:52','',489,'https://lantern-realty.com/wp-content/uploads/2019/06/Bridgett_Quinn.jpeg',0,'attachment','image/jpeg',0),(503,1,'2019-07-19 18:15:14','2019-07-19 18:15:14','','Kelly Keller','','publish','closed','closed','','kelly-keller','','','2020-09-19 19:39:45','2020-09-19 19:39:45','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=503',58,'houzez_agent','',0),(504,1,'2019-07-19 18:14:55','2019-07-19 18:14:55','','kelly_keller','','inherit','open','closed','','kelly_keller','','','2019-07-19 18:14:55','2019-07-19 18:14:55','',503,'https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg',0,'attachment','image/jpeg',0),(508,1,'2019-10-01 00:09:43','2019-10-01 00:09:43','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"1930\" img_size=\"medium\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://ryanivory.excellencebyarc.com/\" title=\"Mortgage Lender\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" title=\"Mortgage Lender\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"2188\" img_size=\"medium\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"Mortgage Lender\" link=\"https://alcova.com/apply?lo=skteam\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" title=\"Real Estate Law\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" title=\"Home Warranty\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h3><a href=\"https://geico.widen.net/s/wteghfnoeo\" target=\"_blank\" rel=\"noopener noreferrer\">Matthew Young - GEICO Insurance</a></h3>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-514 size-medium\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young-300x252.png\" alt=\"\" width=\"300\" height=\"252\" /></a></p>\n<p>Matthew Young, originally from Salisbury, has been in the insurance industry since 2001. Matthew’s dedication to the industry is embodied by the numerous affiliate awards from the Realtor Associations with which he partners.<br />\nOffering the services of an insurance broker with many carriers while backed by a national brand, Matthew can provide policies for virtually any residential property transactions in North Carolina, South Carolina, or Virginia.<br />\nExceptional service is the hallmark of his team, evidenced by agents being available every day until 10:00 pm. He is happy to help with any questions or solutions needed to make the real estate transaction as smooth as possible. He is married with two young sons. His hobbies include fishing, hiking, and anything outdoors.</p>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-515 size-full\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" alt=\"\" width=\"120\" height=\"29\" /></a>[/vc_column_text][/vc_column][/vc_row]</p>\n','Lantern Partners','','publish','closed','closed','','lantern-partners','','','2021-12-10 13:27:50','2021-12-10 13:27:50','',0,'https://lantern-realty.com/?page_id=508',0,'page','',0),(497,1,'2019-06-07 21:21:03','2019-06-07 21:21:03','','Bret Leonard','','publish','closed','closed','','bret-leonard','','','2020-09-19 19:38:00','2020-09-19 19:38:00','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=497',66,'houzez_agent','',0),(499,1,'2019-06-07 21:22:46','2019-06-07 21:22:46','','Donna_Hawkins','','inherit','open','closed','','donna_hawkins','','','2019-06-07 21:22:46','2019-06-07 21:22:46','',419,'https://lantern-realty.com/wp-content/uploads/2019/02/Donna_Hawkins.jpg',0,'attachment','image/jpeg',0),(500,1,'2019-06-07 21:24:30','2019-06-07 21:24:30','','Rick_Rhew','','inherit','open','closed','','rick_rhew','','','2019-06-07 21:24:30','2019-06-07 21:24:30','',434,'https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png',0,'attachment','image/png',0),(501,1,'2019-06-07 21:25:56','2019-06-07 21:25:56','','Chuck_Thompson','','inherit','open','closed','','chuck_thompson','','','2019-06-07 21:25:56','2019-06-07 21:25:56','',442,'https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson.jpg',0,'attachment','image/jpeg',0),(514,1,'2019-10-04 19:08:09','2019-10-04 19:08:09','','Geico_Matthew_Young','','inherit','open','closed','','geico_matthew_young','','','2019-10-04 19:08:09','2019-10-04 19:08:09','',508,'https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young.png',0,'attachment','image/png',0),(515,1,'2019-10-04 19:10:58','2019-10-04 19:10:58','','Geico Logo','','inherit','open','closed','','geico-logo','','','2019-10-04 19:10:58','2019-10-04 19:10:58','',508,'https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png',0,'attachment','image/png',0),(517,1,'2021-06-24 11:32:28','2019-10-04 19:15:51',' ','','','publish','closed','closed','','517','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'https://lantern-realty.com/?p=517',18,'nav_menu_item','',0),(518,1,'2021-06-24 11:32:28','2019-10-04 19:15:51',' ','','','publish','closed','closed','','518','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'https://lantern-realty.com/?p=518',29,'nav_menu_item','',0),(536,1,'2019-11-04 21:29:03','2019-11-04 21:29:03','','Freedom Mortgage','','inherit','open','closed','','freedom_mortgage_336x280','','','2019-11-04 21:29:26','2019-11-04 21:29:26','',237,'https://lantern-realty.com/wp-content/uploads/2019/11/Freedom_Mortgage_336x280.gif',0,'attachment','image/gif',0),(535,1,'2021-06-24 11:32:28','2019-11-04 21:27:04','','Mortgage','','publish','closed','closed','','mortgage','','','2021-06-24 11:32:28','2021-06-24 11:32:28','',0,'https://lantern-realty.com/?p=535',19,'nav_menu_item','',0),(528,1,'2019-10-04 20:29:44','2019-10-04 20:29:44','<!-- wp:paragraph -->\n<p>Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in NC.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>She is the wife of Thomas Brown and mother to a son, Chris, and a daughter, Deanna.&nbsp; She is also a proud grandmother to Trevor, Zoe, and Zach. An honor graduate of A.L. Brown High School, she has earned two Associate Degrees as well as her NC Realtor’s License.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Brenda owned her own franchise of Decorating Den in the Concord, NC area.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Other past working experiences were as the Southeast Regional Operations Manager for Sears Business Systems and as the Senior Buyer with Oiles America Corporation.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hardworking and dedicated to any endeavor she pursues, Brenda is focused to be the best in her field.&nbsp; She is now committed to be the best in the Real Estate industry where she offers full residential service for all the surrounding areas and strives to provide the best service for her clientele through excellent negotiating skills used throughout her career.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Brenda’s affiliations include the Central Carolina Association of Realtors and the National Association of Realtors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Brenda is a member of Kimball Lutheran Church in Kannapolis where she sings in the contemporary ensemble and plays in the hand bell ensemble.&nbsp; She is also the President of the Women of the ELCA of her church and teaches Sunday School.&nbsp; Brenda’s hobbies include singing, playing golf, boxing, and beach time.</p>\n<!-- /wp:paragraph -->','Brenda Brown','','publish','closed','closed','','brenda-brown','','','2020-09-20 15:38:34','2020-09-20 15:38:34','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=528',17,'houzez_agent','',0),(529,1,'2019-10-04 20:28:40','2019-10-04 20:28:40','','Brenda Brown','','inherit','open','closed','','brendas-photo','','','2019-10-04 20:28:51','2019-10-04 20:28:51','',528,'https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo.jpg',0,'attachment','image/jpeg',0),(1465,0,'2020-12-14 19:45:59','2020-12-14 19:45:59','','pic','','inherit','','closed','','pic','','','2020-12-14 19:45:59','2020-12-14 19:45:59','',0,'https://lantern-realty.com/pic/',0,'attachment','image/jpeg',0),(1466,6,'2020-12-15 13:26:10','2020-12-15 13:26:10','<div dir=\"ltr\">Good Morning, sorry for the short notice but we have to cancel both classes this week.  Sorry for the inconvenience.  <div><br></div><div>FYI, We are still having the team meeting tomorrow which will mainly be focused on our time with the appraiser.  <br clear=\"all\"><div><br></div>','CANVA/Instagram classes - CANCELLED','','publish','closed','open','','canva-instagram-classes-cancelled','','','2020-12-15 13:26:10','2020-12-15 13:26:10','',0,'https://lantern-realty.com/?p=1466',0,'post','',0),(532,1,'2019-10-04 20:30:45','2019-10-04 20:30:45','','Jessie_Henderson','','inherit','open','closed','','jessie_henderson','','','2019-10-04 20:30:45','2019-10-04 20:30:45','',0,'https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson.jpeg',0,'attachment','image/jpeg',0),(541,1,'2019-11-15 16:46:36','2019-11-15 16:46:36','','Robbie_Bendig','','inherit','open','closed','','robbie_bendig','','','2019-11-15 16:46:36','2019-11-15 16:46:36','',468,'https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig.jpg',0,'attachment','image/jpeg',0),(542,1,'2019-11-15 16:48:26','2019-11-15 16:48:26','','Bret_Leonard','','inherit','open','closed','','bret_leonard','','','2019-11-15 16:48:26','2019-11-15 16:48:26','',497,'https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg',0,'attachment','image/jpeg',0),(543,1,'2019-11-15 16:49:51','2019-11-15 16:49:51','','Christine_Jalynski','','inherit','open','closed','','christine_jalynski','','','2019-11-15 16:49:51','2019-11-15 16:49:51','',476,'https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski.jpeg',0,'attachment','image/jpeg',0),(546,1,'2019-11-15 17:23:18','2019-11-15 17:23:18','','Toni Benton','','publish','closed','closed','','toni-benton','','','2020-09-19 19:16:48','2020-09-19 19:16:48','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=546',11,'houzez_agent','',0),(547,1,'2019-11-15 17:22:40','2019-11-15 17:22:40','','Toni_Benton','','inherit','open','closed','','toni_benton','','','2019-11-15 17:22:40','2019-11-15 17:22:40','',546,'https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton.jpg',0,'attachment','image/jpeg',0),(549,1,'2019-11-15 17:26:10','2019-11-15 17:26:10','','Evonne Caudill','','publish','closed','closed','','evonne-caudill','','','2020-09-19 19:20:21','2020-09-19 19:20:21','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=549',20,'houzez_agent','',0),(551,1,'2019-11-15 17:27:23','2019-11-15 17:27:23','','Yira Garcia','','publish','closed','closed','','yira-garcia','','','2020-09-19 19:31:23','2020-09-19 19:31:23','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=551',40,'houzez_agent','',0),(553,1,'2019-11-15 17:28:20','2019-11-15 17:28:20','','Cathy Hager','','publish','closed','closed','','cathy-hager','','','2020-09-19 19:32:10','2020-09-19 19:32:10','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=553',43,'houzez_agent','',0),(555,1,'2019-11-15 17:30:28','2019-11-15 17:30:28','','Hosanna Hill','','publish','closed','closed','','hosanna-hill','','','2020-09-19 19:36:32','2020-09-19 19:36:32','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=555',51,'houzez_agent','',0),(556,1,'2019-11-15 17:29:54','2019-11-15 17:29:54','','Hosanna_Hill','','inherit','open','closed','','hosanna_hill','','','2019-11-15 17:29:54','2019-11-15 17:29:54','',555,'https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill.jpeg',0,'attachment','image/jpeg',0),(558,1,'2019-11-15 17:31:33','2019-11-15 17:31:33','','Deanna Miltz','','publish','closed','closed','','deanna-miltz','','','2020-09-19 19:40:28','2020-09-19 19:40:28','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=558',72,'houzez_agent','',0);
INSERT INTO `lrwp_posts` VALUES (1306,1,'2020-10-19 00:53:40','2020-10-19 00:53:40','<h2>Lantern Realty  - Kannapolis Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										119 West Avenue, Kannapolis, NC 28081</li>\n 	<li>\n					<a href=\"tel:7042980087\">\n(704) 298-0087\n</a></li>\n 	<li>\n					<a href=\"mailto:contact@lantern-realty.com\">\ncontact@lantern-realty.com\n</a></li>\n</ul>\n<a href=\"tel:7042980087\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:7042980087\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Kannapolis Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBrenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a resident of Cabarrus County for almost 30 years and absolutely...\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Concord area since 2003, and have enjoyed watching our...\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCourtney is a native North Carolinian and long time resident of Kannapolis. She is...\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAshley Hines a real estate professional, she recognizes and values the trust her clients...\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHelping folks find a home that fits their needs, or helping someone sell a...\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWelcome to Lantern Realty and Development!&nbsp; I have been an active member of the...\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Kimberly Trask and I have lived in Cabarrus County since 2013....\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a local having grown up in Concord leaving only for a 20-year...\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Harrisburg','','inherit','closed','closed','','1305-revision-v1','','','2020-10-19 00:53:40','2020-10-19 00:53:40','',1305,'https://lantern-realty.com/1305-revision-v1/',0,'revision','',0),(560,1,'2019-11-15 17:33:49','2019-11-15 17:33:49','<!-- wp:paragraph -->\n<p>My name is Kimberly Trask and I have lived in Cabarrus County since 2013. I am excited to work as your REALTOR and help you find the perfect home and/or help you sell your property. I value professionalism, time management and communication among other qualities and promise you those things to you as my client. I want you to be informed from the very beginning of our interactions all the way through the closing table. Buying a home will likely be the largest financial investment of your life and I want to ensure that you are comfortable and understand every step of the process to alleviate as much stress as possible and make this journey enjoyable. I value your business and look forward to working together.</p>\n<!-- /wp:paragraph -->','Kimberly Trask','','publish','closed','closed','','kimberly-trask','','','2020-09-19 20:13:42','2020-09-19 20:13:42','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=560',101,'houzez_agent','',0),(561,1,'2019-11-15 17:33:33','2019-11-15 17:33:33','','Kimberly_Trask','','inherit','open','closed','','kimberly_trask','','','2019-11-15 17:33:33','2019-11-15 17:33:33','',560,'https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask.jpg',0,'attachment','image/jpeg',0),(563,1,'2019-11-15 17:34:57','2019-11-15 17:34:57','<!-- wp:paragraph -->\n<p>Brianne is a life-long resident of Rowan County and resides in China Grove. An honor graduate of South Rowan High School, she also attended Catawba College and Superior School of Real Estate. She is very family-oriented, loves making fun memories with her niece and three nephews, and is dog-mom to her fur babies Dutch and Chaos. In addition to real estate, she likes to spend her time hiking, snowboarding, and traveling the world. She earned her NC Real Estate license in 2016 and began a career that she absolutely fell in love with! Offering a full-time residential service to both buyers and sellers, she strives to always bring the best customer service to her clients. Her dedication, stellar work ethic, attention to detail, and drive to succeed have allowed her business to flourish. She is loyal, exceptionally knowledgeable in her field, stays on top of communication, and an excellent negotiator. Brianne is definitely the agent that you want representing you and in your corner!</p>\n<!-- /wp:paragraph -->','Brianne Watson','','publish','closed','closed','','brianne-watson','','','2022-06-24 00:03:38','2022-06-24 00:03:38','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=563',102,'houzez_agent','',0),(565,1,'2019-11-15 17:56:08','2019-11-15 17:56:08','','April Bird','','publish','closed','closed','','april-bird','','','2021-02-18 14:12:54','2021-02-18 14:12:54','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=565',12,'houzez_agent','',0),(566,1,'2019-11-15 17:56:01','2019-11-15 17:56:01','','April_Bird','','inherit','open','closed','','april_bird','','','2019-11-15 17:56:01','2019-11-15 17:56:01','',565,'https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird.jpg',0,'attachment','image/jpeg',0),(572,1,'2020-01-17 01:08:30','2020-01-17 01:08:30','','Cathy_Hager','','inherit','open','closed','','cathy_hager','','','2020-01-17 01:08:30','2020-01-17 01:08:30','',553,'https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager.jpg',0,'attachment','image/jpeg',0),(573,1,'2020-01-17 01:24:01','2020-01-17 01:24:01','','Deborah Griffin','','publish','closed','closed','','deborah-griffin','','','2020-09-19 19:31:55','2020-09-19 19:31:55','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=573',42,'houzez_agent','',0),(574,1,'2020-01-17 01:23:40','2020-01-17 01:23:40','','Deborah_Griffin','','inherit','open','closed','','deborah_griffin','','','2020-01-17 01:23:40','2020-01-17 01:23:40','',573,'https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin.jpg',0,'attachment','image/jpeg',0),(576,1,'2020-01-17 01:28:22','2020-01-17 01:28:22','<!-- wp:paragraph -->\n<p>Buying and selling real estate can be quite stressful. A Realtor’s® job is to help you navigate through the process smoothly. Marguerite has a proven track record of going the extra mile to help you do just that. As a first-time homebuyer, she can help you navigate the loan qualification process and then can help you build the home you want or find one already built in the area you desire. If you have a home to sell, she is part of a team of experts ready to prepare your home to sell quickly and for top dollar. Contact her today to start the process. Through her training and experience with seniors, Marguerite works extensively with folks who are retired or nearing retirement. She is part of a team of professionals who can provide an array of helpful services often sought by seniors. Call her today and let her walk with you through this important transition. If you are selling real estate as part of an estate settlement, she also has specific training and experience to help you successfully complete this process. Marguerite has worked with several estate attorneys in the northern Charlotte metroplex, helping executors quickly dispose of real estate they must sell. If you are between these stages of life and need to buy or sell a home, reach out to Marguerite. She works hard to stay abreast of local trends and inventory, so she knows how to find homes in your niche, and also knows how to position your home to sell. She will help navigate the myriad details, such as pricing, staging for top dollar, financing, negotiating for your best outcome, inspections, and paperwork. Her passion is to serve you based on what YOU want or need. Her former clients often tout her integrity, her exceptional communication skills, and her ability to make the process smooth. Marguerite grew up in Northern Virginia, has lived in Winston-Salem, NC; Vancouver, BC; and Castle Rock, CO. She currently lives near Salisbury, NC with her husband. Give her a call today. Thank you!</p>\n<!-- /wp:paragraph -->','Marguerite Keller','','publish','closed','closed','','marguerite-keller','','','2022-05-26 01:56:22','2022-05-26 01:56:22','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=576',59,'houzez_agent','',0),(577,1,'2020-01-17 01:28:00','2020-01-17 01:28:00','','Marguerite_Keller','','inherit','open','closed','','marguerite_keller','','','2020-01-17 01:28:00','2020-01-17 01:28:00','',576,'https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller.jpg',0,'attachment','image/jpeg',0),(579,1,'2020-01-17 01:31:48','2020-01-17 01:31:48','<!-- wp:paragraph -->\n<p>Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson County in one capacity or another since 2012. She is a 2019 leadership Rowan graduate from Rowan County Chamber of Commerce, an active volunteer with Rowan helping Ministries, including serving on their planning committee for the 2020 Pass the Plate fundraiser, and an active member of the Kiwanis Club of Salisbury. Melissa was born and raised in Rowan County and has a bachelor\'s degree in Business Administration from Catawba College. She has been married to her husband Richard for 13 years and they have three children.</p>\n<!-- /wp:paragraph -->','Melissa Yates','','publish','closed','closed','','melissa-yates','','','2020-09-19 20:14:40','2020-09-19 20:14:40','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=579',107,'houzez_agent','',0),(580,1,'2020-01-17 01:31:14','2020-01-17 01:31:14','','Melissa_Yates','','inherit','open','closed','','melissa_yates','','','2020-01-17 01:31:14','2020-01-17 01:31:14','',579,'https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates.png',0,'attachment','image/png',0),(584,1,'2020-03-03 23:42:59','2020-03-03 23:42:59','','Licensed Realtor','','publish','closed','closed','','licensed-realtor','','','2020-03-03 23:42:59','2020-03-03 23:42:59','',0,'https://lantern-realty.com/?post_type=tmm&#038;p=584',0,'tmm','',0),(589,1,'2020-04-27 17:49:33','2020-04-27 17:49:33','','Brianne_Watson','','inherit','open','closed','','brianne_watson','','','2020-04-27 17:49:33','2020-04-27 17:49:33','',563,'https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson.jpg',0,'attachment','image/jpeg',0),(591,1,'2020-04-27 17:52:13','2020-04-27 17:52:13','','Deanna_Miltz','','inherit','open','closed','','deanna_miltz','','','2020-04-27 17:52:13','2020-04-27 17:52:13','',558,'https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg',0,'attachment','image/jpeg',0),(592,1,'2020-04-27 18:02:43','2020-04-27 18:02:43','','Evonne_Caudill','','inherit','open','closed','','evonne_caudill','','','2020-04-27 18:02:43','2020-04-27 18:02:43','',549,'https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill.jpg',0,'attachment','image/jpeg',0),(627,1,'2020-04-27 18:56:36','2020-04-27 18:56:36','','Yira_Garcia','','inherit','open','closed','','yira_garcia','','','2020-04-27 18:56:36','2020-04-27 18:56:36','',551,'https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia.jpg',0,'attachment','image/jpeg',0),(596,1,'2020-04-27 18:28:46','2020-04-27 18:28:46','','Shelly_Arledge','','inherit','open','closed','','shelly_arledge','','','2020-04-27 18:28:46','2020-04-27 18:28:46','',0,'https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge.jpg',0,'attachment','image/jpeg',0),(598,1,'2020-04-27 18:30:41','2020-04-27 18:30:41','','Jody Clodfelter','','publish','closed','closed','','jody-clodfelter','','','2020-09-19 19:20:41','2020-09-19 19:20:41','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=598',24,'houzez_agent','',0),(599,1,'2020-04-27 18:30:19','2020-04-27 18:30:19','','Jody_Clodfelter','','inherit','open','closed','','jody_clodfelter','','','2020-04-27 18:30:19','2020-04-27 18:30:19','',598,'https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter.jpg',0,'attachment','image/jpeg',0),(601,1,'2020-04-27 18:32:06','2020-04-27 18:32:06','<!-- wp:paragraph -->\n<p>My name is Amanda Cody and I have over 16 years\' experience as a real estate broker and paralegal. My focus is on serving the real estate needs of home buyers and sellers in Stanly County and its surrounding areas. I became a REALTOR in 2004 because I love the thought of helping people achieve their goal of finding the perfect home or piece of property. Real estate isn\'t just a job to me, it is a passion. I enjoy spending my free time with my husband, our two children, as well as our family and friends. I look forward to any opportunity I have to share my passion and knowledge of real estate with you. Should you work with me, I will work tirelessly to ensure you are connected with the best real estate opportunities available.  I hope you will consider contacting me for your future real estate needs. Best Wishes, Amanda Cody Broker </p>\n<!-- /wp:paragraph -->','Amanda Cody','','publish','closed','closed','','amanda-cody','','','2020-10-17 23:48:10','2020-10-17 23:48:10','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=601',26,'houzez_agent','',0),(602,1,'2020-04-27 18:31:58','2020-04-27 18:31:58','','Amanda_Cody','','inherit','open','closed','','amanda_cody','','','2020-04-27 18:31:58','2020-04-27 18:31:58','',601,'https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody.jpg',0,'attachment','image/jpeg',0),(604,1,'2020-04-27 18:34:38','2020-04-27 18:34:38','<!-- wp:paragraph -->\n<p>My name is Mike Fullerton, I have been selling Real Estate in the Stanly County and surrounding areas since 2016. My family moved to Albemarle North Carolina in 1986 and we have established deep roots in this welcoming community. I went into the United States Marine Corps after high school, then moved around for awhile before comin back home to Albemarle where I now call home again to raise my two wonderful daughters. I love my profession in Real Estate and take great pride in the service I provide my clients. In the end, if you decided to buy, sell or neither I am glad to have created a a friendship that will last forever.</p>\n<!-- /wp:paragraph -->','Mike Fullerton','','publish','closed','closed','','mike-fullerton','','','2020-10-17 23:43:00','2020-10-17 23:43:00','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=604',37,'houzez_agent','',0),(1138,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Weekly View','','publish','closed','closed','','weekly-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/weekly-view/',0,'mec_calendars','',0),(1139,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Daily View','','publish','closed','closed','','daily-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/daily-view/',0,'mec_calendars','',0),(1140,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Map View','','publish','closed','closed','','map-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/map-view/',0,'mec_calendars','',0),(1141,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Upcoming events (List)','','publish','closed','closed','','upcoming-events-list','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/upcoming-events-list/',0,'mec_calendars','',0),(1142,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Upcoming events (Grid)','','publish','closed','closed','','upcoming-events-grid','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/upcoming-events-grid/',0,'mec_calendars','',0),(605,1,'2020-04-27 18:34:00','2020-04-27 18:34:00','','Mike_Fullerton','','inherit','open','closed','','mike_fullerton','','','2020-04-27 18:34:00','2020-04-27 18:34:00','',604,'https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton.jpg',0,'attachment','image/jpeg',0),(608,1,'2020-04-27 18:36:22','2020-04-27 18:36:22','','Will Hedrick','','draft','closed','closed','','will-hedrick','','','2021-02-18 14:14:22','2021-02-18 14:14:22','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=608',47,'houzez_agent','',0),(609,1,'2020-04-27 18:36:16','2020-04-27 18:36:16','','Will_Hedrick','{\"total_effects_actions\":0,\"total_draw_time\":321621,\"layers_used\":2,\"effects_tried\":0,\"total_draw_actions\":0,\"total_editor_actions\":{\"border\":0,\"frame\":0,\"mask\":0,\"lensflare\":0,\"clipart\":0,\"text\":0,\"square_fit\":0,\"shape_mask\":0,\"callout\":0},\"effects_applied\":0,\"uid\":\"96B45E87-F0FC-45A6-BC29-33A7951ADC1F_1587503546920\",\"width\":993,\"photos_added\":0,\"total_effects_time\":0,\"tools_used\":{\"tilt_shift\":0,\"resize\":0,\"adjust\":0,\"curves\":0,\"motion\":0,\"perspective\":0,\"clone\":0,\"crop\":0,\"enhance\":0,\"selection\":0,\"free_crop\":0,\"flip_rotate\":0,\"shape_crop\":0,\"stretch\":0},\"origin\":\"gallery\",\"height\":1497,\"subsource\":\"done_button\",\"total_editor_time\":325,\"brushes_used\":1}','inherit','open','closed','','will_hedrick','','','2020-04-27 18:36:16','2020-04-27 18:36:16','',608,'https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick.jpeg',0,'attachment','image/jpeg',0),(612,1,'2020-04-27 18:37:24','2020-04-27 18:37:24','','Ashley_Hines','','inherit','open','closed','','ashley_hines','','','2020-04-27 18:37:24','2020-04-27 18:37:24','',0,'https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines.jpg',0,'attachment','image/jpeg',0),(615,1,'2020-04-27 18:38:45','2020-04-27 18:38:45','','MaClay_Miller','','inherit','open','closed','','maclay_miller','','','2020-04-27 18:38:45','2020-04-27 18:38:45','',0,'https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller.jpg',0,'attachment','image/jpeg',0),(617,1,'2020-04-27 18:40:53','2020-04-27 18:40:53','','Susan Starnes','','publish','closed','closed','','susan-starnes','','','2020-09-19 20:14:23','2020-09-19 20:14:23','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=617',94,'houzez_agent','',0),(618,1,'2020-04-27 18:40:24','2020-04-27 18:40:24','','Susan_Starnes','','inherit','open','closed','','susan_starnes','','','2020-04-27 18:40:24','2020-04-27 18:40:24','',617,'https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes.jpg',0,'attachment','image/jpeg',0),(620,1,'2020-04-27 18:42:05','2020-04-27 18:42:05','','Tricia Strickland','','publish','closed','closed','','tricia-strickland','','','2020-09-19 20:14:58','2020-09-19 20:14:58','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=620',97,'houzez_agent','',0),(621,1,'2020-04-27 18:41:56','2020-04-27 18:41:56','','Tricia_Strickland','','inherit','open','closed','','tricia_strickland','','','2020-04-27 18:41:56','2020-04-27 18:41:56','',620,'https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland.jpg',0,'attachment','image/jpeg',0),(623,1,'2020-04-27 18:43:12','2020-04-27 18:43:12','<!-- wp:paragraph -->\n<p>Born in the beautiful and modern city of Ningbo, China, I worked as a businesswoman in Import &amp; Export field for more than ten years before immigrating to the States. My family lived in IA and IL for several years, and later settled in one of the best states&nbsp; – North Carolina. Teaching and disseminating Chinese language(Mandarin) and culture made my life colorful and meaningful in the U.S. I also served as a president of the Chinese Heritage Association for several years when resided in IL.<br><br>I’m always very interested in architecture along with the housing market and property management. Through buying and selling my own properties in different states and giving advices to friends on their successful property investment activities I found much joy in Real Estate business, which later prompted me to obtain my NC Real Estate Broker’s license and decided to pursue it for my future career path.<br><br>I believe the professional knowledge, timely positive communication, and prudent working ethics are the keys to build up good and trustworthy relationships with my clients. It is my pleasure to offer you the best service to meet your Real Estate needs!<br><br>* Bilingual in Chinese and English &nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>* Photographer  <a rel=\"noreferrer noopener\" href=\"http://www.istockphoto.com/portfolio/minzhang\" target=\"_blank\" data-type=\"URL\" data-id=\"http://www.istockphoto.com/portfolio/minzhang\">www.istockphoto.com/portfolio/minzhan</a><a href=\"http://www.istockphoto.com/portfolio/minzhang\" data-type=\"URL\" data-id=\"http://www.istockphoto.com/portfolio/minzhang\" target=\"_blank\" rel=\"noreferrer noopener\">g</a></p>\n<!-- /wp:paragraph -->','Min Zhang','','publish','closed','closed','','min-zhang','','','2022-01-06 23:09:43','2022-01-06 23:09:43','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=623',108,'houzez_agent','',0),(624,1,'2020-04-27 18:43:00','2020-04-27 18:43:00','','Min_Zhang','','inherit','open','closed','','min_zhang','','','2020-04-27 18:43:00','2020-04-27 18:43:00','',623,'https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg',0,'attachment','image/jpeg',0),(663,1,'2020-05-27 19:58:54','2020-05-27 19:58:54','','Lantern Main Office Kannapolis','','inherit','open','closed','','lantern-main-office-kannapolis','','','2020-05-27 19:58:54','2020-05-27 19:58:54','',661,'https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg',0,'attachment','image/jpeg',0),(661,1,'2020-05-27 20:01:45','2020-05-27 20:01:45','[vc_row][vc_column width=\"1/4\"][vc_btn title=\"Kannapolis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"none\" button_block=\"true\" link=\"url:#Main|title:Kannapolis||\"][/vc_column][vc_column width=\"1/4\"][vc_btn title=\"Salisbury\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"none\" button_block=\"true\" link=\"url:#Salisbury|title:Salisbury||\"][/vc_column][vc_column width=\"1/4\"][vc_btn title=\"Harrisburg\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"none\" button_block=\"true\" link=\"url:#Harrisburg|title:Harrisburg||\"][/vc_column][vc_column width=\"1/4\"][vc_btn title=\"Albemarle\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"none\" button_block=\"true\" link=\"url:#Albemarle|title:Albemarle||\"][/vc_column][/vc_row][vc_row][vc_column el_id=\"Main\"][hz-section-title hz_section_title=\"Lantern Main Office\" hz_section_subtitle=\"Covering Kannapolis and Southern Rowan County\" hz_section_title_align=\"text-left\" hz_section_title_color=\"\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"663\" img_size=\"medium\" alignment=\"center\" onclick=\"link_image\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwODguMTcyMjE0NzU2MjQ1JTIxMmQtODAuNjI2MzM2MzE1NzcxOTQlMjEzZDM1LjQ5NzY5ODkwNDU3ODE4NiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDg4NTQwODg0ZWMyZTJkNDclMjUzQTB4NWI5YTgwNDYwNzA4OThiYyUyMTJzMTE5JTI1MjBXZXN0JTI1MjBBdmUlMjUyQyUyNTIwS2FubmFwb2xpcyUyNTJDJTI1MjBOQyUyNTIwMjgwODElMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTU5MDc1NjAxNjYyMCUyMTVtMiUyMTFzZW4lMjEyc3VzJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBhcmlhLWhpZGRlbiUzRCUyMmZhbHNlJTIyJTIwdGFiaW5kZXglM0QlMjIwJTIyJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"300px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]119 West Avenue\nKannapolis, North Carolina 28081\n\n(704) 298-0087\n\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column el_id=\"Salisbury\"][hz-section-title hz_section_title=\"Lantern Salisbury Office\" hz_section_subtitle=\"Covering Rowan County\" hz_section_title_align=\"text-left\" hz_section_title_color=\"\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"674\" img_size=\"medium\" alignment=\"center\" onclick=\"link_image\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMyNDEuMzg3MDIwODc0NjIwNyUyMTJkLTgwLjQ3MTY2ODU4NTQ1OTQlMjEzZDM1LjY2NzQ3MTI4MDE5NzUxJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODg1M2YzMjc3YjY2MGUyMSUyNTNBMHhiZDI5NTMzNjc0Y2UxZTVlJTIxMnMxMDUlMjUyME4lMjUyME1haW4lMjUyMFN0JTI1MjBTdWl0ZSUyNTIwQiUyNTJDJTI1MjBTYWxpc2J1cnklMjUyQyUyNTIwTkMlMjUyMDI4MTQ0JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE1OTA3NTYzNjIyOTQlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"300px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]105 North Main Street - Suite B\nSalisbury, North Carolina 28144\n\n(704) 298-0087\n\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column el_id=\"Harrisburg\"][hz-section-title hz_section_title=\"Lantern Harrisburg Office\" hz_section_subtitle=\"Covering Greater Cabarrus County\" hz_section_title_align=\"text-left\" hz_section_title_color=\"\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"21\" img_size=\"medium\" alignment=\"center\" onclick=\"link_image\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMyNTUuMjU3NDI5ODkyNjA5MyUyMTJkLTgwLjY2MzQ0ODY4NTQ3MTg1JTIxM2QzNS4zMjQ0MjgzODAyNzg5NyUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDg4NTQxYTQ0YjI0ZmY1ZjclMjUzQTB4YjA2YTM5YmMxZmRkYjk2YyUyMTJzNjQ3NyUyNTIwTW9yZWhlYWQlMjUyMFJkJTI1MkMlMjUyMEhhcnJpc2J1cmclMjUyQyUyNTIwTkMlMjUyMDI4MDc1JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE1OTA3NTgyMzg5MjAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"300px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n\n6477 Morehead Road\nHarrisburg, North Carolina 28075\n\n(704) 298-0087\n\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column el_id=\"Albemarle\"][hz-section-title hz_section_title=\"Lantern Albemarle Office\" hz_section_subtitle=\"Covering Stanly County\" hz_section_title_align=\"text-left\" hz_section_title_color=\"\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"21\" img_size=\"medium\" alignment=\"center\" onclick=\"link_image\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMyNTQuMjI0NzI0ODIxMjYwNyUyMTJkLTgwLjE5OTcxNTc4NTQ3MDk2JTIxM2QzNS4zNTAwNjg4ODAyNzI4MiUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDg4NTQ3YjUxY2JhMjhkYWQlMjUzQTB4MmQ3ODE5MjQ1N2MwZGZiNSUyMTJzMTE4JTI1MjBFJTI1MjBNYWluJTI1MjBTdCUyNTJDJTI1MjBBbGJlbWFybGUlMjUyQyUyNTIwTkMlMjUyMDI4MDAxJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE1OTA3NTg0MTAzNjclMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwYXJpYS1oaWRkZW4lM0QlMjJmYWxzZSUyMiUyMHRhYmluZGV4JTNEJTIyMCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"300px\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n\n118 East Main Street\nAlbemarle, North Carolina 28001\n\n(704) 298-0087\n\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','zzLantern Offices','','publish','closed','closed','','zzlantern-offices','','','2020-09-19 18:54:52','2020-09-19 18:54:52','',0,'https://lantern-realty.com/?page_id=661',0,'page','',0),(645,1,'2020-05-01 13:18:21','2020-05-01 13:18:21','','Ashley Ferlauto','','publish','closed','closed','','ashley-ferlauto','','','2022-05-26 01:38:39','2022-05-26 01:38:39','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=645',35,'houzez_agent','',0),(646,1,'2020-05-01 13:17:06','2020-05-01 13:17:06','','Ashley Ferlauto','','inherit','open','closed','','ashley-ferlauto','','','2020-05-01 13:17:06','2020-05-01 13:17:06','',645,'https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto.jpg',0,'attachment','image/jpeg',0),(648,1,'2020-05-01 13:41:07','2020-05-01 13:41:07','[[[{\"field_key\":\"user_login\",\"general_setting\":{\"label\":\"Username\",\"field_name\":\"user_login\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}},{\"field_key\":\"user_pass\",\"general_setting\":{\"label\":\"User Password\",\"field_name\":\"user_pass\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}}],[{\"field_key\":\"user_email\",\"general_setting\":{\"label\":\"User Email\",\"field_name\":\"user_email\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}},{\"field_key\":\"user_confirm_password\",\"general_setting\":{\"label\":\"Confirm Password\",\"field_name\":\"user_confirm_password\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}}]]]','Default form','','publish','closed','closed','','default-form','','','2020-05-01 13:41:07','2020-05-01 13:41:07','',0,'https://lantern-realty.com/?post_type=user_registration&p=648',0,'user_registration','',0),(649,1,'2020-05-01 13:41:14','2020-05-01 13:41:14','[user_registration_my_account]','My Account','','publish','closed','closed','','my-account','','','2020-05-01 13:41:14','2020-05-01 13:41:14','',0,'https://lantern-realty.com/my-account/',0,'page','',0),(650,1,'2020-05-01 13:41:14','2020-05-01 13:41:14','[user_registration_form id=\"648\"]','Registration','','publish','closed','closed','','registration','','','2020-05-01 13:41:14','2020-05-01 13:41:14','',0,'https://lantern-realty.com/registration/',0,'page','',0),(651,1,'2020-05-01 13:54:49','2020-05-01 13:54:49','[[[{\"field_key\":\"user_email\",\"general_setting\":{\"label\":\"Agent Email\",\"description\":\"\",\"field_name\":\"user_email\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\"}},{\"field_key\":\"user_confirm_email\",\"general_setting\":{\"label\":\"Confirm Email\",\"description\":\"\",\"field_name\":\"user_confirm_email\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\"}},{\"field_key\":\"user_pass\",\"general_setting\":{\"label\":\"User Password\",\"description\":\"\",\"field_name\":\"user_pass\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\"}},{\"field_key\":\"user_confirm_password\",\"general_setting\":{\"label\":\"Confirm Password\",\"description\":\"\",\"field_name\":\"user_confirm_password\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\"}},{\"field_key\":\"first_name\",\"general_setting\":{\"label\":\"First Name\",\"description\":\"\",\"field_name\":\"first_name\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\"}},{\"field_key\":\"last_name\",\"general_setting\":{\"label\":\"Last Name\",\"description\":\"\",\"field_name\":\"last_name\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\"}},{\"field_key\":\"number\",\"general_setting\":{\"label\":\"Phone Number:\",\"description\":\"\",\"field_name\":\"number_box_1588340690\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"min\":\"\",\"max\":\"\",\"step\":\"\",\"custom_class\":\"\"}},{\"field_key\":\"number\",\"general_setting\":{\"label\":\"MLS #\",\"description\":\"\",\"field_name\":\"number_box_1588340676\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"min\":\"\",\"max\":\"\",\"step\":\"\",\"custom_class\":\"\"}},{\"field_key\":\"description\",\"general_setting\":{\"label\":\"Agent Bio for Website\",\"description\":\"\",\"field_name\":\"description\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\"}}]]]','New Agent Form','','publish','closed','closed','','untitled','','','2020-05-01 13:54:49','2020-05-01 13:54:49','',0,'https://lantern-realty.com/?post_type=user_registration&#038;p=651',0,'user_registration','',0),(653,1,'2020-05-01 14:36:40','2020-05-01 14:36:40','{\"id\":\"653\",\"field_id\":1,\"settings\":{\"form_title\":\"New Agent Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New New Agent Form Entry\",\"sender_name\":\"Lantern Realty and Development\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"Thanks for contacting us! We will be in touch with you shortly.\",\"message_scroll\":\"1\",\"page\":\"350\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"blank\"}}','New Agent Form','','publish','closed','closed','','new-agent-form','','','2020-05-01 14:36:43','2020-05-01 14:36:43','',0,'https://lantern-realty.com/?post_type=wpforms&#038;p=653',0,'wpforms','',0),(655,1,'2020-05-01 15:06:30','2020-05-01 15:06:30','','Default Registration','','publish','closed','closed','','default-registration','','','2020-05-01 15:06:30','2020-05-01 15:06:30','',0,'https://lantern-realty.com/um_form/default-registration/',0,'um_form','',0),(656,1,'2020-05-01 15:06:30','2020-05-01 15:06:30','','Default Login','','publish','closed','closed','','default-login','','','2020-05-01 15:06:30','2020-05-01 15:06:30','',0,'https://lantern-realty.com/um_form/default-login/',0,'um_form','',0),(657,1,'2020-05-01 15:06:30','2020-05-01 15:06:30','','Default Profile','','publish','closed','closed','','default-profile','','','2020-05-01 15:06:30','2020-05-01 15:06:30','',0,'https://lantern-realty.com/um_form/default-profile/',0,'um_form','',0),(658,1,'2020-05-01 15:06:30','2020-05-01 15:06:30','','Members','','publish','closed','closed','','members','','','2020-05-01 15:06:30','2020-05-01 15:06:30','',0,'https://lantern-realty.com/um_directory/members/',0,'um_directory','',0),(674,1,'2020-05-29 12:53:18','2020-05-29 12:53:18','','Lantern Salisbury Office','','inherit','open','closed','','lantern-salisbury-office','','','2020-05-29 12:53:18','2020-05-29 12:53:18','',661,'https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg',0,'attachment','image/jpeg',0),(1305,1,'2020-10-19 00:53:16','2020-10-19 00:53:16','<h2>Lantern Realty  - Harrisburg Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Square\">\n							<img width=\"300\" height=\"345\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Harrisburg Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thanks for checking out my profile! My name is Meredith Christy and the three...	\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...	\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"><strong>Lisa Pricher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Harrisburg','','publish','closed','closed','','lantern-harrisburg','','','2020-10-19 01:04:04','2020-10-19 01:04:04','',1279,'https://lantern-realty.com/?page_id=1305',0,'page','',0),(1304,1,'2020-10-19 00:52:58','2020-10-19 00:52:58','<h2>Lantern Realty  - Kannapolis Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										119 West Avenue, Kannapolis, NC 28081</li>\n 	<li>\n					<a href=\"tel:7042980087\">\n(704) 298-0087\n</a></li>\n 	<li>\n					<a href=\"mailto:contact@lantern-realty.com\">\ncontact@lantern-realty.com\n</a></li>\n</ul>\n<a href=\"tel:7042980087\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:7042980087\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Kannapolis Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBrenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a resident of Cabarrus County for almost 30 years and absolutely...\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Concord area since 2003, and have enjoyed watching our...\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCourtney is a native North Carolinian and long time resident of Kannapolis. She is...\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAshley Hines a real estate professional, she recognizes and values the trust her clients...\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHelping folks find a home that fits their needs, or helping someone sell a...\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWelcome to Lantern Realty and Development!&nbsp; I have been an active member of the...\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Kimberly Trask and I have lived in Cabarrus County since 2013....\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a local having grown up in Concord leaving only for a 20-year...\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Salisbury','','inherit','closed','closed','','1302-revision-v1','','','2020-10-19 00:52:58','2020-10-19 00:52:58','',1302,'https://lantern-realty.com/1302-revision-v1/',0,'revision','',0),(1303,1,'2020-10-19 00:52:31','2020-10-19 00:52:31','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Salisbury','','inherit','closed','closed','','1302-revision-v1','','','2020-10-19 00:52:31','2020-10-19 00:52:31','',1302,'https://lantern-realty.com/1302-revision-v1/',0,'revision','',0),(686,1,'2021-06-24 11:31:26','2020-05-29 18:16:37','','Home','','publish','closed','closed','','home-3','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=686',1,'nav_menu_item','',0),(687,1,'2021-06-24 11:31:26','2020-05-29 18:22:09','','Lantern Properties','','publish','closed','closed','','lantern-properties','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=687',2,'nav_menu_item','',0),(688,1,'2021-06-24 11:31:26','2020-05-29 18:22:09','','Active Listings','','publish','closed','closed','','active-listings-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=688',3,'nav_menu_item','',0),(689,1,'2021-06-24 11:31:26','2020-05-29 18:22:09','','Recently Sold','','publish','closed','closed','','recently-sold-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=689',4,'nav_menu_item','',0),(690,1,'2021-06-24 11:31:26','2020-05-29 18:24:10','','Property Search','','publish','closed','closed','','property-search-3','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=690',5,'nav_menu_item','',0),(691,1,'2021-06-24 11:31:26','2020-05-29 18:24:10','','Search','','publish','closed','closed','','search-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=691',6,'nav_menu_item','',0),(692,1,'2021-06-24 11:31:26','2020-05-29 18:24:10','','By Market','','publish','closed','closed','','by-market-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=692',7,'nav_menu_item','',0),(693,1,'2021-06-24 11:31:26','2020-05-29 18:24:10','','Kannapolis/Concord','','publish','closed','closed','','kannapolis-concord-3','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=693',8,'nav_menu_item','',0),(694,1,'2021-06-24 11:31:26','2020-05-29 18:24:10','','Salisbury','','publish','closed','closed','','salisbury-3','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=694',9,'nav_menu_item','',0),(695,1,'2021-06-24 11:31:26','2020-05-29 18:24:10','','Rockwell/Granite Quary','','publish','closed','closed','','rockwell-granite-quary-3','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=695',10,'nav_menu_item','',0),(696,1,'2021-06-24 11:31:26','2020-05-29 18:24:10','','Lake Norman','','publish','closed','closed','','lake-norman-3','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=696',11,'nav_menu_item','',0),(697,1,'2021-06-24 11:31:26','2020-05-29 18:24:10','','Charlotte','','publish','closed','closed','','charlotte-3','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=697',12,'nav_menu_item','',0),(698,1,'2021-06-24 11:31:26','2020-05-29 18:27:05','','Buyers','','publish','closed','closed','','buyers-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=698',13,'nav_menu_item','',0),(699,1,'2021-06-24 11:31:26','2020-05-29 18:27:05','','Property Organizer','','publish','closed','closed','','property-organizer-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=699',14,'nav_menu_item','',0),(700,1,'2021-06-24 11:31:26','2020-05-29 18:27:05','','Saved Searches','','publish','closed','closed','','saved-searches-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=700',15,'nav_menu_item','',0),(701,1,'2021-06-24 11:31:26','2020-05-29 18:27:05','','Saved Listings','','publish','closed','closed','','saved-listings-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=701',16,'nav_menu_item','',0),(702,1,'2021-06-24 11:31:26','2020-05-29 18:27:05',' ','','','publish','closed','closed','','702','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=702',17,'nav_menu_item','',0),(703,1,'2021-06-24 11:31:26','2020-05-29 18:27:05',' ','','','publish','closed','closed','','703','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=703',18,'nav_menu_item','',0),(704,1,'2021-06-24 11:31:26','2020-05-29 18:27:05','','Mortgage','','publish','closed','closed','','mortgage-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=704',19,'nav_menu_item','',0),(705,1,'2021-06-24 11:31:26','2020-05-29 18:27:05','','Sellers','','publish','closed','closed','','sellers-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=705',20,'nav_menu_item','',0),(706,1,'2021-06-24 11:31:26','2020-05-29 18:27:05','','Valuation Request','','publish','closed','closed','','valuation-request-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=706',21,'nav_menu_item','',0),(707,1,'2021-06-24 11:31:26','2020-05-29 18:27:05','','Market Reports','','publish','closed','closed','','market-reports-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=707',22,'nav_menu_item','',0),(708,1,'2021-06-24 11:31:26','2020-05-29 18:27:05','','Kannapolis/Concord','','publish','closed','closed','','kannapolis-concord-4','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=708',23,'nav_menu_item','',0),(709,1,'2021-06-24 11:31:26','2020-05-29 18:27:05','','Landis/China Grove','','publish','closed','closed','','landis-china-grove-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=709',24,'nav_menu_item','',0),(710,1,'2021-06-24 11:31:26','2020-05-29 18:29:28','','Salisbury','','publish','closed','closed','','salisbury-4','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=710',25,'nav_menu_item','',0),(711,1,'2021-06-24 11:31:26','2020-05-29 18:29:28','','Rockwell/Granite Quary','','publish','closed','closed','','rockwell-granite-quary-4','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=711',26,'nav_menu_item','',0),(712,1,'2021-06-24 11:31:26','2020-05-29 18:29:28','','Lake Norman','','publish','closed','closed','','lake-norman-4','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=712',27,'nav_menu_item','',0),(713,1,'2021-06-24 11:31:26','2020-05-29 18:29:28','','Charlotte','','publish','closed','closed','','charlotte-4','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=713',28,'nav_menu_item','',0),(714,1,'2021-06-24 11:31:26','2020-05-29 18:29:28',' ','','','publish','closed','closed','','714','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=714',30,'nav_menu_item','',0),(715,1,'2021-06-24 11:31:26','2020-05-29 18:29:28',' ','','','publish','closed','closed','','715','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=715',32,'nav_menu_item','',0),(716,1,'2021-06-24 11:31:26','2020-05-29 18:29:28','','Contact','','publish','closed','closed','','contact-2','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=716',31,'nav_menu_item','',0),(717,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Home','Home','Home','publish','closed','closed','','home-4','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/home-4/',0,'nav_menu_item','',0),(718,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Featured Listings','Featured Listings','Featured Listings','publish','closed','closed','','featured-listings-2','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/featured-listings-2/',2,'nav_menu_item','',0),(719,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Property Search','Property Search','Property Search','publish','closed','closed','','property-search-4','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/property-search-4/',3,'nav_menu_item','',0),(720,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Search','Search','Search','publish','closed','closed','','search-3','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/search-3/',4,'nav_menu_item','',0),(721,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Map Search','Map Search','Map Search','publish','closed','closed','','map-search','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/map-search/',5,'nav_menu_item','',0),(722,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Open Homes','Open Homes','Open Homes','publish','closed','closed','','open-homes','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/open-homes/',6,'nav_menu_item','',0),(723,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Advanced Search','Advanced Search','Advanced Search','publish','closed','closed','','advanced-search','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/advanced-search/',7,'nav_menu_item','',0),(724,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Email Alerts','Email Alerts','Email Alerts','publish','closed','closed','','email-alerts','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/email-alerts/',8,'nav_menu_item','',0),(725,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Communities','Communities','Communities','publish','closed','closed','','communities','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/communities/',9,'nav_menu_item','',0),(726,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Buyers & Sellers','Buyers & Sellers','Buyers & Sellers','publish','closed','closed','','buyers-sellers','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/buyers-sellers/',10,'nav_menu_item','',0),(727,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Property Organizer','Property Organizer','Property Organizer','publish','closed','closed','','property-organizer-3','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/property-organizer-3/',11,'nav_menu_item','',0),(728,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Valuation Request','Valuation Request','Valuation Request','publish','closed','closed','','valuation-request-3','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/valuation-request-3/',12,'nav_menu_item','',0),(729,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Contact','Contact','Contact','publish','closed','closed','','contact-3','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/contact-3/',13,'nav_menu_item','',0),(730,1,'2020-05-29 18:33:03','2020-05-29 18:33:03','Mortgage Calculator','Mortgage Calculator','Mortgage Calculator','publish','closed','closed','','mortgage-calculator','','','2020-05-29 18:33:03','2020-05-29 18:33:03','',0,'https://lantern-realty.com/2020/05/29/mortgage-calculator/',14,'nav_menu_item','',0),(733,1,'2020-05-29 19:42:59','2020-05-29 19:42:59','<!-- wp:paragraph -->\n<p>Chris Puckett is the man! Knowledgeable and trustworthy. Highly recommend!</p>\n<!-- /wp:paragraph -->','','','publish','closed','closed','','733-2','','','2020-05-29 19:43:00','2020-05-29 19:43:00','',0,'https://lantern-realty.com/?post_type=houzez_reviews&#038;p=733',0,'houzez_reviews','',0),(867,1,'2020-10-10 17:06:51','2020-10-10 17:06:51','{\"id\":\"867\",\"field_id\":3,\"settings\":{\"form_title\":\"Blank Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"antispam\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Blank Form Entry\",\"sender_name\":\"Lantern Realty and Development\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"Thanks for contacting us! We will be in touch with you shortly.\",\"message_scroll\":\"1\",\"page\":\"350\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"blank\"}}','Blank Form','','publish','closed','closed','','blank-form','','','2020-10-10 17:07:18','2020-10-10 17:07:18','',0,'https://lantern-realty.com/?post_type=wpforms&#038;p=867',0,'wpforms','',0),(744,1,'2020-07-24 20:38:15','2020-07-24 20:38:15','<!-- wp:paragraph -->\n<p>\"Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still live in Rowan County. So when I say my roots are here, that is no joke. I know the Rowan, Cabarrus and surrounding county markets very well and understand what it takes to market here. Looking to sell your home in these areas? Or interested in moving to any town in these counties and plant your own roots? Who better to help you than someone that has been in the area for 45 years?&nbsp; As a Realtor, my first priority is to ensure my clients are happy. I listen to my clients needs to achieve the best outcome in every transaction and I strive to ensure that the home buying or selling process is fun, easy and stress-free. My past top producer awards proves my devotion to my clients is top notch. My specialties include: Buyers Agent, Listing Agent, CMA/Home Values, First Time Home Buyers, Relocation and VA Specialist. I am an honest and caring person with a strong passion for real estate, my family and all animals....especially horses. When I am not assisting my clients, I enjoy spending time with my husband, two teenage boys and dogs on the water and racetrack or finding peace in a barn!\"</p>\n<!-- /wp:paragraph -->','Kim Sadler','','publish','closed','closed','','kim-sadler','','','2020-09-19 19:11:42','2020-09-19 19:11:42','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=744',88,'houzez_agent','',0),(747,1,'2020-07-24 20:40:03','2020-07-24 20:40:03','','46D6A567-550F-4552-9EC3-30E04A3317B5','','inherit','open','closed','','46d6a567-550f-4552-9ec3-30e04a3317b5','','','2020-07-24 20:40:03','2020-07-24 20:40:03','',744,'https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg',0,'attachment','image/jpeg',0),(753,1,'2020-09-19 18:31:17','2020-09-19 18:31:17','','zzLantern Offices','','publish','closed','closed','','zzlantern-offices-2','','','2020-10-19 00:49:24','2020-10-19 00:49:24','',0,'https://lantern-realty.com/?page_id=753',0,'page','',0),(755,1,'2020-09-19 18:31:54','2020-09-19 18:31:54','','Default Kit','','publish','closed','closed','','default-kit','','','2020-09-19 18:31:54','2020-09-19 18:31:54','',0,'https://lantern-realty.com/?elementor_library=default-kit',0,'elementor_library','',0),(757,1,'2020-09-19 18:43:32','2020-09-19 18:43:32','','Lantern - Salisbury','','publish','closed','closed','','lantern-salisbury','','','2020-09-19 18:43:34','2020-09-19 18:43:34','',0,'https://lantern-realty.com/?post_type=houzez_agency&#038;p=757',0,'houzez_agency','',0),(758,1,'2020-09-19 18:47:59','2020-09-19 18:47:59','','Lantern - Harrisburg','','publish','closed','closed','','lantern-harrisburg','','','2022-02-18 03:13:33','2022-02-18 03:13:33','',0,'https://lantern-realty.com/?post_type=houzez_agency&#038;p=758',0,'houzez_agency','',0),(759,1,'2020-09-19 18:50:52','2020-09-19 18:50:52','<!-- wp:paragraph {\"hasCustomCSS\":true} -->\n<p>Lantern Realty and Development LLC Albemarle is made of of local agents who have been in the Real Estate business for years. We are made up of the familiar faces you are used to seeing around town, but have joined together to open an innovative Real Estate company that has a unique mission to treat our customers better with great customer service and allowing each agent to take control of their business. We all look forward to growing our business here in Albemarle, serving the surrounding counties and beyond and showing our community that we are here for them and serve their needs.</p>\n<!-- /wp:paragraph -->','Lantern - Albemarle','','publish','closed','closed','','lantern-albemarle','','','2022-02-18 03:14:21','2022-02-18 03:14:21','',0,'https://lantern-realty.com/?post_type=houzez_agency&#038;p=759',0,'houzez_agency','',0),(760,1,'2020-09-19 18:53:16','2020-09-19 18:53:16','','Lantern - Mooresville','','publish','closed','closed','','lantern-mooresville','','','2020-11-11 01:55:43','2020-11-11 01:55:43','',0,'https://lantern-realty.com/?post_type=houzez_agency&#038;p=760',0,'houzez_agency','',0),(1312,1,'2020-10-19 01:01:18','2020-10-19 01:01:18','<h2>Lantern Realty  - Salisbury Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Salisbury Office\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Salisbury/815190\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Salisbury Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Salisbury','','inherit','closed','closed','','1302-revision-v1','','','2020-10-19 01:01:18','2020-10-19 01:01:18','',1302,'https://lantern-realty.com/1302-revision-v1/',0,'revision','',0),(1314,1,'2020-10-19 01:04:04','2020-10-19 01:04:04','<h2>Lantern Realty  - Harrisburg Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Square\">\n							<img width=\"300\" height=\"345\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Harrisburg Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thanks for checking out my profile! My name is Meredith Christy and the three...	\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...	\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"><strong>Lisa Pricher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Harrisburg','','inherit','closed','closed','','1305-revision-v1','','','2020-10-19 01:04:04','2020-10-19 01:04:04','',1305,'https://lantern-realty.com/1305-revision-v1/',0,'revision','',0),(1313,1,'2020-10-19 01:03:47','2020-10-19 01:03:47','<h2>Lantern Realty  - Harrisburg Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Square\">\n							<img width=\"300\" height=\"345\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Harrisburg','','inherit','closed','closed','','1305-revision-v1','','','2020-10-19 01:03:47','2020-10-19 01:03:47','',1305,'https://lantern-realty.com/1305-revision-v1/',0,'revision','',0),(1296,1,'2020-10-19 00:33:37','2020-10-19 00:33:37','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:33:37','2020-10-19 00:33:37','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1297,1,'2020-10-19 00:40:23','2020-10-19 00:40:23','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:40:23','2020-10-19 00:40:23','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1298,1,'2020-10-19 00:43:03','2020-10-19 00:43:03','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:43:03','2020-10-19 00:43:03','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1299,1,'2020-10-19 00:47:10','2020-10-19 00:47:10','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:47:10','2020-10-19 00:47:10','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1300,1,'2020-10-19 00:49:24','2020-10-19 00:49:24','','zzLantern Offices','','inherit','closed','closed','','753-revision-v1','','','2020-10-19 00:49:24','2020-10-19 00:49:24','',753,'https://lantern-realty.com/753-revision-v1/',0,'revision','',0),(1301,1,'2021-06-24 11:31:26','2020-10-19 00:50:46',' ','','','publish','closed','closed','','1301','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=1301',33,'nav_menu_item','',0),(1291,1,'2020-10-19 00:24:33','2020-10-19 00:24:33','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-harrisburg/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-mooresville/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:24:33','2020-10-19 00:24:33','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1294,1,'2020-10-19 00:32:31','2020-10-19 00:32:31','','Lantern Square','','inherit','','closed','','lantern-square','','','2020-10-19 00:32:31','2020-10-19 00:32:31','',1279,'https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png',0,'attachment','image/png',0),(1295,1,'2020-10-19 00:33:03','2020-10-19 00:33:03','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:33:03','2020-10-19 00:33:03','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1281,1,'2020-10-19 00:08:33','2020-10-19 00:08:33','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2>Lantern Kannapolis</h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:08:33','2020-10-19 00:08:33','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1286,1,'2020-10-19 00:17:40','2020-10-19 00:17:40','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2>Lantern Kannapolis</h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:17:40','2020-10-19 00:17:40','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1287,1,'2020-10-19 00:18:15','2020-10-19 00:18:15','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2>Lantern Kannapolis</h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:18:15','2020-10-19 00:18:15','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1288,1,'2020-10-19 00:21:29','2020-10-19 00:21:29','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:21:29','2020-10-19 00:21:29','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1289,1,'2020-10-19 00:22:31','2020-10-19 00:22:31','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:22:31','2020-10-19 00:22:31','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1292,1,'2020-10-19 00:26:10','2020-10-19 00:26:10','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-harrisburg/\">\n							<img width=\"100\" height=\"101\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg\" alt=\"\" loading=\"lazy\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-mooresville/\">\n							<img width=\"100\" height=\"101\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg\" alt=\"\" loading=\"lazy\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:26:10','2020-10-19 00:26:10','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1290,1,'2020-10-19 00:23:08','2020-10-19 00:23:08','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:23:08','2020-10-19 00:23:08','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1280,1,'2020-10-19 00:03:42','2020-10-19 00:03:42','<h2>Lantern Realty  - Kannapolis Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										119 West Avenue, Kannapolis, NC 28081</li>\n 	<li>\n					<a href=\"tel:7042980087\">\n(704) 298-0087\n</a></li>\n 	<li>\n					<a href=\"mailto:contact@lantern-realty.com\">\ncontact@lantern-realty.com\n</a></li>\n</ul>\n<a href=\"tel:7042980087\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:7042980087\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Kannapolis Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBrenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a resident of Cabarrus County for almost 30 years and absolutely...\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Concord area since 2003, and have enjoyed watching our...\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCourtney is a native North Carolinian and long time resident of Kannapolis. She is...\n<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...\n<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAshley Hines a real estate professional, she recognizes and values the trust her clients...\n<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHelping folks find a home that fits their needs, or helping someone sell a...\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWelcome to Lantern Realty and Development!&nbsp; I have been an active member of the...\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Kimberly Trask and I have lived in Cabarrus County since 2013....\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a local having grown up in Concord leaving only for a 20-year...\n<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:03:42','2020-10-19 00:03:42','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1276,1,'2020-10-19 00:00:03','2020-10-19 00:00:03','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"#\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-19 00:00:03','2020-10-19 00:00:03','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1277,1,'2020-10-19 00:01:35','2020-10-19 00:01:35','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-19 00:01:35','2020-10-19 00:01:35','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1279,1,'2020-10-19 00:03:42','2020-10-19 00:03:42','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n			<h3><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Main Office</a></h3>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethton, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','publish','closed','closed','','lantern-offices','','','2022-05-26 00:56:16','2022-05-26 00:56:16','',0,'https://lantern-realty.com/?page_id=1279',0,'page','',0),(2316,1,'2022-02-18 03:17:10','2022-02-18 03:17:10','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-02-18 03:17:10','2022-02-18 03:17:10','',1279,'https://lantern-realty.com/?p=2316',0,'revision','',0),(1285,1,'2020-10-19 00:16:53','2020-10-19 00:16:53','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2>Lantern Kannapolis</h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:16:53','2020-10-19 00:16:53','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1282,1,'2020-10-19 00:11:39','2020-10-19 00:11:39','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2>Lantern Kannapolis</h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2>Lantern Kannapolis</h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:11:39','2020-10-19 00:11:39','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1284,1,'2020-10-19 00:15:04','2020-10-19 00:15:04','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2>Lantern Kannapolis</h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2>Lantern Kannapolis</h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:15:04','2020-10-19 00:15:04','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1283,1,'2020-10-19 00:14:10','2020-10-19 00:14:10','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<a href=\"#\" role=\"button\">\n						View Profile\n					</a>\n			<h2>Lantern Kannapolis</h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2>Lantern Kannapolis</h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2020-10-19 00:14:10','2020-10-19 00:14:10','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(781,1,'2020-09-20 13:56:36','2020-09-20 13:56:36','','Sabine Amoakon','','publish','closed','closed','','sabine-amoakon','','','2020-09-20 13:56:38','2020-09-20 13:56:38','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=781',6,'houzez_agent','',0),(782,1,'2020-09-20 13:55:28','2020-09-20 13:55:28','','Sabine_Amoakon','','inherit','open','closed','','sabine_amoakon','','','2020-09-20 13:55:28','2020-09-20 13:55:28','',781,'https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon.jpg',0,'attachment','image/jpeg',0),(1275,1,'2020-10-18 23:53:07','2020-10-18 23:53:07','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"#\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:53:07','2020-10-18 23:53:07','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(785,1,'2020-09-20 14:02:09','2020-09-20 14:02:09','','Cheryl Baxter','','publish','closed','closed','','cheryl-baxter','','','2020-09-20 14:02:11','2020-09-20 14:02:11','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=785',9,'houzez_agent','',0),(786,1,'2020-09-20 14:02:01','2020-09-20 14:02:01','','Cheryl_Baxter','','inherit','open','closed','','cheryl_baxter','','','2020-09-20 14:02:01','2020-09-20 14:02:01','',785,'https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg',0,'attachment','image/jpeg',0),(788,1,'2020-09-20 14:05:27','2020-09-20 14:05:27','<!-- wp:paragraph -->\n<p>I have lived in the Cabarrus/Rowan area my whole life. My children were raised here, and attended school here. I say this to let you know that I have a great deal of knowledge about this area, and I believe I can help you with any of questions you may have about the area. I have seen it come from a mill village to becoming an up and growing very inviting city. My interest in real estate started in high school when I was in drafting class and first started designing house plans. My work career has been in customer service for more than 30 years. If there is any questions you may have about relocating to this area, or a new home, or maybe downsizing please give me a call, and I would love to help you anyway I can.</p>\n<!-- /wp:paragraph -->','Dale Bullock','','publish','closed','closed','','dale-bullock','','','2021-02-08 00:19:39','2021-02-08 00:19:39','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=788',18,'houzez_agent','',0),(789,1,'2020-09-20 14:05:17','2020-09-20 14:05:17','','Dale_Bullock','','inherit','open','closed','','dale_bullock','','','2020-09-20 14:05:17','2020-09-20 14:05:17','',788,'https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock.jpg',0,'attachment','image/jpeg',0),(791,1,'2020-09-20 14:09:18','2020-09-20 14:09:18','<!-- wp:paragraph -->\n<p>I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is now my forever home. Before transitioning into Real Estate, I helped lead a sales team of hundreds across the country to ultimately become one of the top producing teams in the company. My areas of expertise include marketing, customer service, and communications. I know what it takes to get a job done well and efficiently all while serving the client\'s needs in the utmost fashion. I am a graduate of the University of Alabama and my allegiance will always be to the Crimson Tide! My hobbies include being out on the lake, spending time with my family and rambunctious Labrador retriever, lunch dates with good friends, and traveling internationally to gain new perspective. Thank you!</p>\n<!-- /wp:paragraph -->','Emily Chandler','','publish','closed','closed','','emily-chandler','','','2020-09-20 14:09:48','2020-09-20 14:09:48','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=791',21,'houzez_agent','',0),(792,1,'2020-09-20 14:09:12','2020-09-20 14:09:12','','Emily_Chandler','','inherit','open','closed','','emily_chandler','','','2020-09-20 14:09:12','2020-09-20 14:09:12','',791,'https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler.jpg',0,'attachment','image/jpeg',0),(795,1,'2020-09-20 14:16:43','2020-09-20 14:16:43','<!-- wp:paragraph -->\n<p>Thanks for checking out my profile! My name is Meredith Christy and the three most important things in my life are God, Family and Real Estate. Having always been in customer service industries, I finally found my forever career as a realtor. Real Estate is my passion, clients become family, and honestly I couldn\'t imagine doing anything else. In my off time, I enjoy volunteering at the food pantry, being spontaneous with my husband, Alex, and watching my children play, learn and grow. Feel free to reach out so we can discuss all of your real estate needs, or just to conversate! :-)</p>\n<!-- /wp:paragraph -->','Meredith Christy','','draft','closed','closed','','meredith-christy','','','2021-11-22 00:35:21','2021-11-22 00:35:21','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=795',22,'houzez_agent','',0),(796,1,'2020-09-20 14:16:24','2020-09-20 14:16:24','','Meredith_Christy','','inherit','open','closed','','meredith_christy','','','2020-09-20 14:16:24','2020-09-20 14:16:24','',795,'https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy.png',0,'attachment','image/png',0),(798,1,'2020-09-20 14:20:38','2020-09-20 14:20:38','<!-- wp:paragraph -->\n<p>Whether you\'re a first-time home buyer in search of your dream home, a seller looking to downsize or an investor looking for a great opportunity, working with a dedicated real estate professional can make all the difference.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I deliver unmatched customer service, and my genuine desire to see your property goals come true makes me the go-to resource for all your real estate needs. For sellers, I take full advantage of&nbsp; marketing tools to ensure that your property is broadly promoted on a variety of channels, including major real estate websites, and my negotiation skills are second to none. For buyers, I effectively analyze the local market and target trends to help you find the perfect home at the right price.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you\'re looking for a positive, helpful partner who is ready to provide you with exceptional service, let\'s talk today!</p>\n<!-- /wp:paragraph -->','Tracie Clark','','publish','closed','closed','','tracie-clark','','','2020-09-20 14:20:40','2020-09-20 14:20:40','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=798',23,'houzez_agent','',0),(799,1,'2020-09-20 14:20:11','2020-09-20 14:20:11','','Tracie_Clark','','inherit','open','closed','','tracie_clark','','','2020-09-20 14:20:11','2020-09-20 14:20:11','',798,'https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark.jpg',0,'attachment','image/jpeg',0),(801,1,'2020-09-20 14:24:01','2020-09-20 14:24:01','','Michael Davis','','publish','closed','closed','','michael-davis','','','2020-09-20 14:24:03','2020-09-20 14:24:03','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=801',29,'houzez_agent','',0),(803,1,'2020-09-20 14:26:27','2020-09-20 14:26:27','','Kim Drakulich','','trash','closed','closed','','__trashed-2','','','2020-09-20 14:26:34','2020-09-20 14:26:34','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=803',31,'houzez_agent','',0),(805,1,'2020-09-20 14:30:44','2020-09-20 14:30:44','','Australia Dunphy','','publish','closed','closed','','australia-dunphy','','','2020-09-20 14:30:49','2020-09-20 14:30:49','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=805',32,'houzez_agent','',0),(806,1,'2020-09-20 14:30:34','2020-09-20 14:30:34','','China_Dunphy','','inherit','open','closed','','china_dunphy','','','2020-09-20 14:30:34','2020-09-20 14:30:34','',805,'https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy.jpg',0,'attachment','image/jpeg',0),(808,1,'2020-09-20 14:33:58','2020-09-20 14:33:58','','Ivonne Erion','','publish','closed','closed','','ivonne-erion','','','2020-09-20 14:34:02','2020-09-20 14:34:02','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=808',33,'houzez_agent','',0),(809,1,'2020-09-20 14:33:49','2020-09-20 14:33:49','','Ivonne_Erion','','inherit','open','closed','','ivonne_erion','','','2020-09-20 14:33:49','2020-09-20 14:33:49','',808,'https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion.jpg',0,'attachment','image/jpeg',0),(811,1,'2020-09-20 14:38:07','2020-09-20 14:38:07','','Jeff Franklin','','draft','closed','closed','','jeff-franklin','','','2022-02-18 01:33:16','2022-02-18 01:33:16','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=811',36,'houzez_agent','',0),(812,1,'2020-09-20 14:37:56','2020-09-20 14:37:56','','Jeff_Franklin','','inherit','open','closed','','jeff_franklin','','','2020-09-20 14:37:56','2020-09-20 14:37:56','',811,'https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg',0,'attachment','image/jpeg',0),(814,1,'2020-09-20 14:41:19','2020-09-20 14:41:19','','Conard Haywood','','publish','closed','closed','','conard-haywood','','','2020-09-20 14:41:21','2020-09-20 14:41:21','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=814',45,'houzez_agent','',0),(816,1,'2020-09-20 14:46:31','2020-09-20 14:46:31','','Donna Hiner','','publish','closed','closed','','donna-hiner','','','2020-09-20 14:46:33','2020-09-20 14:46:33','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=816',52,'houzez_agent','',0),(817,1,'2020-09-20 14:46:22','2020-09-20 14:46:22','','Donna_Hiner','','inherit','open','closed','','donna_hiner','','','2020-09-20 14:46:22','2020-09-20 14:46:22','',816,'https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner.jpg',0,'attachment','image/jpeg',0),(819,1,'2020-09-20 14:49:45','2020-09-20 14:49:45','','Priscilla Johnson','','draft','closed','closed','','priscilla-johnson','','','2022-02-18 01:32:29','2022-02-18 01:32:29','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=819',57,'houzez_agent','',0),(820,1,'2020-09-20 14:49:36','2020-09-20 14:49:36','','Priscilla_Johnson','','inherit','open','closed','','priscilla_johnson','','','2020-09-20 14:49:36','2020-09-20 14:49:36','',819,'https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson.png',0,'attachment','image/png',0),(822,1,'2020-09-20 14:53:06','2020-09-20 14:53:06','','Cheyenne Kidd','','publish','closed','closed','','cheyenne-kidd','','','2020-09-20 14:53:08','2020-09-20 14:53:08','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=822',62,'houzez_agent','',0),(823,1,'2020-09-20 14:53:00','2020-09-20 14:53:00','','Cheyenne_Kidd','','inherit','open','closed','','cheyenne_kidd','','','2020-09-20 14:53:00','2020-09-20 14:53:00','',822,'https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd.jpg',0,'attachment','image/jpeg',0),(825,1,'2020-09-20 14:56:50','2020-09-20 14:56:50','<!-- wp:paragraph -->\n<p><em>Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the Concord, NC community for six years, and I am turning my focus toward real estate.</em><em> </em><em>With a passion for customer service, I am ready to help with your home buying and selling needs. My core values are hard work, integrity, and outstanding client service! I will balance and leverage my knowledge of the community and personal experience to exceed your expectations.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>After many years and much snow in the Midwest, I relocated to North Carolina.&nbsp; I graduated from Purdue University and Butler University. My customer service career began in retail management, led to student and industry outreach at Purdue University, and presently real estate.&nbsp; &nbsp;</em><em>I live in Concord with my husband. &nbsp;I enjoy</em><em> working for The Carolina Waterfowl Rescue as one of their rescue hotline volunteers, spending time with my family, and exploring all the state of North Carolina has to offer. </em><em></em></p>\n<!-- /wp:paragraph -->','Dawn Lamb','','publish','closed','closed','','dawn-lamb','','','2020-09-20 14:56:53','2020-09-20 14:56:53','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=825',64,'houzez_agent','',0),(826,1,'2020-09-20 14:56:37','2020-09-20 14:56:37','','Dawn_Lamb','','inherit','open','closed','','dawn_lamb','','','2020-09-20 14:56:37','2020-09-20 14:56:37','',825,'https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb.jpg',0,'attachment','image/jpeg',0),(828,1,'2020-09-20 15:02:59','2020-09-20 15:02:59','','Connie Merrell','','publish','closed','closed','','connie-merrell','','','2020-09-20 15:03:02','2020-09-20 15:03:02','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=828',70,'houzez_agent','',0),(829,1,'2020-09-20 15:02:49','2020-09-20 15:02:49','','Connie_Merrell','','inherit','open','closed','','connie_merrell','','','2020-09-20 15:02:49','2020-09-20 15:02:49','',828,'https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell.jpg',0,'attachment','image/jpeg',0),(831,1,'2020-09-20 15:06:16','2020-09-20 15:06:16','','Rachel Monrad','','publish','closed','closed','','rachel-monrad','','','2020-09-20 15:06:19','2020-09-20 15:06:19','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=831',73,'houzez_agent','',0),(832,1,'2020-09-20 15:06:10','2020-09-20 15:06:10','','Rachel_Monrad','','inherit','open','closed','','rachel_monrad','','','2020-09-20 15:06:10','2020-09-20 15:06:10','',831,'https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad.jpg',0,'attachment','image/jpeg',0),(834,1,'2020-09-20 15:09:57','2020-09-20 15:09:57','<!-- wp:paragraph -->\n<p>I have over twenty years experience in New home construction and Real estate sales. My experience in construction can prove very helpful while you try to make a decision to purchase a home. Can evaluate the quality of a house and point out areas of concern before you make the offer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Can also build you a new house if desired on your lot or a lot we can acquire for you. I built Houses in Woodfield, Crescent, Forest Glen, Country Club Hills,The Country Club, Forest Glen, The Reserve, Pinehurst, Blowing Rock, Charlotte and others.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let experience work for you.</p>\n<!-- /wp:paragraph -->','Rodney Queen','','publish','closed','closed','','rodney-queen','','','2020-09-20 15:10:00','2020-09-20 15:10:00','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=834',81,'houzez_agent','',0),(836,1,'2020-09-20 15:14:16','2020-09-20 15:14:16','','Kelly Robinson','','publish','closed','closed','','kelly-robinson','','','2020-09-20 15:14:22','2020-09-20 15:14:22','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=836',84,'houzez_agent','',0),(837,1,'2020-09-20 15:14:02','2020-09-20 15:14:02','','Kelly_Robinson','','inherit','open','closed','','kelly_robinson','','','2020-09-20 15:14:02','2020-09-20 15:14:02','',836,'https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson.jpg',0,'attachment','image/jpeg',0),(839,1,'2020-09-20 15:17:34','2020-09-20 15:17:34','','Hayley Rogers','','publish','closed','closed','','hayley-rogers','','','2020-09-20 15:17:38','2020-09-20 15:17:38','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=839',85,'houzez_agent','',0),(840,1,'2020-09-20 15:17:02','2020-09-20 15:17:02','','Hayley_Rogers','','inherit','open','closed','','hayley_rogers','','','2020-09-20 15:17:02','2020-09-20 15:17:02','',839,'https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers.jpg',0,'attachment','image/jpeg',0),(842,1,'2020-09-20 15:20:22','2020-09-20 15:20:22','','Sarah Romesburg','','publish','closed','closed','','sarah-romesburg','','','2020-09-20 15:20:24','2020-09-20 15:20:24','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=842',86,'houzez_agent','',0),(843,1,'2020-09-20 15:20:14','2020-09-20 15:20:14','','Sarah_Romesburg','','inherit','open','closed','','sarah_romesburg','','','2020-09-20 15:20:14','2020-09-20 15:20:14','',842,'https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg.jpg',0,'attachment','image/jpeg',0),(845,1,'2020-09-20 15:23:14','2020-09-20 15:23:14','','Chelsi Sherin','','publish','closed','closed','','chelsi-sherin','','','2020-09-20 15:23:16','2020-09-20 15:23:16','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=845',91,'houzez_agent','',0),(846,1,'2020-09-20 15:22:50','2020-09-20 15:22:50','','Chelsi_Sherin','','inherit','open','closed','','chelsi_sherin','','','2020-09-20 15:22:50','2020-09-20 15:22:50','',845,'https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin.jpg',0,'attachment','image/jpeg',0),(848,1,'2020-09-20 15:25:40','2020-09-20 15:25:40','<!-- wp:paragraph -->\n<p>Hi! Thank you for taking the time to see a little about me and what I am all about! I was born and raised in China Grove and has many family connections in Cabarrus and Rowan. A graduate of Catawba College, I have worked in customer service, the financial industry, and now a licensed Realtor® for over a year. I have gained a lot of experience in my first year helping buyers, sellers, and investors throughout the region. I have really enjoyed my time working for and with my clients, getting them the best out of their real estate journey! I would love to add you to my list of clients! Thanks</p>\n<!-- /wp:paragraph -->','Holden Sides','','publish','closed','closed','','holden-sides','','','2022-02-18 03:08:12','2022-02-18 03:08:12','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=848',92,'houzez_agent','',0),(851,1,'2020-09-20 15:28:09','2020-09-20 15:28:09','','Ellen_Thomas','','inherit','open','closed','','ellen_thomas','','','2020-09-20 15:28:09','2020-09-20 15:28:09','',0,'https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas.jpg',0,'attachment','image/jpeg',0),(853,1,'2020-09-20 15:31:08','2020-09-20 15:31:08','<!-- wp:paragraph -->\n<p>Richard, originally from Florida, has made North Carolina his permanent home. However, he is no stranger to the area. He and his family have owned property, farmed land and have had business interest in NC for over 100 years. He began his career in real estate 19 years ago and has been recognized as an expert in the industry. His prior experience, as a financial<br>consultant, helped him develop exceptional analytical techniques, an in depth knowledge of financial matters, strong negotiation skills and professionalism that have proven invaluable to his clients. Besides being a Realtor, he still maintains his Chartered Financial Consultant designation, as well as holding a degree in Marketing. This education, training and<br>background supports his mission to provide the higest level of servce, and to exceed expectations. His purpose is to help others find that place called home. For Richard, real estate is more than a job. It\'s his calling. Whether you are a buyer or seller, you can have faith in Richard to be a trusted expert adviser who focuses on your wants, needs and the fulfillment of your dreams.</p>\n<!-- /wp:paragraph -->','Rick Wilson','','publish','closed','closed','','rick-wilson','','','2021-02-18 14:26:02','2021-02-18 14:26:02','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=853',104,'houzez_agent','',0),(1302,1,'2020-10-19 00:52:09','2020-10-19 00:52:09','<h2>Lantern Realty  - Salisbury Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Salisbury Office\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Salisbury/815190\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Salisbury Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Salisbury','','publish','closed','closed','','lantern-salisbury','','','2020-10-19 01:01:18','2020-10-19 01:01:18','',1279,'https://lantern-realty.com/?page_id=1302',0,'page','',0),(1273,1,'2020-10-18 23:51:39','2020-10-18 23:51:39','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n				<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">Local Market Report</a>\n				</h3>\n            <a href=\"#\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:51:39','2020-10-18 23:51:39','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1272,1,'2020-10-18 23:47:45','2020-10-18 23:47:45','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n				<a href=\"https://lantern-realty.com/valuation-form/\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/valuation-form/\">Free Valuation Request</a>\n				</h3>\n            <a href=\"#\" data-text=\"Go!\">\n                    Contact an Agent\n            </a>\n				<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">Local Market Report</a>\n				</h3>\n            <a href=\"#\" data-text=\"Go!\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:47:45','2020-10-18 23:47:45','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1269,1,'2020-10-18 23:42:46','2020-10-18 23:42:46','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n				<a href=\"https://lantern-realty.com/valuation-form/\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/valuation-form/\">Free Valuation Request</a>\n				</h3>\n				<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">Local Market Report</a>\n				</h3>\n            <a href=\"#\" data-text=\"Go!\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:42:46','2020-10-18 23:42:46','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1274,1,'2020-10-18 23:51:44','2020-10-18 23:51:44','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"#\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:51:44','2020-10-18 23:51:44','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1270,1,'2020-10-18 23:45:24','2020-10-18 23:45:24','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"\">\n                    Valuation Request\n            </a>\n				<a href=\"https://lantern-realty.com/valuation-form/\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/valuation-form/\">Free Valuation Request</a>\n				</h3>\n            <a href=\"#\" data-text=\"Go!\">\n                    Contact an Agent\n            </a>\n				<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">Local Market Report</a>\n				</h3>\n            <a href=\"#\" data-text=\"Go!\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:45:24','2020-10-18 23:45:24','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1267,1,'2020-10-18 23:35:50','2020-10-18 23:35:50','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n				<a href=\"https://lantern-realty.com/valuation-form/\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/valuation-form/\">Free Valuation Request</a>\n				</h3>\n				<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">Local Market Report</a>\n				</h3>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:35:50','2020-10-18 23:35:50','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1266,1,'2020-10-18 23:34:09','2020-10-18 23:34:09','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n				<a href=\"https://lantern-realty.com/valuation-form/\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/valuation-form/\">Free Valuation Request</a>\n				</h3>\n				<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">Local Market Report</a>\n				</h3>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:34:09','2020-10-18 23:34:09','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1260,1,'2020-10-18 23:22:14','2020-10-18 23:22:14','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:22:14','2020-10-18 23:22:14','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1052,0,'2020-10-12 14:13:02','2020-10-12 14:13:02','','Donna_Hawkins','','inherit','open','closed','','donna_hawkins-2','','','2020-10-12 14:13:02','2020-10-12 14:13:02','',0,'https://lantern-realty.com/donna_hawkins-2/',0,'attachment','image/jpeg',0),(916,1,'2020-10-11 17:04:28','2020-10-11 17:04:28','<h1>New Agent Registration</h1>		\n						Progress\n				Become a Lantern Agent\n									75%\n		<p>Welcome!</p><p>We\'re so excited that you\'ve decided to join the Lantern Team. Please take a few moments to fill out the form below. The information entered here will allow us to begin processing your information to join our office. Your info will also be sent to our web developer for inclusion on our website. Please respond to all fields and reach out if you have any questions about the form.</p><p>- The Lantern Team</p><h4 style=\"text-align: center;\"><strong>New Agent Information Sheet</strong></h4><p style=\"text-align: center;\">Please complete the form in it\'s entirety.</p>','New Agent Registration','','publish','closed','closed','','new-agent-registration','','','2020-10-12 13:34:10','2020-10-12 13:34:10','',882,'https://lantern-realty.com/?page_id=916',0,'page','',0),(878,1,'2020-10-10 18:21:51','2020-10-10 18:21:51','','CRM','','publish','closed','closed','','crm','','','2020-10-10 18:22:00','2020-10-10 18:22:00','',0,'https://lantern-realty.com/?page_id=878',0,'page','',0),(880,1,'2020-10-10 18:23:15','2020-10-10 18:23:15','','profile','','trash','closed','closed','','profile__trashed','','','2020-10-11 16:58:50','2020-10-11 16:58:50','',0,'https://lantern-realty.com/?page_id=880',0,'page','',0),(882,1,'2020-10-11 15:19:13','2020-10-11 15:19:13','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Training Links</strong>\n                                <!-- text-with-icon-title -->\n                                    Links to Lantern published training videos and materials.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-training-links/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>[calendar id=\"1235\"][calendar id=\"1241\"]','Team Portal','','publish','closed','closed','','team-portal','','','2021-04-14 00:48:03','2021-04-14 00:48:03','',101,'https://lantern-realty.com/?page_id=882',0,'page','',0),(1172,1,'2020-10-18 03:40:49','2020-10-18 03:40:49','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Team Announcements</h2>		\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 03:40:49','2020-10-18 03:40:49','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1169,1,'2020-10-18 03:36:27','2020-10-18 03:36:27','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Team Announcements</h2>		\n            <article data-id=\"1113\">\n            <header><h2><a\n                        href=\"https://lantern-realty.com/news-notes/\"\n                        title=\"News &amp; Notes\"\n                        rel=\"nofollow\"\n                        >News &amp; Notes</a></h2></header>\n                        <p>Good Morning All, here are a few notes for the upcoming week or so&#8230;. &#8211; Take a look at our website!&nbsp; Our developer has been&nbsp;working hard to get everything updated.&nbsp; Specifically take a look at &#8220;THe Lantern Team&#8221; tab.&nbsp; All agents should have updated info as of early this week.&nbsp;&nbsp; &nbsp; &nbsp;If you see something [&hellip;]</p><a\n                            href=\"https://lantern-realty.com/news-notes/\"\n                            rel=\"nofollow\"\n                            >Read More</a>\n                    <a href=\"https://lantern-realty.com/author/ch2realtygmail-com/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1473214242be6fc8fee6ee6f0add5fa8?s=96&#038;d=mm&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1473214242be6fc8fee6ee6f0add5fa8?s=192&#038;d=mm&#038;r=g 2x\' class=\'avatar avatar-96 photo\' height=\'96\' width=\'96\' loading=\'lazy\'/></a><a href=\"https://lantern-realty.com/author/ch2realtygmail-com/\" title=\"Posts by Chris Puckett\" rel=\"author\">Chris Puckett</a><time datetime=\"September 26, 2020\">September 26, 2020</time>\n    </article>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 03:36:27','2020-10-18 03:36:27','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1170,1,'2020-10-18 03:38:35','2020-10-18 03:38:35','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Team Announcements</h2>		\n            <article data-id=\"1113\">\n            <header><h2><a\n                        href=\"https://lantern-realty.com/news-notes/\"\n                        title=\"News &amp; Notes\"\n                        rel=\"nofollow\"\n                        >News &amp; Notes</a></h2></header>\n                        <p>Good Morning All, here are a few notes for the upcoming week or so&#8230;. &#8211; Take a look at our website!&nbsp; Our developer has been&nbsp;working hard to get everything updated.&nbsp; Specifically take a look at &#8220;THe Lantern Team&#8221; tab.&nbsp; All agents should have updated info as of early this week.&nbsp;&nbsp; &nbsp; &nbsp;If you see something [&hellip;]</p><a\n                            href=\"https://lantern-realty.com/news-notes/\"\n                            rel=\"nofollow\"\n                            >Read More</a>\n                    <a href=\"https://lantern-realty.com/author/ch2realtygmail-com/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1473214242be6fc8fee6ee6f0add5fa8?s=96&#038;d=mm&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1473214242be6fc8fee6ee6f0add5fa8?s=192&#038;d=mm&#038;r=g 2x\' class=\'avatar avatar-96 photo\' height=\'96\' width=\'96\' loading=\'lazy\'/></a><a href=\"https://lantern-realty.com/author/ch2realtygmail-com/\" title=\"Posts by Chris Puckett\" rel=\"author\">Chris Puckett</a><time datetime=\"September 26, 2020\">September 26, 2020</time>\n    </article>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 03:38:35','2020-10-18 03:38:35','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1171,1,'2020-10-18 03:40:06','2020-10-18 03:40:06','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Team Announcements</h2>		\n            <article data-id=\"1113\">\n            <header><h2><a\n                        href=\"https://lantern-realty.com/news-notes/\"\n                        title=\"News &amp; Notes\"\n                        rel=\"nofollow\"\n                        >News &amp; Notes</a></h2></header>\n                        <p>Good Morning All, here are a few notes for the upcoming week or so&#8230;. &#8211; Take a look at our website!&nbsp; Our developer has been&nbsp;working hard to get everything updated.&nbsp; Specifically take a look at &#8220;THe Lantern Team&#8221; tab.&nbsp; All agents should have updated info as of early this week.&nbsp;&nbsp; &nbsp; &nbsp;If you see something [&hellip;]</p><a\n                            href=\"https://lantern-realty.com/news-notes/\"\n                            rel=\"nofollow\"\n                            >Read More</a>\n                    <a href=\"https://lantern-realty.com/author/ch2realtygmail-com/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1473214242be6fc8fee6ee6f0add5fa8?s=96&#038;d=mm&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1473214242be6fc8fee6ee6f0add5fa8?s=192&#038;d=mm&#038;r=g 2x\' class=\'avatar avatar-96 photo\' height=\'96\' width=\'96\' loading=\'lazy\'/></a><a href=\"https://lantern-realty.com/author/ch2realtygmail-com/\" title=\"Posts by Chris Puckett\" rel=\"author\">Chris Puckett</a><time datetime=\"September 26, 2020\">September 26, 2020</time>\n    </article>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 03:40:06','2020-10-18 03:40:06','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1173,1,'2020-10-18 03:42:12','2020-10-18 03:42:12','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">The latest team announcement. Check out the announcements page for a full archive.</p>		\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 03:42:12','2020-10-18 03:42:12','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1174,1,'2020-10-18 03:43:02','2020-10-18 03:43:02','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">The latest team announcement. Check out the announcements page for a full archive.</p>		\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 03:43:02','2020-10-18 03:43:02','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1175,1,'2020-10-18 15:09:21','2020-10-18 15:09:21','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\" datatables_page_length=\"150\"]','Lantern Directory','','publish','closed','closed','','lantern-directory','','','2021-06-09 01:26:35','2021-06-09 01:26:35','',882,'https://lantern-realty.com/?page_id=1175',0,'page','',0),(1176,1,'2020-10-18 15:09:21','2020-10-18 15:09:21','','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:09:21','2020-10-18 15:09:21','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1178,1,'2020-10-18 15:13:45','2020-10-18 15:13:45','<h1>Lantern Directory</h1>','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:13:45','2020-10-18 15:13:45','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1179,1,'2020-10-18 15:16:11','2020-10-18 15:16:11','<h1>Lantern Directory</h1>','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:16:11','2020-10-18 15:16:11','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1180,1,'2020-10-18 15:16:44','2020-10-18 15:16:44','<h1>Lantern Directory</h1>','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:16:44','2020-10-18 15:16:44','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1181,1,'2020-10-18 15:17:10','2020-10-18 15:17:10','<h1>Lantern Directory</h1>','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:17:10','2020-10-18 15:17:10','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1182,1,'2020-10-18 15:26:51','2020-10-18 15:26:51','<h1>Lantern Directory</h1>','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:26:51','2020-10-18 15:26:51','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1183,1,'2020-10-18 15:30:31','2020-10-18 15:30:31','','Test','','publish','closed','closed','','test','','','2020-10-18 15:30:31','2020-10-18 15:30:31','',0,'https://lantern-realty.com/ninja-table/test/',0,'ninja-table','',0),(1184,1,'2020-10-18 15:36:35','2020-10-18 15:36:35','<h1>Lantern Directory</h1>','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:36:35','2020-10-18 15:36:35','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1185,1,'2020-10-18 15:37:32','2020-10-18 15:37:32','<h1>Lantern Directory</h1>','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:37:32','2020-10-18 15:37:32','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1186,1,'2020-10-18 15:44:53','2020-10-18 15:44:53','','Edit posts','','publish','closed','closed','','edit-posts','','','2020-10-18 15:45:15','2020-10-18 15:45:15','',0,'https://lantern-realty.com/?vgse_editors=edit-posts',0,'vgse_editors','',0),(1188,1,'2020-10-18 15:48:10','2020-10-18 15:48:10','<h1>Lantern Directory</h1>','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:48:10','2020-10-18 15:48:10','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1187,1,'2020-10-18 15:46:13','2020-10-18 15:46:13','<h1>Lantern Directory</h1>		\n		[vg_sheet_editor editor_id=\"1186\"]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:46:13','2020-10-18 15:46:13','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1189,1,'2020-10-18 15:57:35','2020-10-18 15:57:35','<h1>Lantern Directory</h1>','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:57:35','2020-10-18 15:57:35','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1190,1,'2020-10-18 15:59:02','2020-10-18 15:59:02','<h1>Lantern Directory</h1>','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 15:59:02','2020-10-18 15:59:02','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1191,1,'2020-10-18 16:00:45','2020-10-18 16:00:45','<h1>Lantern Directory</h1>','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 16:00:45','2020-10-18 16:00:45','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1201,1,'2020-10-18 16:55:24','2020-10-18 16:55:24','<h1>Lantern Directory</h1>		\n		[table id=team /]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 16:55:24','2020-10-18 16:55:24','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1202,1,'2020-10-18 16:56:38','2020-10-18 16:56:38','[[\"Last Name\",\"First Name\",\"Phone\",\"Email\",\"Home Office\",\"Team Role\",\"License #\",\"MLS ID\"],[\"Aldridge\",\"Jeremy\",\"704-773-0722\",\"kadaendeavorenterprises@gmail.com\",\"Kannapolis\",\"Broker\",\"306776\",\"68707\"],[\"Allison\",\"Sheila\",\"828-712-7843\",\"sheila.allison10@gmail.com\",\"Albemarle\",\"Broker\",\"307918\",\"69499\"],[\"Amoakon\",\"Sabine\",\"704-433-8462\",\"sab1.homes@outlook.com\",\"Kannapolis\",\"Broker\",\"316331\",\"78139\"],[\"Arledge\",\"Shelly\",\"980-258-3583\",\"arledgeshelly1@gmail.com\",\"Kannapolis\",\"Broker\",\"309820\",\"71848\"],[\"Barber\",\"Casey\",\"678-516-5196\",\"casey.m.barber@gmail.com\",\"Kannapolis\",\"Broker\",\"309318\",\"71136\"],[\"Baxter\",\"Cheryl\",\"704-796-8843\",\"cmbaxter2@gmail.com\",\"Kannapolis\",\"Broker\",\"298432\",\"61673\"],[\"Bendig\",\"Robbie\",\"704-640-4171\",\"rbendig89@gmail.com\",\"Salisbury\",\"Broker\",\"303589\",\"65910\"],[\"Benton\",\"Toni\",\"980-521-2696\",\"tbenton81@gmail.com\",\"Kannapolis\",\"Broker\",\"310611\",\"72825\"],[\"Bird\",\"April\",\"901-569-3161\",\"abirdhomes@gmail.com\",\"Kannapolis\",\"Broker\",\"301315\",\"63368\"],[\"Boger\",\"Annie\",\"980-521-3988\",\"Annie.homes4u@gmail.com\",\"Kannapolis\",\"Broker\",\"291550\",\"50846\"],[\"Brown\",\"Elizabeth\",\"704-421-0317\",\"elizabethbrownrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"302094\",\"62799\"],[\"Brown\",\"Brenda\",\"704-796-1948\",\"seniors2@twc.com\",\"Kannapolis\",\"Broker\",\"302340\",\"70430\"],[\"Bullock\",\"Dale\",\"704-791-5457\",\"dale.bullock2014realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"280284\",\"34573\"],[\"Cauble\",\"Crystal\",\"980-521-8431\",\"crystalcauble27@gmail.com\",\"Kannapolis\",\"Broker\",\"297260\",\"60165\"],[\"Caudill\",\"Evonne\",\"704-791-7012\",\"ecaudill12@gmail.com\",\"Kannapolis\",\"Broker\",\"242767\",\"52756\"],[\"Chandler\",\"Emily\",\"615-397-1925\",\"emilychandler.realtor@gmail.com\",\"Harrisburg\",\"Broker\",\"297265\",\"60204\"],[\"Christy\",\"Meredith\",\"980-248-4097\",\"meredith@meredithchristy.com\",\"Harrisburg\",\"Broker\",\"298605\",\"61273\"],[\"Clark\",\"Tracie\",\"704-900-4637\",\"tracieclarksells@gmail.com\",\"Harrisburg\",\"Broker\",\"238413\",\"29140\"],[\"Clodfelter\",\"Jody\",\"704-438-2190\",\"jodyc1972@gmail.com\",\"Albemarle\",\"Broker\",\"297153\",\"58787\"],[\"Cloward\",\"Jessica\",\"704-502-8383\",\"jessicacloward1@gmail.com\",\"Salisbury\",\"Broker - in - Charge\",\"298274\",\"57857\"],[\"Cody\",\"Amanda\",\"980-581-1399\",\"amandaearnhardt@yahoo.com\",\"Albemarle\",\"Broker\",\"217780\",\"50220\"],[\"Crowder\",\"Lisa\",\"704-380-7455\",\"lisadcrowder@gmail.com\",\"Harrisburg\",\"Broker\",\"279316\",\"32788\"],[\"Davis\",\"Michael\",\"\",\"mdavis@thewhiteoakgrove.com\",\"Kannapolis\",\"Broker\",\"289518\",\"548508637\"],[\"Drakulich\",\"Kimberly\",\"704-778-6959\",\"kim.drakulich@gmail.com\",\"Kannapolis\",\"Broker\",\"277431\",\"35684\"],[\"Dunphy\",\"Australia\",\"704-701-0177\",\"cdunphy51@hotmail,com\",\"Kannapolis\",\"Broker\",\"293885\",\"67265\"],[\"Erion\",\"Ivonne\",\"704-796-3530\",\"ivonne@ivonneerion.com\",\"Kannapolis\",\"Broker\",\"289340\",\"48565\"],[\"Evans\",\"Amy\",\"704-273-0107\",\"amyevansrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"297737\",\"59809\"],[\"Ferlauto\",\"Ashley\",\"980-333-8085\",\"ashleyferlauto@gmail.com\",\"Kannapolis\",\"Broker\",\"291080\",\"50443\"],[\"Franklin\",\"Jeff\",\"704-787-4888\",\"jeff.franklin.realtor@gmail.com\",\"Salisbury\",\"Broker\",\"298704\",\"61490\"],[\"Fullerton\",\"Michael\",\"980-318-4961\",\"mikefullerton72@gmail.com\",\"Albemarle\",\"Broker - in - Charge\",\"290662\",\"51527\"],[\"Garcia\",\"Yira\",\"704-907-9573\",\"ygarciarealty@gmail.com\",\"Kannapolis\",\"Broker\",\"300114\",\"63290\"],[\"Gearing\",\"Lynnette\",\"704-699-6902\",\"lynnettegearing.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"306394\",\"69473\"],[\"Griffin\",\"Deborah\",\"980-428-2462\",\"deborahg142@gmail.com\",\"Salisbury\",\"Broker\",\"145465\",\"56410\"],[\"Hager\",\"Cathy\",\"980-521-4429\",\"1cathyhager@gmail.com\",\"Kannapolis\",\"Broker\",\"294095\",\"54235\"],[\"Haywood\",\"Conard\",\"704-467-5102\",\"conardhaywood@gmail.com\",\"Kannapolis\",\"Broker\",\"319615\",\"\"],[\"Hedrick\",\"Courtney\",\"704-608-7893\",\"hedrickhomes@gmail.com\",\"Kannapolis\",\"Broker\",\"301363\",\"63492\"],[\"Hedrick\",\"William\",\"704-773-9204\",\"will@thewillhedrick.com\",\"Kannapolis\",\"Broker\",\"314736\",\"\"],[\"Henderson\",\"Jessie\",\"704-608-8081\",\"jessiehenderson8@gmail.com\",\"Kannapolis\",\"Broker\",\"300281\",\"66060\"],[\"Hill\",\"Hosanna\",\"336-317-8050\",\"hill.hosanna@gmail.com\",\"Kannapolis\",\"Broker\",\"315320\",\"76468\"],[\"Hiner\",\"Donna\",\"704-956-9898\",\"donnasellsrealestate1@gmail.com\",\"Harrisburg\",\"Broker\",\"272915\",\"21485\"],[\"Hines\",\"Ashley\",\"704-787-1576\",\"ahines0428@gmail.com\",\"Kannapolis\",\"Broker\",\"311494\",\"73057\"],[\"Howell\",\"Kimberly\",\"704-699-2600\",\"kdhowell1996@gmail.com\",\"Salisbury\",\"Broker\",\"302115\",\"64440\"],[\"Jackling\",\"Melissa\",\"980-621-4623\",\"onlymyrealtormelissa@gmail.com\",\"Kannapolis\",\"Broker\",\"291920\",\"51371\"],[\"Jalynski\",\"Christine\",\"704-749-4944\",\"cjalynskirealty@gmail.com\",\"Kannapolis\",\"Broker\",\"297054\",\"58601\"],[\"Johnson\",\"Priscilla\",\"704-891-5386\",\"priscillajrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"\",\"80621\"],[\"Keller\",\"Kelly\",\"704-467-4485\",\"kelly.keller.realty@gmail.com\",\"Kannapolis\",\"Broker\",\"313269\",\"74509\"],[\"Keller\",\"Margie\",\"704-245-2739\",\"margkellerhomes@gmail.com\",\"Salisbury\",\"Broker\",\"298750\",\"61747\"],[\"Kidd\",\"Cheyenne\",\"980-939-3809\",\"cheyennekidd00@gmail.com\",\"Salisbury\",\"Broker\",\"318995\",\"81249\"],[\"LaCroix\",\"Melissa\",\"704-796-6531\",\"mlacroix.realty@gmail.com\",\"Kannapolis\",\"Broker\",\"303207\",\"65548\"],[\"Lamb\",\"Dawn\",\"980-781-7385\",\"dawnlambrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"315881\",\"77815\"],[\"Laney\",\"Sandi\",\"704-773-5886\",\"sandilaney2@gmail.com\",\"Kannapolis\",\"Broker\",\"272563\",\"22259\"],[\"Leonard\",\"Bret\",\"980-521-7156\",\"buywithbret@gmail.com\",\"Salisbury\",\"Broker\",\"303052\",\"65034\"],[\"Matthews\",\"Helen\",\"704-796-4026\",\"hamatthews@gmail.com\",\"Kannapolis\",\"Broker\",\"303222\",\"65519\"],[\"McCauley\",\"Lindsey\",\"704-236-7850\",\"lmccauley727@gmail.com\",\"Kannapolis\",\"Broker\",\"298645\",\"61546\"],[\"Merrell\",\"Connie\",\"704-701-1678\",\"connie.merrell.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"320338\",\"81061\"],[\"Miller\",\"MaClay\",\"704-244-0065\",\"MaClayMiller@gmail.com\",\"Kannapolis\",\"Broker\",\"314056\",\"75244\"],[\"Miltz\",\"Deanna\",\"704-634-6289\",\"dmiltzrealtor@gmail.com\",\"Harrisburg\",\"Broker\",\"298941\",\"61437\"],[\"Monrad\",\"Rachel\",\"704-682-9422\",\"rachel@randsrealtygroup.com\",\"Mooresville\",\"Broker\",\"251860\",\"32949\"],[\"Nutter\",\"Julie\",\"240-888-7493\",\"teamnutter@gmail.com\",\"Kannapolis\",\"Broker\",\"293824\",\"48403\"],[\"Overcash\",\"Jason\",\"980-622-6327\",\"jasonovercashrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"305546\",\"68295\"],[\"Overcash\",\"Laura\",\"704-699-0765\",\"lovercashre@gmail.com\",\"Kannapolis\",\"Broker\",\"301686\",\"63472\"],[\"Petty\",\"Deana\",\"704-258-8068\",\"deana327@gmail.com\",\"Kannapolis\",\"BIC/Owner\",\"263080\",\"72155\"],[\"Pricher\",\"Lisa\",\"704-288-7392\",\"ncrealtorlisa@gmail.com\",\"Harrisburg\",\"Broker\",\"276287\",\"24658\"],[\"Puckett\",\"Chris\",\"704-298-5872\",\"ch2realty@gmail.com\",\"Kannapolis\",\"Qualifying Broker/Owner\",\"279213\",\"32613\"],[\"Queen\",\"Rodney\",\"704-239-3617\",\"rodneque@aol.com\",\"Salisbury\",\"Broker\",\"197764\",\"18091\"],[\"Rhew\",\"Rick\",\"704-491-2458\",\"ricksellsnc@gmail.com\",\"Harrisburg\",\"Broker\",\"288631\",\"49282\"],[\"Robinson\",\"Kelly\",\"704-699-2268\",\"kelly.robinson.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"316981\",\"79218\"],[\"Rogers\",\"Hayley\",\"704-431-2816\",\"hayley.realestate.rogers@gmail.com\",\"Harrisburg\",\"Broker - in - Charge\",\"281085\",\"35693\"],[\"Romesburg\",\"Sarah\",\"336-466-1646\",\"sarah@randsrealtygroup.com\",\"Mooresville\",\"Broker\",\"279215\",\"32982\"],[\"Sadler\",\"Kimberly\",\"704-798-8338\",\"kimsadler.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"290260\",\"49723\"],[\"Severt\",\"Paula\",\"704-232-3433\",\"paulasevert@yahoo.com\",\"Kannapolis\",\"Broker/Owner\",\"256100\",\"68433\"],[\"Sherin\",\"Chelsi\",\"570-690-3723\",\"chelsi.sherin@gmail.com\",\"Kannapolis\",\"Broker\",\"317621\",\"79645\"],[\"Sides\",\"Holden\",\"704-699-2092\",\"sideshb94@yahoo.com\",\"Kannapolis\",\"Broker\",\"322169\",\"\"],[\"Solarek\",\"Leslie\",\"229-854-0444\",\"lesliesellsnc@gmail.com\",\"Kannapolis\",\"Broker\",\"298587\",\"61042\"],[\"Starnes\",\"Susan\",\"704-305-0040\",\"susansellsnchomes@gmail.com\",\"Harrisburg\",\"Broker\",\"304452\",\"66546\"],[\"Stillinger\",\"Ethan\",\"704-957-1282\",\"ethanstillingerlrd@gmail.com\",\"Kannapolis\",\"Broker\",\"283899\",\"39819\"],[\"Strickland\",\"Tricia\",\"704-791-7314\",\"tricia.strickland927@gmail.com\",\"Kannapolis\",\"Broker\",\"314178\",\"75477\"],[\"Suther\",\"John\",\"704-622-1432\",\"johnsutherllc@gmail.com\",\"Kannapolis\",\"Broker\",\"309445\",\"71221\"],[\"Thomas\",\"Ellen\",\"704-791-3141\",\"ellencthomasservices@gmail.com\",\"Kannapolis\",\"Broker\",\"305464\",\"67704\"],[\"Thompson\",\"Chuck\",\"704-701-0129\",\"crtbroker@gmail.com\",\"Kannapolis\",\"Broker\",\"278357\",\"31317\"],[\"Trask\",\"Kimberly\",\"336-906-0848\",\"kimberlyktrask@gmail.com\",\"Kannapolis\",\"Broker\",\"312666\",\"75085\"],[\"Watson\",\"Brianne\",\"704-791-3272\",\"briannewatsonrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"293189\",\"53736\"],[\"Widenhouse\",\"Cindy\",\"704-795-8017\",\"cindy.s.widenhouse@gmail.com\",\"Kannapolis\",\"Broker\",\"299028\",\"61885\"],[\"Wilson\",\"Rick\",\"704-996-9902\",\"richard.wilson4565@gmail.com\",\"Kannapolis\",\"Broker\",\"321788\",\"81743\"],[\"Wooley\",\"Todd\",\"704-904-7162\",\"twooleyrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"309536\",\"71163\"],[\"Yates\",\"Melissa\",\"704-239-3835\",\"melissayates4u@gmail.com\",\"Salisbury\",\"Broker\",\"307917\",\"69428\"],[\"Zhang\",\"Min\",\"319-471-1622\",\"realtymin77@gmail.com\",\"Harrisburg\",\"Broker\",\"299816\",\"63292\"]]','Team Directory','','inherit','closed','closed','','1199-revision-v1','','','2020-10-18 16:56:38','2020-10-18 16:56:38','',1199,'https://lantern-realty.com/1199-revision-v1/',0,'revision','',0),(1194,6,'2020-10-05 08:31:31','2020-10-05 08:31:31','<div><div class=WordSection1><div><div><div><p class=MsoNormal>Hey, just a quick note to start the week....<o:p></o:p></p><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- Our marketing committee is looking for participants.&nbsp; We would love to have someone from each office.&nbsp; If you have interest please let Hayley Rogers know.&nbsp; We are working to minimize everyone\'s time spent and would love to get as many ideas as possible.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><div><p class=MsoNormal>- We have a very busy week upcoming with<b>&nbsp;classes!</b>&nbsp; Below are the classes/meetings we have scheduled.&nbsp; I have attached a copy of the Educational Calendar.&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal>** <b>THIS MORNING</b> at 10am&nbsp;<b>Amanda Cody will be hosting a Broker Q &amp; A</b>.&nbsp; This will be a great time to pick her brain about her success.&nbsp; Amanda is one of the highest producing agents in our Realtor association.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal>** Tuesday 10/6 at 10am Paula will be hosting&nbsp;<b>Dotloop/Forms class</b>.&nbsp;<o:p></o:p></p><div><p class=MsoNormal>** Wednesday 10/7 at 11am will be our next<b>&nbsp;team meeting&nbsp;</b>at the new baseball park across from our office in Kannapolis.&nbsp; Retired Concord Police Captain Wendell Rummage will be hosting a Realtor ® safety class during our meeting.&nbsp; Wendell is also a local Realtor® and knows what we face on a daily basis.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>Also, we have added the following classes to our schedule...<o:p></o:p></p></div><div><p class=MsoNormal>- 10/26 Nic Lovelace will be teaching about Foreclosures<o:p></o:p></p></div><div><p class=MsoNormal>- 10/29 I will have another \"2021 Goal Setting\" class in the evening<o:p></o:p></p></div><div><p class=MsoNormal>- 11/17 Paula will be teaching her very popular \"Art of Negotiating\" class.&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>Hope you all have a fantastic and productive week!<o:p></o:p></p></div></div></div></div><div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><p class=MsoNormal><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/2020-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2020-Educational-Calendar.xlsx</a><br /></div>','This Week!','','publish','closed','open','','this-week','','','2020-10-18 17:34:29','2020-10-18 17:34:29','',0,'https://lantern-realty.com/?p=1194',0,'post','',0),(1195,1,'2020-10-18 16:26:31','2020-10-18 16:26:31','','2020-Educational-Calendar.xlsx','','inherit','closed','closed','','2020-educational-calendar-1','','','2020-10-18 16:26:31','2020-10-18 16:26:31','',1194,'https://lantern-realty.com/wp-content/uploads/2020/10/2020-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1196,6,'2020-10-02 09:22:31','2020-10-02 09:22:31','<div><div class=WordSection1><div><div><div><p class=MsoNormal>Good Morning All, below are some news &amp; notes for you as we head into a gorgeous weekend and another busy week.<o:p></o:p></p><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- We have a very busy week upcoming with<b> classes!</b>&nbsp; Below are the classes/meetings we have scheduled.&nbsp; I have attached a copy of the Educational Calendar.&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal>** Monday 10/5 at 10am <b>Amanda Cody will be hosting a Broker Q &amp; A</b>.&nbsp; This will be a great time to pick her brain about her success.&nbsp; Amanda is one of the highest producing agents in our Realtor association.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal>** Tuesday 10/6 at 10am Paula will be hosting <b>Dotloop/Forms class</b>.&nbsp;<o:p></o:p></p><div><p class=MsoNormal>** Wednesday 10/7 at 11am will be our next<b> team meeting </b>at the new baseball park across from our office in Kannapolis.&nbsp; Retired Concord Police Captain Wendell Rummage will be hosting a Realtor ® safety class during our meeting.&nbsp; Wendell is also a local Realtor® and knows what we face on a daily basis.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- Speaking of our<b> team meeting</b>.&nbsp; We will not only have Wendell Rummage speaking but a few others.&nbsp; Then at 12pm we will be having lunch served in our office across the street.&nbsp; Meeting starts at 11am at the Sky Lounge in the Ballpark.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- Our <b>Mooresville office</b> is up and running.&nbsp; We are STILL waiting on the MLS to set it up in the system.&nbsp; That being said, if you have the desire to switch to this office please let us know.&nbsp; Once the MLS decides to do their job, we will be transferring folks that want to be transferred.&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- I\'ve had a few folks ask about the status of our <b>SC firm license</b>.&nbsp; We have plans in place to HOPEFULLY get our firm license by November 1st.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- Lastly, if you are <b>not feeling well,</b> please do not come into any of our offices.&nbsp; If you need anything at all let us know.&nbsp; We are blessed to have enough resources in our company that we can help each other out.&nbsp; Please do not risk getting others sick.&nbsp;&nbsp;<o:p></o:p></p></div></div></div><div><div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><p class=MsoNormal><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/2020-Educational-Calendar-2.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2020-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-2','','','2020-10-18 17:34:44','2020-10-18 17:34:44','',0,'https://lantern-realty.com/?p=1196',0,'post','',0),(1197,1,'2020-10-18 16:26:31','2020-10-18 16:26:31','','2020-Educational-Calendar.xlsx','','inherit','closed','closed','','2020-educational-calendar-2','','','2020-10-18 16:26:31','2020-10-18 16:26:31','',1196,'https://lantern-realty.com/wp-content/uploads/2020/10/2020-Educational-Calendar-2.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(906,1,'2020-10-11 16:43:02','2020-10-11 16:43:02','','Lantern Business Card Template','','inherit','open','closed','','lantern_bc_cmp','','','2020-10-15 23:34:02','2020-10-15 23:34:02','',882,'https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp.jpg',0,'attachment','image/jpeg',0),(1228,1,'2020-10-18 17:52:43','2020-10-18 17:52:43','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2><a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\">Team Announcements</a></h2>		\n		<p style=\"text-align: center;\">The latest team announcement. Check out the announcements page for a full archive.</p>		\n			<h2>Most Recent Announcement</h2>		\n			<a href=\"#\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:52:43','2020-10-18 17:52:43','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(910,1,'2020-10-11 16:51:49','2020-10-11 16:51:49','','Lantern Yard Signs','','inherit','open','closed','','lantern-yard-signs-all-8-17-08','','','2020-10-11 16:52:06','2020-10-11 16:52:06','',882,'https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08.jpg',0,'attachment','image/jpeg',0),(1232,1,'2020-10-18 17:55:36','2020-10-18 17:55:36','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:55:36','2020-10-18 17:55:36','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1233,1,'2020-10-18 18:04:17','2020-10-18 18:04:17','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 18:04:17','2020-10-18 18:04:17','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1235,1,'2020-10-18 18:15:52','2020-10-18 18:15:52','<h2><strong>[title]</strong></h2>\r\n<span style=\"font-size: 18px;\">[when]</span>\r\n<span style=\"color: #6ec1e4;\">[location]</span>\r\n<div>[description]</div>\r\n[link newwindow=\"yes\"]See more details[/link]','Lantern Events - List View','','publish','closed','closed','','lantern-events','','','2020-10-18 18:41:07','2020-10-18 18:41:07','',0,'https://lantern-realty.com/?post_type=calendar&#038;p=1235',0,'calendar','',0),(1240,1,'2020-10-18 18:24:29','2020-10-18 18:24:29','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>[calendar id=\"1235\"]','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 18:24:29','2020-10-18 18:24:29','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1236,1,'2020-10-18 18:16:58','2020-10-18 18:16:58','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>\n		[calendar id=\"1235\"]','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 18:16:58','2020-10-18 18:16:58','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1239,1,'2020-10-18 18:24:03','2020-10-18 18:24:03','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>\n		[calendar id=\"1235\"]','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 18:24:03','2020-10-18 18:24:03','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1238,1,'2020-10-18 18:21:20','2020-10-18 18:21:20','<h2><strong>[title]</strong></h2>\n[when]\n[location]\n<div>[description]</div>\n[link newwindow=\"yes\"]See more details[/link]','Lantern Events','','inherit','closed','closed','','1235-autosave-v1','','','2020-10-18 18:21:20','2020-10-18 18:21:20','',1235,'https://lantern-realty.com/1235-autosave-v1/',0,'revision','',0);
INSERT INTO `lrwp_posts` VALUES (1265,1,'2020-10-18 23:33:42','2020-10-18 23:33:42','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n				<a href=\"https://lantern-realty.com/valuation-form/\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/valuation-form/\">Free Valuation Request</a>\n				</h3>\n				<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\">Local Market Report</a>\n				</h3>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:33:42','2020-10-18 23:33:42','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1264,1,'2020-10-18 23:30:55','2020-10-18 23:30:55','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n				<a href=\"https://lantern-realty.com/valuation-form/\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/valuation-form/\">Free Valuation Request</a>\n				</h3>\n				<a href=\"https://lantern-realty.com/valuation-form/\">\n								</a>\n				<h3>\n					<a href=\"https://lantern-realty.com/valuation-form/\">Local Market Report</a>\n				</h3>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:30:55','2020-10-18 23:30:55','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(936,1,'2020-10-11 17:33:35','2020-10-11 17:33:35','','NewAgentRegistration','','publish','closed','closed','','volunteer-application-form','','','2021-06-09 01:47:01','2021-06-09 01:47:01','',0,'https://lantern-realty.com/2020/10/11/volunteer-application-form/',0,'wpuf_contact_form','',0),(955,1,'2020-10-11 17:54:56','2020-10-11 17:54:56','a:10:{s:10:\"input_type\";s:12:\"column_field\";s:8:\"template\";s:12:\"column_field\";s:7:\"is_meta\";s:2:\"no\";s:7:\"columns\";s:1:\"2\";s:10:\"min_column\";i:1;s:10:\"max_column\";i:3;s:12:\"column_space\";s:2:\"25\";s:12:\"inner_fields\";a:3:{s:8:\"column-1\";a:1:{i:0;a:17:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:12:\"phone_number\";s:5:\"label\";s:12:\"Phone Number\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:112988601;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}}}s:8:\"column-2\";a:1:{i:0;a:16:{s:8:\"template\";s:13:\"email_address\";s:4:\"name\";s:24:\"email_address_6031894746\";s:5:\"label\";s:13:\"Email Address\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:1665815531;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}}}s:8:\"column-3\";a:0:{}}s:18:\"inner_columns_size\";a:3:{s:8:\"column-1\";s:4:\"314%\";s:8:\"column-2\";s:4:\"357%\";s:8:\"column-3\";s:2:\"0%\";}s:2:\"id\";i:955;}','','','publish','closed','closed','','955','','','2021-06-09 01:47:01','2021-06-09 01:47:01','',936,'https://lantern-realty.com/2020/10/11/955/',1,'wpuf_input','',0),(954,1,'2020-10-11 17:52:31','2020-10-11 17:52:31','a:17:{s:8:\"template\";s:14:\"dropdown_field\";s:4:\"name\";s:11:\"home_office\";s:5:\"label\";s:11:\"Home Office\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:10:\"kannapolis\";s:7:\"options\";a:7:{s:10:\"kannapolis\";s:10:\"Kannapolis\";s:9:\"albemarle\";s:9:\"Albemarle\";s:10:\"harrisburg\";s:10:\"Harrisburg\";s:11:\"mooresville\";s:11:\"Mooresville\";s:9:\"salisbury\";s:9:\"Salisbury\";s:9:\"asheville\";s:9:\"Asheville\";s:27:\"other_(specify_in_comments)\";s:27:\"Other (specify in comments)\";}s:5:\"first\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:954;}','','','publish','closed','closed','','954','','','2021-06-09 01:47:01','2021-06-09 01:47:01','',936,'https://lantern-realty.com/2020/10/11/954/',4,'wpuf_input','',0),(953,1,'2020-10-11 17:47:13','2020-10-11 17:47:13','a:10:{s:10:\"input_type\";s:12:\"column_field\";s:8:\"template\";s:12:\"column_field\";s:7:\"is_meta\";s:2:\"no\";s:7:\"columns\";s:1:\"2\";s:10:\"min_column\";i:1;s:10:\"max_column\";i:3;s:12:\"column_space\";s:2:\"25\";s:12:\"inner_fields\";a:3:{s:8:\"column-1\";a:1:{i:0;a:18:{s:8:\"template\";s:10:\"date_field\";s:4:\"name\";s:8:\"birthday\";s:5:\"label\";s:8:\"Birthday\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:1015455023;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:13:\"Month and Day\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:5:\"mm/dd\";s:4:\"time\";s:0:\"\";s:15:\"is_publish_time\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}}}s:8:\"column-2\";a:1:{i:0;a:17:{s:8:\"template\";s:12:\"image_upload\";s:4:\"name\";s:15:\"headshot_upload\";s:5:\"label\";s:15:\"Headshot Upload\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:9272107396;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"max_size\";s:5:\"10000\";s:5:\"count\";s:1:\"2\";s:12:\"button_label\";s:12:\"Select Image\";}}s:8:\"column-3\";a:0:{}}s:18:\"inner_columns_size\";a:3:{s:8:\"column-1\";s:4:\"323%\";s:8:\"column-2\";s:4:\"347%\";s:8:\"column-3\";s:2:\"0%\";}s:2:\"id\";i:953;}','','','publish','closed','closed','','953','','','2021-06-09 01:47:01','2021-06-09 01:47:01','',936,'https://lantern-realty.com/2020/10/11/953/',3,'wpuf_input','',0),(946,1,'2020-10-11 17:44:30','2020-10-11 17:44:30','a:20:{s:8:\"template\";s:10:\"name_field\";s:4:\"name\";s:6:\"format\";s:5:\"label\";s:4:\"Name\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:17:\"first-middle-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:10:\"First Name\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:9:\"Last Name\";}s:6:\"inline\";s:3:\"yes\";s:9:\"hide_subs\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:946;}','','','publish','closed','closed','','946','','','2021-06-09 01:47:01','2021-06-09 01:47:01','',936,'https://lantern-realty.com/2020/10/11/946/',0,'wpuf_input','',0),(949,1,'2020-10-11 17:44:30','2020-10-11 17:44:30','a:10:{s:10:\"input_type\";s:12:\"column_field\";s:8:\"template\";s:12:\"column_field\";s:7:\"is_meta\";s:2:\"no\";s:7:\"columns\";s:1:\"2\";s:10:\"min_column\";i:1;s:10:\"max_column\";i:3;s:12:\"column_space\";s:2:\"25\";s:12:\"inner_fields\";a:3:{s:8:\"column-1\";a:1:{i:0;a:17:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:6:\"mls_id\";s:5:\"label\";s:6:\"MLS ID\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:1640834045;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}}}s:8:\"column-2\";a:1:{i:0;a:17:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:10:\"nc_license\";s:5:\"label\";s:12:\"NC License #\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:7936695246;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}}}s:8:\"column-3\";a:0:{}}s:18:\"inner_columns_size\";a:3:{s:8:\"column-1\";s:4:\"325%\";s:8:\"column-2\";s:4:\"346%\";s:8:\"column-3\";s:2:\"0%\";}s:2:\"id\";i:949;}','','','publish','closed','closed','','949','','','2021-06-09 01:47:01','2021-06-09 01:47:01','',936,'https://lantern-realty.com/2020/10/11/949/',2,'wpuf_input','',0),(951,1,'2020-10-11 17:44:30','2020-10-11 17:44:30','a:18:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:11:\"website_bio\";s:5:\"label\";s:11:\"Website Bio\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:951;}','','','publish','closed','closed','','951','','','2021-06-09 01:47:01','2021-06-09 01:47:01','',936,'https://lantern-realty.com/2020/10/11/951/',5,'wpuf_input','',0),(952,1,'2020-10-11 17:44:30','2020-10-11 17:44:30','a:18:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:7:\"comment\";s:5:\"label\";s:8:\"Comments\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:52:\"For anything else you\'d like to share with the team.\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:952;}','','','publish','closed','closed','','952','','','2021-06-09 01:47:01','2021-06-09 01:47:01','',936,'https://lantern-realty.com/2020/10/11/952/',6,'wpuf_input','',0),(964,1,'2020-10-11 18:11:43','2020-10-11 18:11:43','<h1>New Agent Form Submitted!</h1>		\n						Progress\n				Become a Lantern Agent\n									100%\n		<h2 style=\"text-align: center;\">Congratulations and welcome to the team!</h2> <p>Your information has been submitted for registration. We will be in touch if any further information is needed. Please allow 48-72 hours for your new agent profile to show on the Lantern website.</p><p>As next steps, please visit our Team Portal to review all the materials you\'ll need to start your successful career with Lantern.</p>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" role=\"button\">\n						Team Portal\n					</a>','Welcome','','publish','closed','closed','','welcome','','','2020-10-12 14:16:37','2020-10-12 14:16:37','',882,'https://lantern-realty.com/?page_id=964',0,'page','',0),(972,1,'2020-10-11 18:30:34','2020-10-11 18:30:34','','Website Change Request','','publish','closed','closed','','report-a-bug','','','2020-12-01 01:51:15','2020-12-01 01:51:15','',0,'https://lantern-realty.com/2020/10/11/report-a-bug/',0,'wpuf_contact_form','',0),(1262,1,'2020-10-18 23:25:39','2020-10-18 23:25:39','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:25:39','2020-10-18 23:25:39','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(998,1,'2020-10-11 18:38:29','2020-10-11 18:38:29','<h1>Official Lantern Logos</h1>		\n		<h4 style=\"text-align: center;\">Your one stop shop for all Lantern branding and media.</h4><p style=\"text-align: center;\">If you feel something is missing, please use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request an addition.</p>		\n							<figure>\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Facebook Logo\">\n							<img width=\"178\" height=\"180\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg 178w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-148x150.jpg 148w\" sizes=\"(max-width: 178px) 100vw, 178px\" />								</a>\n											<figcaption></figcaption>\n										</figure>\n							<figure>\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/lantern_transparent.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Logo - Transparent\">\n							<img width=\"1024\" height=\"366\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/lantern_transparent-1024x366.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/lantern_transparent-1024x366.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_transparent-300x107.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_transparent-768x274.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_transparent-1536x548.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_transparent-2048x731.png 2048w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_transparent-1681x600.png 1681w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_transparent-496x177.png 496w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n											<figcaption></figcaption>\n										</figure>\n							<figure>\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/lantern_LOGO_Square-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Logo - Square\">\n							<img width=\"1024\" height=\"817\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/lantern_LOGO_Square-2-e1602507710568-1024x817.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/lantern_LOGO_Square-2-e1602507710568-1024x817.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_LOGO_Square-2-e1602507710568-300x239.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_LOGO_Square-2-e1602507710568-768x613.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_LOGO_Square-2-e1602507710568-1536x1225.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_LOGO_Square-2-e1602507710568-752x600.jpg 752w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_LOGO_Square-2-e1602507710568-496x396.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/lantern_LOGO_Square-2-e1602507710568.jpg 1597w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n											<figcaption></figcaption>\n										</figure>\n			<h2>Signs and Business Cards</h2>		\n		<strong>Business Card Vendor:</strong>Omega Graphics293 Brookdale Street, Kannapolis, NC 28083Phone: (704) 933-5715 Reference Business Card<br />2 Sided, Full Color, 14pt UV Coated Online Vendor:<p><a href=\"https://www.houseofmagnets.com/\">https://www.houseofmagnets.com/</a></p><p>Great for:</p><ul><li>Business Cards</li><li>Magnets</li><li>Apparel</li><li>Signs</li></ul>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Business Card Template\">\n							<img width=\"1024\" height=\"791\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-1024x791.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-1024x791.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-300x232.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-768x593.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-1536x1187.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-776x600.jpg 776w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-496x383.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp.jpg 1980w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n		<strong>Sign Vendor:</strong>Omega Graphics293 Brookdale Street, Kannapolis, NC 28083Phone: (704) 933-5715 Reference Information		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Yard Signs\">\n							<img width=\"1024\" height=\"791\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-1024x791.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-1024x791.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-300x232.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-768x593.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-1536x1186.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-2048x1582.jpg 2048w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-777x600.jpg 777w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-496x383.jpg 496w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h2>Team Email Signature</h2>		\n		<b>John Smith </b>\n<b>Lantern Realty &amp; Development</b>\n<i>Licensed Realtor</i>\n<b>Phone: (555) 555-5555</b> \n<a href=\"https://lantern-realty.com/\" target=\"_blank\" rel=\"noopener noreferrer\" data-saferedirecturl=\"https://www.google.com/url?q=https://lantern-realty.com/&amp;source=gmail&amp;ust=1602518659720000&amp;usg=AFQjCNHqdvTLiGoDEvr-Znne2j_FeROb2Q\">Let Us Guide You Home</a>\n<img src=\"https://ci3.googleusercontent.com/proxy/74nNqDIzJuR_wWjaTkJvrx5eip9Ni17jksYQSrMkwfZfpbCBw9NkOLtcpopvST_U1bIZr7COpojscD2oXuQPL5y-vPib9iU40jAZT3zGFBKsC7_lBAFnNsSboEgRzyXI7ZCSUEGc2besDA5DjHmzGSwVqgD0GnIBkw=s0-d-e1-ft#https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144736200-1024x388.jpg\" width=\"200\" height=\"75\" />\n<i><b>Proudly Serving Cabarrus, Rowan, Stanly, Iredell, Mecklenburg and surrounding areas</b></i>','Lantern Branding','','publish','closed','closed','','lantern-branding','','','2020-10-15 23:40:10','2020-10-15 23:40:10','',882,'https://lantern-realty.com/?page_id=998',0,'page','',0),(1000,1,'2020-10-11 18:39:12','2020-10-11 18:39:12','<h1>Lantern Documents</h1>\n<p style=\"text-align: center;\">Browse helpful and commonly used documents.</p>\n<p style=\"text-align: center;\">[wpdocs breadcrumb=\"true\" view=\"list\"]</p>\n<p style=\"text-align: center;\">If you have ideas for useful additions, please use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">website change request</a> link to send in your recommendation.</p>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\nWebsite Change Request\n</a>','Lantern Documents','','publish','closed','closed','','lantern-documents','','','2020-10-15 20:54:50','2020-10-15 20:54:50','',882,'https://lantern-realty.com/?page_id=1000',0,'page','',0),(996,1,'2020-10-11 18:37:36','2020-10-11 18:37:36','<h1>Website Change Requests</h1>\n<h4 style=\"text-align: center;\">Thank you for your care in keeping our website up-to-date.</h4>\n&nbsp; &nbsp; &nbsp;Please use this form to submit change requests directly to our web developer. Things to submit in this form can include, but are not limited to: additions of special content, information corrects, unique ideas, and more. For basic corrections, please allow 48-72 hours to see the changes update. Larger changes may take longer.','Website Change Request','','publish','closed','closed','','website-change-request','','','2020-10-15 20:55:38','2020-10-15 20:55:38','',882,'https://lantern-realty.com/?page_id=996',0,'page','',0),(989,1,'2020-10-11 18:35:04','2020-10-11 18:35:04','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:4:\"name\";s:5:\"label\";s:4:\"Name\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:989;}','','','publish','closed','closed','','989','','','2020-12-01 01:51:15','2020-12-01 01:51:15','',972,'https://lantern-realty.com/2020/10/11/989/',0,'wpuf_input','',0),(990,1,'2020-10-11 18:35:04','2020-10-11 18:35:04','a:14:{s:8:\"template\";s:13:\"email_address\";s:4:\"name\";s:13:\"email_address\";s:5:\"label\";s:13:\"Email Address\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";s:0:\"\";s:2:\"id\";i:990;}','','','publish','closed','closed','','990','','','2020-12-01 01:51:15','2020-12-01 01:51:15','',972,'https://lantern-realty.com/2020/10/11/990/',1,'wpuf_input','',0),(991,1,'2020-10-11 18:35:04','2020-10-11 18:35:04','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:12:\"phone_number\";s:5:\"label\";s:12:\"Phone Number\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:991;}','','','publish','closed','closed','','991','','','2020-12-01 01:51:15','2020-12-01 01:51:15','',972,'https://lantern-realty.com/2020/10/11/991/',2,'wpuf_input','',0),(992,1,'2020-10-11 18:35:04','2020-10-11 18:35:04','a:17:{s:8:\"template\";s:14:\"dropdown_field\";s:4:\"name\";s:17:\"nature_of_request\";s:5:\"label\";s:17:\"Nature of Request\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:14:\"update_content\";s:7:\"options\";a:6:{s:14:\"update_content\";s:14:\"Update Content\";s:20:\"update_agent_profile\";s:20:\"Update Agent Profile\";s:16:\"add/remove_agent\";s:16:\"Add/Remove Agent\";s:18:\"there\'s_a_problem.\";s:18:\"There\'s a problem.\";s:12:\"content_idea\";s:12:\"Content Idea\";s:5:\"other\";s:5:\"Other\";}s:5:\"first\";s:2:\"  \";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:992;}','','','publish','closed','closed','','992','','','2020-12-01 01:51:15','2020-12-01 01:51:15','',972,'https://lantern-realty.com/2020/10/11/992/',3,'wpuf_input','',0),(993,1,'2020-10-11 18:35:04','2020-10-11 18:35:04','a:19:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:21:\"describe_your_request\";s:5:\"label\";s:21:\"Describe Your Request\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";s:9:\"help_text\";s:134:\"Provide information on steps taken to isolate the problem. Under what conditions or circumstances does the problem occur or not occur.\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:993;}','','','publish','closed','closed','','993','','','2020-12-01 01:51:15','2020-12-01 01:51:15','',972,'https://lantern-realty.com/2020/10/11/993/',4,'wpuf_input','',0),(994,1,'2020-10-11 18:35:04','2020-10-11 18:35:04','a:16:{s:8:\"template\";s:12:\"image_upload\";s:4:\"name\";s:23:\"image_upload_7340038198\";s:5:\"label\";s:12:\"Image Upload\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"max_size\";s:5:\"10000\";s:5:\"count\";s:1:\"5\";s:12:\"button_label\";s:12:\"Select Image\";s:2:\"id\";i:994;}','','','publish','closed','closed','','994','','','2020-12-01 01:51:15','2020-12-01 01:51:15','',972,'https://lantern-realty.com/2020/10/11/994/',5,'wpuf_input','',0),(1009,1,'2020-10-12 12:55:11','2020-10-12 12:55:11','','Lantern Logo - Transparent','','inherit','open','closed','','lantern_transparent','','','2020-10-12 12:55:39','2020-10-12 12:55:39','',998,'https://lantern-realty.com/wp-content/uploads/2020/10/lantern_transparent.png',0,'attachment','image/png',0),(1010,1,'2020-10-12 12:56:45','2020-10-12 12:56:45','','Lantern Logo - Square','','inherit','open','closed','','lantern_logo_square-2','','','2020-10-12 12:57:04','2020-10-12 12:57:04','',998,'https://lantern-realty.com/wp-content/uploads/2020/10/lantern_LOGO_Square-2.jpg',0,'attachment','image/jpeg',0),(1013,1,'2020-10-12 12:59:25','2020-10-12 12:59:25','','Lantern Logo','','inherit','open','closed','','lantern-logo','','','2020-10-12 12:59:25','2020-10-12 12:59:25','',998,'https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Logo.jpeg',0,'attachment','image/jpeg',0),(1263,1,'2020-10-18 23:28:24','2020-10-18 23:28:24','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n				<h3>\n					Valuation Request\n				</h3>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:28:24','2020-10-18 23:28:24','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1319,1,'2020-10-19 01:11:14','2020-10-19 01:11:14','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/agency/lantern-realty-and-development/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/agency/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/agency/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">6477 Morehead Road Harrisburg, North Carolina 28075 </br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thanks for checking out my profile! My name is Meredith Christy and the three...	\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...	\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"><strong>Lisa Pricher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/agency/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">118 East Main Street Albemarle, North Carolina 28001 </br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My family and I moved to the Stanly County area in 1986 with the...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/agency/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2020-10-19 01:11:14','2020-10-19 01:11:14','',101,'https://lantern-realty.com/101-revision-v1/',0,'revision','',0),(1259,1,'2020-10-18 23:17:34','2020-10-18 23:17:34','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:17:34','2020-10-18 23:17:34','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1055,0,'2020-10-12 14:33:41','2020-10-12 14:33:41','','Ellen_Thomas','','inherit','open','closed','','ellen_thomas-2','','','2020-10-12 14:33:41','2020-10-12 14:33:41','',0,'https://lantern-realty.com/ellen_thomas-2/',0,'attachment','image/jpeg',0),(1056,0,'2020-10-12 14:44:57','2020-10-12 14:44:57','','IMG_0437','','inherit','open','closed','','img_0437','','','2020-10-12 14:44:57','2020-10-12 14:44:57','',0,'https://lantern-realty.com/img_0437/',0,'attachment','image/jpeg',0),(1057,1,'2020-10-12 14:51:45','2020-10-12 14:51:45','','Donna_Hawkins','','inherit','open','closed','','donna_hawkins-3','','','2020-10-12 14:51:45','2020-10-12 14:51:45','',0,'https://lantern-realty.com/donna_hawkins-3/',0,'attachment','image/jpeg',0),(1060,0,'2020-10-12 15:06:38','2020-10-12 15:06:38','','IMG_7662_jpg','','inherit','open','closed','','img_7662_jpg','','','2020-10-12 15:06:38','2020-10-12 15:06:38','',0,'https://lantern-realty.com/img_7662_jpg/',0,'attachment','image/jpeg',0),(1061,1,'2020-10-12 15:14:52','2020-10-12 15:14:52','a:9:{s:8:\"template\";s:9:\"recaptcha\";s:5:\"label\";s:0:\"\";s:14:\"recaptcha_type\";s:17:\"enable_no_captcha\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";N;s:15:\"recaptcha_theme\";s:5:\"light\";s:4:\"name\";s:9:\"recaptcha\";s:2:\"id\";i:1061;s:17:\"enable_no_captcha\";s:0:\"\";}','','','publish','closed','closed','','1061','','','2021-06-09 01:47:01','2021-06-09 01:47:01','',936,'https://lantern-realty.com/2020/10/12/1061/',7,'wpuf_input','',0),(1062,1,'2020-10-12 15:15:44','2020-10-12 15:15:44','a:9:{s:8:\"template\";s:9:\"recaptcha\";s:5:\"label\";s:0:\"\";s:14:\"recaptcha_type\";s:17:\"enable_no_captcha\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";N;s:15:\"recaptcha_theme\";s:5:\"light\";s:4:\"name\";s:9:\"recaptcha\";s:2:\"id\";i:1062;s:17:\"enable_no_captcha\";s:0:\"\";}','','','publish','closed','closed','','1062','','','2020-12-01 01:51:15','2020-12-01 01:51:15','',972,'https://lantern-realty.com/2020/10/12/1062/',6,'wpuf_input','',0),(1063,1,'2020-10-12 15:19:35','2020-10-12 15:19:35','','Lantern Logo','','inherit','open','closed','','lantern-logo-2','','','2020-10-12 15:19:35','2020-10-12 15:19:35','',0,'https://lantern-realty.com/lantern-logo-2/',0,'attachment','image/jpeg',0),(1413,1,'2020-11-11 02:03:19','2020-11-11 02:03:19','','Documents','','hidden','closed','closed','','new-folder','','','2020-11-11 02:04:25','2020-11-11 02:04:25','',0,'https://lantern-realty.com/new-folder/',0,'wpdocs_folder','',0),(1414,1,'2020-11-11 02:04:41','2020-11-11 02:04:41','','LRD 56 Safety Tips','','inherit','','closed','','lrd-56-safety-tips','','','2020-11-11 02:04:41','2020-11-11 02:04:41','',0,'https://lantern-realty.com/wp-content/uploads/2020/11/LRD-56-Safety-Tips.pdf',0,'attachment','application/pdf',0),(1367,0,'2020-10-23 00:45:35','2020-10-23 00:45:35','','IMG_0917','','inherit','','closed','','img_0917','','','2020-10-23 00:45:35','2020-10-23 00:45:35','',0,'https://lantern-realty.com/img_0917/',0,'attachment','image/jpeg',0),(1078,1,'2020-10-15 20:57:00','2020-10-15 20:57:00',' ','','','publish','closed','closed','','1078','','','2020-10-15 20:57:00','2020-10-15 20:57:00','',101,'https://lantern-realty.com/?p=1078',5,'nav_menu_item','',0),(1258,1,'2020-10-18 23:15:23','2020-10-18 23:15:23','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:15:23','2020-10-18 23:15:23','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1257,1,'2020-10-18 23:12:49','2020-10-18 23:12:49','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:12:49','2020-10-18 23:12:49','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1080,0,'2020-10-15 22:25:21','2020-10-15 22:25:21','','lantern_3_REV_LOGO','','inherit','open','closed','','lantern_3_rev_logo-3','','','2020-10-15 22:25:21','2020-10-15 22:25:21','',0,'https://lantern-realty.com/lantern_3_rev_logo-3/',0,'attachment','image/png',0),(1241,1,'2020-10-18 18:15:52','2020-10-18 18:15:52','<h2><strong>[title]</strong></h2>\r\n<span style=\"font-size: 18px;\">[when]</span>\r\n<span style=\"color: #6ec1e4;\">[location]</span>\r\n<div>[description]</div>\r\n[link newwindow=\"yes\"]See more details[/link]','Lantern Events - Month View','','publish','closed','closed','','lantern-events-2','','','2020-10-18 18:40:46','2020-10-18 18:40:46','',0,'https://lantern-realty.com/calendar/lantern-events-2/',0,'calendar','',0),(1242,1,'2020-10-18 18:27:06','2020-10-18 18:27:06','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>[calendar id=\"1235\"][calendar id=\"1241\"]','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 18:27:06','2020-10-18 18:27:06','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1243,1,'2020-10-18 18:33:59','2020-10-18 18:33:59','<h2><strong>[title]</strong></h2>\n<span style=\"font-size: 16px;\">[when]</span>\n<span style=\"color: #6ec1e4;\">[location]</span>\n<div>[description]</div>\n[link newwindow=\"yes\"]See more details[/link]','Lantern Events - Month View','','inherit','closed','closed','','1241-autosave-v1','','','2020-10-18 18:33:59','2020-10-18 18:33:59','',1241,'https://lantern-realty.com/1241-autosave-v1/',0,'revision','',0),(1083,1,'2020-10-15 23:27:32','2020-10-15 23:27:32','<h2>Signs and Business Cards</h2>		\n		<strong>Business Card Vendor:</strong>Omega Graphics293 Brookdale Street, Kannapolis, NC 28083Phone: (704) 933-5715 Reference Business Card<br />2 Sided, Full Color, 14pt UV Coated Online Vendor:<p><a href=\"https://www.houseofmagnets.com/\">https://www.houseofmagnets.com/</a></p><p>Great for:</p><ul><li>Business Cards</li><li>Magnets</li><li>Apparel</li><li>Signs</li></ul>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"LANTERN_BC_cmp\">\n							<img width=\"1024\" height=\"791\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-1024x791.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-1024x791.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-300x232.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-768x593.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-1536x1187.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-776x600.jpg 776w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp-496x383.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/LANTERN_BC_cmp.jpg 1980w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n		<strong>Sign Vendor:</strong>Omega Graphics293 Brookdale Street, Kannapolis, NC 28083Phone: (704) 933-5715 Reference Information<p> </p><p> </p>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Yard Signs\">\n							<img width=\"1024\" height=\"791\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-1024x791.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-1024x791.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-300x232.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-768x593.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-1536x1186.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-2048x1582.jpg 2048w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-777x600.jpg 777w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Yard-signs-All-8-17-08-496x383.jpg 496w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h2>Team Email Signature</h2>		\n		<b>John Smith </b><br /><b>Lantern Realty &amp; Development</b><i>Licensed Realtor</i><br /><b>Phone: (555) 555-5555</b> <br /><a href=\"https://lantern-realty.com/\" target=\"_blank\" rel=\"noopener noreferrer\" data-saferedirecturl=\"https://www.google.com/url?q=https://lantern-realty.com/&amp;source=gmail&amp;ust=1602518659720000&amp;usg=AFQjCNHqdvTLiGoDEvr-Znne2j_FeROb2Q\">Let Us Guide You Home</a><br /><img src=\"https://ci3.googleusercontent.com/proxy/74nNqDIzJuR_wWjaTkJvrx5eip9Ni17jksYQSrMkwfZfpbCBw9NkOLtcpopvST_U1bIZr7COpojscD2oXuQPL5y-vPib9iU40jAZT3zGFBKsC7_lBAFnNsSboEgRzyXI7ZCSUEGc2besDA5DjHmzGSwVqgD0GnIBkw=s0-d-e1-ft#https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144736200-1024x388.jpg\" width=\"200\" height=\"75\" /><i><b>Proudly Serving Cabarrus, Rowan, Stanly, Iredell, Mecklenburg and surrounding areas</b></i>','Branding','','publish','closed','closed','','branding','','','2020-10-15 23:27:32','2020-10-15 23:27:32','',0,'https://lantern-realty.com/?elementor_library=branding',0,'elementor_library','',0),(1231,1,'2020-10-18 17:54:52','2020-10-18 17:54:52','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:54:52','2020-10-18 17:54:52','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1230,1,'2020-10-18 17:54:04','2020-10-18 17:54:04','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2><a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\">Team Announcements</a></h2>		\n			<h2>Most Recent Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:54:04','2020-10-18 17:54:04','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1219,1,'2020-10-18 17:37:24','2020-10-18 17:37:24','','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2020-10-18 17:37:24','2020-10-18 17:37:24','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1220,1,'2020-10-18 17:41:28','2020-10-18 17:41:28','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2020-10-18 17:41:28','2020-10-18 17:41:28','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1221,1,'2020-10-18 17:41:49','2020-10-18 17:41:49','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2020-10-18 17:41:49','2020-10-18 17:41:49','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1222,1,'2020-10-18 17:42:23','2020-10-18 17:42:23','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2020-10-18 17:42:23','2020-10-18 17:42:23','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1223,1,'2020-10-18 17:48:53','2020-10-18 17:48:53','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2><a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\">Team Announcements</a></h2>		\n		<p style=\"text-align: center;\">The latest team announcement. Check out the announcements page for a full archive.</p>		\n			<h2>Most Recent Announcement</h2>		\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:48:53','2020-10-18 17:48:53','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1256,1,'2020-10-18 23:09:25','2020-10-18 23:09:25','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n									<a href=\"\">Tab #1</a>\n									<a href=\"\">Tab #2</a>\n									Tab #1\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n									Tab #2\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:09:25','2020-10-18 23:09:25','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1251,1,'2020-10-18 22:53:56','2020-10-18 22:53:56','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n			<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 22:53:56','2020-10-18 22:53:56','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1255,1,'2020-10-18 23:07:49','2020-10-18 23:07:49','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n									<a href=\"\">Tab #1</a>\n									<a href=\"\">Tab #2</a>\n									Tab #1\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n									Tab #2\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:07:49','2020-10-18 23:07:49','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1254,1,'2020-10-18 23:05:37','2020-10-18 23:05:37','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n									<a href=\"\">Tab #1</a>\n									<a href=\"\">Tab #2</a>\n									Tab #1\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n									Tab #2\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 23:05:37','2020-10-18 23:05:37','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1252,1,'2020-10-18 22:57:56','2020-10-18 22:57:56','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n			<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n									<a href=\"\">Tab #1</a>\n									<a href=\"\">Tab #2</a>\n									Tab #1\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n									Tab #2\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">Accordion #1</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">Accordion #2</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 22:57:56','2020-10-18 22:57:56','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1253,1,'2020-10-18 22:59:51','2020-10-18 22:59:51','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n			<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n												<a href=\"\">Accordion #1</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">Accordion #2</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n									<a href=\"\">Tab #1</a>\n									<a href=\"\">Tab #2</a>\n									Tab #1\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n									Tab #2\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 22:59:51','2020-10-18 22:59:51','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1244,0,'2020-10-18 18:49:44','2020-10-18 18:49:44','','Sherri Argabright Head &amp; Shoulder Shot','','inherit','','closed','','sherri-argabright-head-shoulder-shot','','','2020-10-18 18:49:44','2020-10-18 18:49:44','',0,'https://lantern-realty.com/sherri-argabright-head-shoulder-shot/',0,'attachment','image/jpeg',0),(1245,1,'2020-10-18 19:34:20','2020-10-18 19:34:20','<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Kannapolis-Concord/815186\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Kannapolis Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Kannapolis','','publish','closed','closed','','lantern-kannapolis','','','2020-10-19 00:52:00','2020-10-19 00:52:00','',1279,'https://lantern-realty.com/?page_id=1245',0,'page','',0),(1246,1,'2020-10-18 19:34:20','2020-10-18 19:34:20','','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 19:34:20','2020-10-18 19:34:20','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1247,1,'2020-10-18 19:37:49','2020-10-18 19:37:49','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 19:37:49','2020-10-18 19:37:49','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1248,1,'2020-10-18 19:42:03','2020-10-18 19:42:03','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n			<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 19:42:03','2020-10-18 19:42:03','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1249,1,'2020-10-18 19:46:22','2020-10-18 19:46:22','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n			<h2>Lantern Realty  - Kannapolis Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Main Office Kannapolis\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>','Lantern Kannapolis','','inherit','closed','closed','','1245-revision-v1','','','2020-10-18 19:46:22','2020-10-18 19:46:22','',1245,'https://lantern-realty.com/1245-revision-v1/',0,'revision','',0),(1226,1,'2020-10-18 17:51:09','2020-10-18 17:51:09','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2><a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\">Team Announcements</a></h2>		\n		<p style=\"text-align: center;\">The latest team announcement. Check out the announcements page for a full archive.</p>		\n			<a href=\"#\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Most Recent Announcement</h2>		\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:51:09','2020-10-18 17:51:09','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1227,1,'2020-10-18 17:51:47','2020-10-18 17:51:47','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2><a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\">Team Announcements</a></h2>		\n			<a href=\"#\" role=\"button\">\n						See All Announcements\n					</a>\n		<p style=\"text-align: center;\">The latest team announcement. Check out the announcements page for a full archive.</p>		\n			<h2>Most Recent Announcement</h2>		\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:51:47','2020-10-18 17:51:47','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1215,1,'2020-10-18 17:33:15','2020-10-18 17:33:15','<div><div class=WordSection1><div><div><div><p class=MsoNormal>Good Morning All, below are some news &amp; notes for you as we head into a gorgeous weekend and another busy week.<o:p></o:p></p><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- We have a very busy week upcoming with<b> classes!</b>&nbsp; Below are the classes/meetings we have scheduled.&nbsp; I have attached a copy of the Educational Calendar.&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal>** Monday 10/5 at 10am <b>Amanda Cody will be hosting a Broker Q &amp; A</b>.&nbsp; This will be a great time to pick her brain about her success.&nbsp; Amanda is one of the highest producing agents in our Realtor association.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal>** Tuesday 10/6 at 10am Paula will be hosting <b>Dotloop/Forms class</b>.&nbsp;<o:p></o:p></p><div><p class=MsoNormal>** Wednesday 10/7 at 11am will be our next<b> team meeting </b>at the new baseball park across from our office in Kannapolis.&nbsp; Retired Concord Police Captain Wendell Rummage will be hosting a Realtor ® safety class during our meeting.&nbsp; Wendell is also a local Realtor® and knows what we face on a daily basis.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- Speaking of our<b> team meeting</b>.&nbsp; We will not only have Wendell Rummage speaking but a few others.&nbsp; Then at 12pm we will be having lunch served in our office across the street.&nbsp; Meeting starts at 11am at the Sky Lounge in the Ballpark.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- Our <b>Mooresville office</b> is up and running.&nbsp; We are STILL waiting on the MLS to set it up in the system.&nbsp; That being said, if you have the desire to switch to this office please let us know.&nbsp; Once the MLS decides to do their job, we will be transferring folks that want to be transferred.&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- I\'ve had a few folks ask about the status of our <b>SC firm license</b>.&nbsp; We have plans in place to HOPEFULLY get our firm license by November 1st.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- Lastly, if you are <b>not feeling well,</b> please do not come into any of our offices.&nbsp; If you need anything at all let us know.&nbsp; We are blessed to have enough resources in our company that we can help each other out.&nbsp; Please do not risk getting others sick.&nbsp;&nbsp;<o:p></o:p></p></div></div></div><div><div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><p class=MsoNormal><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/2020-Educational-Calendar-2.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2020-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','inherit','closed','closed','','1196-revision-v1','','','2020-10-18 17:33:15','2020-10-18 17:33:15','',1196,'https://lantern-realty.com/1196-revision-v1/',0,'revision','',0),(1216,1,'2020-10-18 17:33:26','2020-10-18 17:33:26','<div><div class=WordSection1><div><div><div><p class=MsoNormal>Hey, just a quick note to start the week....<o:p></o:p></p><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>- Our marketing committee is looking for participants.&nbsp; We would love to have someone from each office.&nbsp; If you have interest please let Hayley Rogers know.&nbsp; We are working to minimize everyone\'s time spent and would love to get as many ideas as possible.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><div><p class=MsoNormal>- We have a very busy week upcoming with<b>&nbsp;classes!</b>&nbsp; Below are the classes/meetings we have scheduled.&nbsp; I have attached a copy of the Educational Calendar.&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal>** <b>THIS MORNING</b> at 10am&nbsp;<b>Amanda Cody will be hosting a Broker Q &amp; A</b>.&nbsp; This will be a great time to pick her brain about her success.&nbsp; Amanda is one of the highest producing agents in our Realtor association.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal>** Tuesday 10/6 at 10am Paula will be hosting&nbsp;<b>Dotloop/Forms class</b>.&nbsp;<o:p></o:p></p><div><p class=MsoNormal>** Wednesday 10/7 at 11am will be our next<b>&nbsp;team meeting&nbsp;</b>at the new baseball park across from our office in Kannapolis.&nbsp; Retired Concord Police Captain Wendell Rummage will be hosting a Realtor ® safety class during our meeting.&nbsp; Wendell is also a local Realtor® and knows what we face on a daily basis.&nbsp;&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>Also, we have added the following classes to our schedule...<o:p></o:p></p></div><div><p class=MsoNormal>- 10/26 Nic Lovelace will be teaching about Foreclosures<o:p></o:p></p></div><div><p class=MsoNormal>- 10/29 I will have another \"2021 Goal Setting\" class in the evening<o:p></o:p></p></div><div><p class=MsoNormal>- 11/17 Paula will be teaching her very popular \"Art of Negotiating\" class.&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>Hope you all have a fantastic and productive week!<o:p></o:p></p></div></div></div></div><div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><p class=MsoNormal><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/2020-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2020-Educational-Calendar.xlsx</a><br /></div>','This Week!','','inherit','closed','closed','','1194-revision-v1','','','2020-10-18 17:33:26','2020-10-18 17:33:26','',1194,'https://lantern-realty.com/1194-revision-v1/',0,'revision','',0),(1217,1,'2020-10-18 17:37:43','2020-10-18 17:37:43','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>','Team Announcements','','publish','closed','closed','','team-announcements','','','2021-04-14 00:35:37','2021-04-14 00:35:37','',882,'https://lantern-realty.com/?page_id=1217',0,'page','',0),(1218,1,'2020-10-18 17:37:09','2020-10-18 17:37:09','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2><a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\">Team Announcements</a></h2>		\n		<p style=\"text-align: center;\">The latest team announcement. Check out the announcements page for a full archive.</p>		\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:37:09','2020-10-18 17:37:09','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1203,1,'2020-10-18 16:58:20','2020-10-18 16:58:20','<h1>Lantern Directory</h1>		\n			<h2>Team Directory</h2>		\n		[table id=team /]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 16:58:20','2020-10-18 16:58:20','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1204,1,'2020-10-18 17:00:46','2020-10-18 17:00:46','<h1>Lantern Directory</h1>		\n			<h2>Team Directory</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n		[table id=team /]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 17:00:46','2020-10-18 17:00:46','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1206,1,'2020-10-18 17:18:33','2020-10-18 17:18:33','[[\"Office\",\"Address\",\"City\",\"State\",\"Zip Code\",\"Phone\",\"Broker In Charge\",\"CMLS\",\"NCREC\",\"HUD NAID\"],[\"Kannapolis\",\"119 West Avenue\",\"Kannapolis\",\"NC\",\"28081\",\"704-298-0087\",\"Deana Petty\",\"10712\",\"C29719\",\"LNTRNR2230\"],[\"Salisbury\",\"105 N. Main Street - Suite B\",\"Salisbury\",\"NC\",\"28144\",\"\",\"Jessica Cloward\",\"1071201\",\"C29719\",\"LNTRNR2230\"],[\"Harrisburg\",\"6477 Morehead Road\",\"Harrisburg\",\"NC\",\"28075\",\"\",\"Hayley Rogers\",\"12779\",\"C29719\",\"LNTRNR2230\"],[\"Albemarle\",\"118 East Main Street\",\"Albemarle\",\"NC\",\"28001\",\"980-318-4961\",\"Michael Fullerton\",\"12781\",\"C29719\",\"LNTRNR2230\"],[\"Mooresville\",\"106 Langtree Village Drive - Suite 301\",\"Mooresville\",\"NC\",\"28117\",\"704-980-9379\",\"Sarah Romesburg\",\"\",\"\",\"\"]]','Offices','','publish','closed','closed','','officeimport-xlsx','','','2020-11-11 02:11:01','2020-11-11 02:11:01','',0,'https://lantern-realty.com/?post_type=tablepress_table&#038;p=1206',0,'tablepress_table','application/json',0),(1207,1,'2020-10-18 17:18:59','2020-10-18 17:18:59','[[\"Office\",\"Address\",\"City\",\"State\",\"Zip Code\",\"Phone\",\"Broker In Charge\",\"CMLS\",\"NCREC\",\"HUD NAID\"],[\"Kannapolis\",\"119 West Avenue\",\"Kannapolis\",\"NC\",\"28081\",\"704-298-0087\",\"Deana Petty\",\"10712\",\"C29719\",\"LNTRNR2230\"],[\"Salisbury\",\"105 N. Main Street - Suite B\",\"Salisbury\",\"NC\",\"28144\",\"\",\"Jessica Cloward\",\"1071201\",\"C29719\",\"LNTRNR2230\"],[\"Harrisburg\",\"6477 Morehead Road\",\"Harrisburg\",\"NC\",\"28075\",\"\",\"Hayley Rogers\",\"12779\",\"C29719\",\"LNTRNR2230\"],[\"Albemarle\",\"118 East Main Street\",\"Albemarle\",\"NC\",\"28001\",\"980-318-4961\",\"Michael Fullerton\",\"12781\",\"C29719\",\"LNTRNR2230\"],[\"Mooresville\",\"106 Langtree Village Drive - Suite 301\",\"Mooresville\",\"NC\",\"28117\",\"\",\"Sarah Romesburg\",\"\",\"\",\"\"]]','Offices','','inherit','closed','closed','','1206-revision-v1','','','2020-10-18 17:18:59','2020-10-18 17:18:59','',1206,'https://lantern-realty.com/1206-revision-v1/',0,'revision','',0),(1208,1,'2020-10-18 17:19:24','2020-10-18 17:19:24','<h1>Lantern Directory</h1>		\n			<h2>Team Directory</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n		[table id=team /][table id=offices /]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 17:19:24','2020-10-18 17:19:24','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1209,1,'2020-10-18 17:21:27','2020-10-18 17:21:27','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		[table id=offices /]		\n			<h2>Team Directory</h2>		\n		[table id=team /]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 17:21:27','2020-10-18 17:21:27','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1210,1,'2020-10-18 17:23:33','2020-10-18 17:23:33','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 17:23:33','2020-10-18 17:23:33','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1211,1,'2020-10-18 17:25:15','2020-10-18 17:25:15','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 17:25:15','2020-10-18 17:25:15','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1212,1,'2020-10-18 17:26:08','2020-10-18 17:26:08','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 17:26:08','2020-10-18 17:26:08','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1213,1,'2020-10-18 17:26:35','2020-10-18 17:26:35','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2020-10-18 17:26:35','2020-10-18 17:26:35','',1175,'https://lantern-realty.com/1175-revision-v1/',0,'revision','',0),(1214,1,'2020-10-18 17:30:06','2020-10-18 17:30:06','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">The latest team announcement. Check out the announcements page for a full archive.</p>		\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:30:06','2020-10-18 17:30:06','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1199,1,'2020-10-18 16:53:33','2020-10-18 16:53:33','[[\"Last Name\",\"First Name\",\"Phone\",\"Email\",\"Home Office\",\"Team Role\",\"License #\",\"MLS ID\"],[\"Aldridge\",\"Jeremy\",\"704-773-0722\",\"kadaendeavorenterprises@gmail.com\",\"Kannapolis\",\"Broker\",306776,68707],[\"Allen\",\"Maranda\",\"704-819-7111\",\"Mandee704@hotmail.com\",\"Harrisburg\",\"Broker\",308723,71114],[\"Allison\",\"Sheila\",\"828-712-7843\",\"sheila.allison10@gmail.com\",\"Albemarle\",\"Broker\",307918,69499],[\"Amoakon\",\"Sabine\",\"704-433-8462\",\"sab1.homes@outlook.com\",\"Kannapolis\",\"Broker\",316331,78139],[\"Argabright\",\"Sherri Wiles\",\"704-202-0806\",\"sherriargabright@gmail.com\",\"Kannapolis\",\"Broker\",220340,97879],[\"Aylesworth\",\"Alan\",\"980-330-8401\",\"alan.aylesworth.lantern@gmail.com\",\"Salisbury\",\"Broker\",308001,69474],[\"Barber\",\"Casey\",\"678-516-5196\",\"casey.m.barber@gmail.com\",\"Kannapolis\",\"Broker\",309318,71136],[\"Bare\",\"Alexandria\",\"704-783-5434\",\"abarehomes@gmail.com\",\"Salisbury\",\"Broker\",325549,84360],[\"Baxter\",\"Cheryl\",\"704-796-8843\",\"cmbaxter2@gmail.com\",\"Kannapolis\",\"Broker\",298432,61673],[\"Bendig\",\"Robbie\",\"704-640-4171\",\"rbendig89@gmail.com\",\"Salisbury\",\"Broker\",303589,65910],[\"Benton\",\"Toni\",\"980-521-2696\",\"tbenton81@gmail.com\",\"Kannapolis\",\"Broker\",310611,72825],[\"Bird\",\"April\",\"901-569-3161\",\"abirdhomes@gmail.com\",\"Mooresville\",\"Broker\",301315,63368],[\"Boger\",\"Annie\",\"980-521-3988\",\"Annie.homes4u@gmail.com\",\"Kannapolis\",\"Broker\",291550,50846],[\"Brown\",\"Elizabeth\",\"704-421-0317\",\"elizabethbrownrealtor@gmail.com\",\"Kannapolis\",\"Broker\",302094,62799],[\"Brown\",\"Brenda\",\"704-796-1948\",\"seniors2@twc.com\",\"Kannapolis\",\"Broker\",302340,70430],[\"Bullock\",\"Dale\",\"704-791-5457\",\"dale.bullock2014realtor@gmail.com\",\"Kannapolis\",\"Broker\",280284,34573],[\"Cannon\",\"Janice\",\"205-514-5124\",\"janiceacannon@gmail.com\",\"Harrisburg\",\"Broker\",322349,83949],[\"Cauble\",\"Crystal\",\"980-521-8431\",\"crystalcauble27@gmail.com\",\"Kannapolis\",\"Broker\",297260,60165],[\"Caudill\",\"Evonne\",\"704-791-7012\",\"ecaudill12@gmail.com\",\"Kannapolis\",\"Broker\",242767,52756],[\"Chambers\",\"Renee\",\"704-925-7938\",\"NC.Realtor.Renee@gmail.com\",\"Kannapolis\",\"Broker\",316110,82316],[\"Chandler\",\"Emily\",\"615-397-1925\",\"emilychandler.realtor@gmail.com\",\"Harrisburg\",\"Broker\",297265,60204],[\"Christy\",\"Meredith\",\"980-248-4097\",\"meredith@meredithchristy.com\",\"Harrisburg\",\"Broker\",298605,61273],[\"Clark\",\"Tracie\",\"704-900-4637\",\"tracieclarksells@gmail.com\",\"Harrisburg\",\"Broker\",238413,29140],[\"Clodfelter\",\"Jody\",\"704-438-2190\",\"jodyc1972@gmail.com\",\"Albemarle\",\"Broker\",297153,58787],[\"Cloward\",\"Jessica\",\"704-502-8383\",\"jessicacloward1@gmail.com\",\"Salisbury\",\"Broker - in - Charge\",298274,57857],[\"Cody\",\"Amanda\",\"980-581-1399\",\"amandaearnhardt@yahoo.com\",\"Albemarle\",\"Broker\",217780,50220],[\"Cook\",\"Jenna\",\"704-960-5591\",\"4jennacook@gmail.com\",\"Kannapolis\",\"Broker\",293117,53960],[\"Davis\",\"Michael\",\"\",\"mdavis@thewhiteoakgrove.com\",\"Kannapolis\",\"Broker\",289518,548508637],[\"Drakulich\",\"Kimberly\",\"704-778-6959\",\"kim.drakulich@gmail.com\",\"Kannapolis\",\"Broker\",277431,35684],[\"Dunphy\",\"Australia\",\"704-701-0177\",\"cdunphy51@hotmail,com\",\"Kannapolis\",\"Broker\",293885,67265],[\"Erion\",\"Ivonne\",\"704-796-3530\",\"ivonne@ivonneerion.com\",\"Kannapolis\",\"Broker\",289340,48565],[\"Evans\",\"Amy\",\"704-273-0107\",\"amyevansrealty@gmail.com\",\"Kannapolis\",\"Broker\",297737,59809],[\"Farlow\",\"Michael\",\"828-231-5466\",\"mfarlowrealtor@gmail.com\",\"Asheville\",\"Broker\",\"\",\"\"],[\"Ferlauto\",\"Ashley\",\"980-333-8085\",\"ashleyferlauto@gmail.com\",\"Kannapolis\",\"Broker\",291080,50443],[\"Fox\",\"Tammy\",\"704-785-7597\",\"tammyafox@gmail.com\",\"Kannapolis\",\"Broker\",278107,31636],[\"Franklin\",\"Jeff\",\"704-787-4888\",\"jeff.franklin.realtor@gmail.com\",\"Salisbury\",\"Broker\",298704,61490],[\"Fullerton\",\"Michael\",\"980-318-4961\",\"mikefullerton72@gmail.com\",\"Albemarle\",\"Broker - in - Charge\",290662,51527],[\"Garcia\",\"Yira\",\"704-907-9573\",\"ygarciarealty@gmail.com\",\"Kannapolis\",\"Broker\",300114,63290],[\"Gearing\",\"Lynnette\",\"704-699-6902\",\"lynnettegearing.realtor@gmail.com\",\"Kannapolis\",\"Broker\",306394,69473],[\"Griffin\",\"Deborah\",\"980-428-2462\",\"deborahg142@gmail.com\",\"Salisbury\",\"Broker\",145465,56410],[\"Hager\",\"Cathy\",\"980-521-4429\",\"1cathyhager@gmail.com\",\"Kannapolis\",\"Broker\",294095,54235],[\"Hallman\",\"Liz\",\"980-621-9575\",\"lizphallman@gmail.com\",\"Kannapolis\",\"Broker\",281082,35806],[\"Haywood\",\"Conard\",\"704-467-5102\",\"conardhaywood@gmail.com\",\"Kannapolis\",\"Broker\",319615,\"\"],[\"Henrickson\",\"Ivan\",\"704-309-7841\",\"ivanbhenrickson@gmail.com\",\"Mooresville\",\"Broker\",319616,80237],[\"Hill\",\"Hosanna\",\"336-317-8050\",\"hill.hosanna@gmail.com\",\"Kannapolis\",\"Broker\",315320,76468],[\"Hiner\",\"Donna\",\"704-956-9898\",\"donnasellsrealestate1@gmail.com\",\"Harrisburg\",\"Broker\",272915,21485],[\"Howell\",\"Kimberly\",\"704-699-2600\",\"kdhowell1996@gmail.com\",\"Salisbury\",\"Broker\",302115,64440],[\"Jackling\",\"Melissa\",\"980-621-4623\",\"onlymyrealtormelissa@gmail.com\",\"Kannapolis\",\"Broker\",291920,51371],[\"Jalynski\",\"Christine\",\"704-749-4944\",\"cjalynskirealty@gmail.com\",\"Kannapolis\",\"Broker\",297054,58601],[\"Johnson\",\"Priscilla\",\"704-891-5386\",\"priscillajrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"\",80621],[\"Keller\",\"Kelly\",\"704-467-4485\",\"kelly.keller.realty@gmail.com\",\"Kannapolis\",\"Broker\",313269,74509],[\"Keller\",\"Margie\",\"704-245-2739\",\"margkellerhomes@gmail.com\",\"Salisbury\",\"Broker\",298750,61747],[\"Kidd\",\"Cheyenne\",\"980-939-3809\",\"cheyennekidd00@gmail.com\",\"Salisbury\",\"Broker\",318995,81249],[\"LaCroix\",\"Melissa\",\"704-796-6531\",\"mlacroix.realty@gmail.com\",\"Kannapolis\",\"Broker\",303207,65548],[\"Lamb\",\"Dawn\",\"980-781-7385\",\"dawnlambrealtor@gmail.com\",\"Kannapolis\",\"Broker\",315881,77815],[\"Lambert\",\"Amanda\",\"704-400-0641\",\"teamlambert.sellsnc@gmail.com\",\"Kannapolis\",\"Broker\",25766,65579],[\"Lambert\",\"Jerry\",\"704-791-0429\",\"jerry.teamlambert@gmail.com\",\"Kannapolis\",\"Broker\",321038,81412],[\"Lambert\",\"Pam\",\"704-791-1074\",\"pamlambert.ncrealtor@gmail.com\",\"Kannapolis\",\"Broker\",216222,16805],[\"Laney\",\"Sandi\",\"704-773-5886\",\"sandilaney2@gmail.com\",\"Kannapolis\",\"Broker\",272563,22259],[\"Lawing\",\"Katherine\",\"828-772-0220\",\"klawingrealtor@gmail.com\",\"Asheville\",\"Broker - in - Charge\",\"\",\"\"],[\"Leonard\",\"Bret\",\"980-521-7156\",\"buywithbret@gmail.com\",\"Salisbury\",\"Broker\",303052,65034],[\"Love Hammel\",\"Alicia\",\"704-699-7843\",\"aliciahammelrealtor@gmail.com\",\"Kannapolis\",\"Broker\",301472,64447],[\"Martinez Campos\",\"Viviana\",\"704-777-7245\",\"12martiv@gmail.com\",\"Kannapolis\",\"Broker\",318492,78947],[\"Matthews\",\"Helen\",\"704-796-4026\",\"hamatthews@gmail.com\",\"Kannapolis\",\"Broker\",303222,65519],[\"McCauley\",\"Lindsey\",\"704-236-7850\",\"lmccauley727@gmail.com\",\"Kannapolis\",\"Broker\",298645,61546],[\"McCLure\",\"Taylor\",\"980-253-0223\",\"taylormcclure23@gmail.com\",\"Kannapolis\",\"Broker\",321999,82269],[\"Merrell\",\"Connie\",\"704-701-1678\",\"connie.merrell.realtor@gmail.com\",\"Kannapolis\",\"Broker\",320338,81061],[\"Miltz\",\"Deanna\",\"704-634-6289\",\"dmiltzrealtor@gmail.com\",\"Harrisburg\",\"Broker\",298941,61437],[\"Monrad\",\"Rachel\",\"704-682-9422\",\"rachel@randsrealtygroup.com\",\"Mooresville\",\"Broker\",251860,32949],[\"Nutter\",\"Julie\",\"240-888-7493\",\"teamnutter@gmail.com\",\"Kannapolis\",\"Broker\",293824,48403],[\"Overcash\",\"Jason\",\"980-622-6327\",\"jasonovercashrealty@gmail.com\",\"Kannapolis\",\"Broker\",305546,68295],[\"Overcash\",\"Laura\",\"704-699-0765\",\"lovercashre@gmail.com\",\"Kannapolis\",\"Broker\",301686,63472],[\"Petty\",\"Deana\",\"704-258-8068\",\"deana327@gmail.com\",\"Kannapolis\",\"Broker/Owner\",263080,72155],[\"Puckett\",\"Chris\",\"704-298-5872\",\"ch2realty@gmail.com\",\"Kannapolis\",\"Qualifying Broker/Owner\",279213,32613],[\"Queen\",\"Rodney\",\"704-239-3617\",\"rodneque@aol.com\",\"Salisbury\",\"Broker\",197764,18091],[\"Rhew\",\"Rick\",\"704-491-2458\",\"ricksellsnc@gmail.com\",\"Harrisburg\",\"Broker\",288631,49282],[\"Robinson\",\"Kelly\",\"704-699-2268\",\"kelly.robinson.realtor@gmail.com\",\"Kannapolis\",\"Broker\",316981,79218],[\"Rogers\",\"Hayley\",\"704-431-2816\",\"hayley.realestate.rogers@gmail.com\",\"Harrisburg\",\"Broker - in - Charge\",281085,35693],[\"Romesburg\",\"Sarah\",\"336-466-1646\",\"sarah@randsrealtygroup.com\",\"Mooresville\",\"Broker\",279215,32982],[\"Rummage\",\"Wendell\",\"704-791-7475\",\"realtor.wendell.rummage@gmail.com\",\"Kannapolis\",\"Broker - in - Charge\",288825,46923],[\"Sadler\",\"Kimberly\",\"704-798-8338\",\"kimsadler.realtor@gmail.com\",\"Kannapolis\",\"Broker\",290260,49723],[\"Severt\",\"Paula\",\"704-232-3433\",\"paulasevert@yahoo.com\",\"Kannapolis\",\"Broker/Owner\",256100,68433],[\"Shaw\",\"Taina\",\"704-467-0090\",\"taina@tshawrealty.com\",\"Kannapolis\",\"Broker\",172196,17219],[\"Sherin\",\"Chelsi\",\"570-690-3723\",\"chelsi.sherin@gmail.com\",\"Kannapolis\",\"Broker\",317621,79645],[\"Sides\",\"Holden\",\"704-699-2092\",\"sideshb94@yahoo.com\",\"Kannapolis\",\"Broker\",322169,\"\"],[\"Sloan Holshouser\",\"Courtney\",\"704-754-7104\",\"csloansellshomes@gmail.com\",\"Salisbury\",\"Broker\",314926,\"\"],[\"Starnes\",\"Susan\",\"704-305-0040\",\"susansellsnchomes@gmail.com\",\"Harrisburg\",\"Broker\",304452,66546],[\"Stillinger\",\"Ethan\",\"704-957-1282\",\"ethanstillingerlrd@gmail.com\",\"Kannapolis\",\"Broker\",283899,39819],[\"Strickland\",\"Tricia\",\"704-791-7314\",\"tricia.strickland927@gmail.com\",\"Kannapolis\",\"Broker\",314178,75477],[\"Sue Bingham\",\"Brenda\",\"704-787-2539\",\"brenda@bingham.cc\",\"Albemarle\",\"Broker\",302334,65004],[\"Suther\",\"John\",\"704-622-1432\",\"johnsutherllc@gmail.com\",\"Kannapolis\",\"Broker\",309445,71221],[\"Thompson\",\"Chuck\",\"704-701-0129\",\"crtbroker@gmail.com\",\"Kannapolis\",\"Broker\",278357,31317],[\"Tichnor\",\"Michele\",\"704-699-8824\",\"Michele.Tichnor@gmail.com\",\"Kannapolis\",\"Broker\",321191,81688],[\"Trask\",\"Kimberly\",\"336-906-0848\",\"kimberlyktrask@gmail.com\",\"Kannapolis\",\"Broker\",312666,75085],[\"Uttecht\",\"Ashley\",\"704-792-5147\",\"ashleyuttecht@gmail.com\",\"Mooresville\",\"Broker\",303298,65845],[\"Walter\",\"Dominique\",\"828-638-5353\",\"dwalterhomes4u@gmail.com\",\"Mooresville\",\"Broker\",318276,78901],[\"Watson\",\"Brianne\",\"704-791-3272\",\"briannewatsonrealtor@gmail.com\",\"Kannapolis\",\"Broker\",293189,53736],[\"Widenhouse\",\"Cindy\",\"704-795-8017\",\"cindy.s.widenhouse@gmail.com\",\"Kannapolis\",\"Broker\",299028,61885],[\"Wilson\",\"Rick\",\"704-996-9902\",\"richard.wilson4565@gmail.com\",\"Kannapolis\",\"Broker\",321788,81743],[\"Wiser\",\"Paige\",\"704-904-1903\",\"PaigeWiserRealtor@gmail.com\",\"Salisbury\",\"Broker\",309172,71081],[\"Wooley\",\"Todd\",\"704-904-7162\",\"twooleyrealty@gmail.com\",\"Kannapolis\",\"Broker\",309536,71163],[\"Yates\",\"Melissa\",\"704-239-3835\",\"melissayates4u@gmail.com\",\"Salisbury\",\"Broker\",307917,69428],[\"Zhang\",\"Min\",\"319-471-1622\",\"realtymin77@gmail.com\",\"Harrisburg\",\"Broker\",299816,63292]]','Team Directory','','publish','closed','closed','','teamimport-xlsx','','','2021-03-14 22:48:57','2021-03-14 22:48:57','',0,'https://lantern-realty.com/?post_type=tablepress_table&#038;p=1199',0,'tablepress_table','application/json',0),(1421,1,'2020-11-11 02:08:05','2020-11-11 02:08:05','[[\"Last Name\",\"First Name\",\"Phone\",\"Email\",\"Home Office\",\"Team Role\",\"License #\",\"MLS ID\"],[\"Aldridge\",\"Jeremy\",\"704-773-0722\",\"kadaendeavorenterprises@gmail.com\",\"Kannapolis\",\"Broker\",306776,68707],[\"Allison\",\"Sheila\",\"828-712-7843\",\"sheila.allison10@gmail.com\",\"Albemarle\",\"Broker\",307918,69499],[\"Amoakon\",\"Sabine\",\"704-433-8462\",\"sab1.homes@outlook.com\",\"Kannapolis\",\"Broker\",316331,78139],[\"Argabright\",\"Sherri Wiles\",\"704-202-0806\",\"sherriargabright@gmail.com\",\"Kannapolis\",\"Broker\",220340,97879],[\"Aylesworth\",\"Alan\",\"980-330-8401\",\"alan.aylesworth.lantern@gmail.com\",\"Salisbury\",\"Broker\",308001,69474],[\"Barber\",\"Casey\",\"678-516-5196\",\"casey.m.barber@gmail.com\",\"Kannapolis\",\"Broker\",309318,71136],[\"Baxter\",\"Cheryl\",\"704-796-8843\",\"cmbaxter2@gmail.com\",\"Kannapolis\",\"Broker\",298432,61673],[\"Bendig\",\"Robbie\",\"704-640-4171\",\"rbendig89@gmail.com\",\"Salisbury\",\"Broker\",303589,65910],[\"Benton\",\"Toni\",\"980-521-2696\",\"tbenton81@gmail.com\",\"Kannapolis\",\"Broker\",310611,72825],[\"Bird\",\"April\",\"901-569-3161\",\"abirdhomes@gmail.com\",\"Kannapolis\",\"Broker\",301315,63368],[\"Boger\",\"Annie\",\"980-521-3988\",\"Annie.homes4u@gmail.com\",\"Kannapolis\",\"Broker\",291550,50846],[\"Brown\",\"Elizabeth\",\"704-421-0317\",\"elizabethbrownrealtor@gmail.com\",\"Kannapolis\",\"Broker\",302094,62799],[\"Brown\",\"Brenda\",\"704-796-1948\",\"seniors2@twc.com\",\"Kannapolis\",\"Broker\",302340,70430],[\"Bullock\",\"Dale\",\"704-791-5457\",\"dale.bullock2014realtor@gmail.com\",\"Kannapolis\",\"Broker\",280284,34573],[\"Cauble\",\"Crystal\",\"980-521-8431\",\"crystalcauble27@gmail.com\",\"Kannapolis\",\"Broker\",297260,60165],[\"Caudill\",\"Evonne\",\"704-791-7012\",\"ecaudill12@gmail.com\",\"Kannapolis\",\"Broker\",242767,52756],[\"Chandler\",\"Emily\",\"615-397-1925\",\"emilychandler.realtor@gmail.com\",\"Harrisburg\",\"Broker\",297265,60204],[\"Christy\",\"Meredith\",\"980-248-4097\",\"meredith@meredithchristy.com\",\"Harrisburg\",\"Broker\",298605,61273],[\"Clark\",\"Tracie\",\"704-900-4637\",\"tracieclarksells@gmail.com\",\"Harrisburg\",\"Broker\",238413,29140],[\"Clodfelter\",\"Jody\",\"704-438-2190\",\"jodyc1972@gmail.com\",\"Albemarle\",\"Broker\",297153,58787],[\"Cloward\",\"Jessica\",\"704-502-8383\",\"jessicacloward1@gmail.com\",\"Salisbury\",\"Broker - in - Charge\",298274,57857],[\"Cody\",\"Amanda\",\"980-581-1399\",\"amandaearnhardt@yahoo.com\",\"Albemarle\",\"Broker\",217780,50220],[\"Cook\",\"Jenna\",\"704-960-5591\",\"4jennacook@gmail.com\",\"Kannapolis\",\"Broker\",293117,53960],[\"Crowder\",\"Lisa\",\"704-380-7455\",\"lisadcrowder@gmail.com\",\"Harrisburg\",\"Broker\",279316,32788],[\"Davis\",\"Michael\",\"\",\"mdavis@thewhiteoakgrove.com\",\"Kannapolis\",\"Broker\",289518,548508637],[\"Drakulich\",\"Kimberly\",\"704-778-6959\",\"kim.drakulich@gmail.com\",\"Kannapolis\",\"Broker\",277431,35684],[\"Dunphy\",\"Australia\",\"704-701-0177\",\"cdunphy51@hotmail,com\",\"Kannapolis\",\"Broker\",293885,67265],[\"Erion\",\"Ivonne\",\"704-796-3530\",\"ivonne@ivonneerion.com\",\"Kannapolis\",\"Broker\",289340,48565],[\"Evans\",\"Amy\",\"704-273-0107\",\"amyevansrealty@gmail.com\",\"Kannapolis\",\"Broker\",297737,59809],[\"Ferlauto\",\"Ashley\",\"980-333-8085\",\"ashleyferlauto@gmail.com\",\"Kannapolis\",\"Broker\",291080,50443],[\"Franklin\",\"Jeff\",\"704-787-4888\",\"jeff.franklin.realtor@gmail.com\",\"Salisbury\",\"Broker\",298704,61490],[\"Fullerton\",\"Michael\",\"980-318-4961\",\"mikefullerton72@gmail.com\",\"Albemarle\",\"Broker - in - Charge\",290662,51527],[\"Garcia\",\"Yira\",\"704-907-9573\",\"ygarciarealty@gmail.com\",\"Kannapolis\",\"Broker\",300114,63290],[\"Gearing\",\"Lynnette\",\"704-699-6902\",\"lynnettegearing.realtor@gmail.com\",\"Kannapolis\",\"Broker\",306394,69473],[\"Griffin\",\"Deborah\",\"980-428-2462\",\"deborahg142@gmail.com\",\"Salisbury\",\"Broker\",145465,56410],[\"Hager\",\"Cathy\",\"980-521-4429\",\"1cathyhager@gmail.com\",\"Kannapolis\",\"Broker\",294095,54235],[\"Hallman\",\"Liz\",\"980-621-9575\",\"lizphallman@gmail.com\",\"Kannapolis\",\"Broker\",281082,35806],[\"Haywood\",\"Conard\",\"704-467-5102\",\"conardhaywood@gmail.com\",\"Kannapolis\",\"Broker\",319615,\"\"],[\"Hedrick\",\"Courtney\",\"704-608-7893\",\"hedrickhomes@gmail.com\",\"Kannapolis\",\"Broker\",301363,63492],[\"Hedrick\",\"William\",\"704-773-9204\",\"will@thewillhedrick.com\",\"Kannapolis\",\"Broker\",314736,\"\"],[\"Hill\",\"Hosanna\",\"336-317-8050\",\"hill.hosanna@gmail.com\",\"Kannapolis\",\"Broker\",315320,76468],[\"Hiner\",\"Donna\",\"704-956-9898\",\"donnasellsrealestate1@gmail.com\",\"Harrisburg\",\"Broker\",272915,21485],[\"Howell\",\"Kimberly\",\"704-699-2600\",\"kdhowell1996@gmail.com\",\"Salisbury\",\"Broker\",302115,64440],[\"Jackling\",\"Melissa\",\"980-621-4623\",\"onlymyrealtormelissa@gmail.com\",\"Kannapolis\",\"Broker\",291920,51371],[\"Jalynski\",\"Christine\",\"704-749-4944\",\"cjalynskirealty@gmail.com\",\"Kannapolis\",\"Broker\",297054,58601],[\"Johnson\",\"Priscilla\",\"704-891-5386\",\"priscillajrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"\",80621],[\"Keller\",\"Kelly\",\"704-467-4485\",\"kelly.keller.realty@gmail.com\",\"Kannapolis\",\"Broker\",313269,74509],[\"Keller\",\"Margie\",\"704-245-2739\",\"margkellerhomes@gmail.com\",\"Salisbury\",\"Broker\",298750,61747],[\"Kidd\",\"Cheyenne\",\"980-939-3809\",\"cheyennekidd00@gmail.com\",\"Salisbury\",\"Broker\",318995,81249],[\"LaCroix\",\"Melissa\",\"704-796-6531\",\"mlacroix.realty@gmail.com\",\"Kannapolis\",\"Broker\",303207,65548],[\"Lamb\",\"Dawn\",\"980-781-7385\",\"dawnlambrealtor@gmail.com\",\"Kannapolis\",\"Broker\",315881,77815],[\"Lambert\",\"Amanda\",\"704-400-0641\",\"teamlambert.sellsnc@gmail.com\",\"Harrisburg\",\"Broker\",25766,65579],[\"Lambert\",\"Jerry\",\"704-791-0429\",\"jerry.teamlambert@gmail.com\",\"Harrisburg\",\"Broker\",321038,81412],[\"Laney\",\"Sandi\",\"704-773-5886\",\"sandilaney2@gmail.com\",\"Kannapolis\",\"Broker\",272563,22259],[\"Leonard\",\"Bret\",\"980-521-7156\",\"buywithbret@gmail.com\",\"Salisbury\",\"Broker\",303052,65034],[\"Matthews\",\"Helen\",\"704-796-4026\",\"hamatthews@gmail.com\",\"Kannapolis\",\"Broker\",303222,65519],[\"McCauley\",\"Lindsey\",\"704-236-7850\",\"lmccauley727@gmail.com\",\"Kannapolis\",\"Broker\",298645,61546],[\"Merrell\",\"Connie\",\"704-701-1678\",\"connie.merrell.realtor@gmail.com\",\"Kannapolis\",\"Broker\",320338,81061],[\"Miltz\",\"Deanna\",\"704-634-6289\",\"dmiltzrealtor@gmail.com\",\"Harrisburg\",\"Broker\",298941,61437],[\"Monrad\",\"Rachel\",\"704-682-9422\",\"rachel@randsrealtygroup.com\",\"Mooresville\",\"Broker\",251860,32949],[\"Nutter\",\"Julie\",\"240-888-7493\",\"teamnutter@gmail.com\",\"Kannapolis\",\"Broker\",293824,48403],[\"Overcash\",\"Jason\",\"980-622-6327\",\"jasonovercashrealty@gmail.com\",\"Kannapolis\",\"Broker\",305546,68295],[\"Overcash\",\"Laura\",\"704-699-0765\",\"lovercashre@gmail.com\",\"Kannapolis\",\"Broker\",301686,63472],[\"Petty\",\"Deana\",\"704-258-8068\",\"deana327@gmail.com\",\"Kannapolis\",\"BIC/Owner\",263080,72155],[\"Pricher\",\"Lisa\",\"704-288-7392\",\"ncrealtorlisa@gmail.com\",\"Harrisburg\",\"Broker\",276287,24658],[\"Puckett\",\"Chris\",\"704-298-5872\",\"ch2realty@gmail.com\",\"Kannapolis\",\"Qualifying Broker/Owner\",279213,32613],[\"Queen\",\"Rodney\",\"704-239-3617\",\"rodneque@aol.com\",\"Salisbury\",\"Broker\",197764,18091],[\"Rhew\",\"Rick\",\"704-491-2458\",\"ricksellsnc@gmail.com\",\"Harrisburg\",\"Broker\",288631,49282],[\"Robinson\",\"Kelly\",\"704-699-2268\",\"kelly.robinson.realtor@gmail.com\",\"Kannapolis\",\"Broker\",316981,79218],[\"Rogers\",\"Hayley\",\"704-431-2816\",\"hayley.realestate.rogers@gmail.com\",\"Harrisburg\",\"Broker - in - Charge\",281085,35693],[\"Romesburg\",\"Sarah\",\"336-466-1646\",\"sarah@randsrealtygroup.com\",\"Mooresville\",\"Broker\",279215,32982],[\"Sadler\",\"Kimberly\",\"704-798-8338\",\"kimsadler.realtor@gmail.com\",\"Kannapolis\",\"Broker\",290260,49723],[\"Severt\",\"Paula\",\"704-232-3433\",\"paulasevert@yahoo.com\",\"Kannapolis\",\"Broker/Owner\",256100,68433],[\"Sherin\",\"Chelsi\",\"570-690-3723\",\"chelsi.sherin@gmail.com\",\"Kannapolis\",\"Broker\",317621,79645],[\"Sides\",\"Holden\",\"704-699-2092\",\"sideshb94@yahoo.com\",\"Kannapolis\",\"Broker\",322169,\"\"],[\"Solarek\",\"Leslie\",\"229-854-0444\",\"lesliesellsnc@gmail.com\",\"Kannapolis\",\"Broker\",298587,61042],[\"Starnes\",\"Susan\",\"704-305-0040\",\"susansellsnchomes@gmail.com\",\"Harrisburg\",\"Broker\",304452,66546],[\"Stillinger\",\"Ethan\",\"704-957-1282\",\"ethanstillingerlrd@gmail.com\",\"Kannapolis\",\"Broker\",283899,39819],[\"Strickland\",\"Tricia\",\"704-791-7314\",\"tricia.strickland927@gmail.com\",\"Kannapolis\",\"Broker\",314178,75477],[\"Suther\",\"John\",\"704-622-1432\",\"johnsutherllc@gmail.com\",\"Kannapolis\",\"Broker\",309445,71221],[\"Thomas\",\"Ellen\",\"704-791-3141\",\"ellencthomasservices@gmail.com\",\"Kannapolis\",\"Broker\",305464,67704],[\"Thompson\",\"Chuck\",\"704-701-0129\",\"crtbroker@gmail.com\",\"Kannapolis\",\"Broker\",278357,31317],[\"Trask\",\"Kimberly\",\"336-906-0848\",\"kimberlyktrask@gmail.com\",\"Kannapolis\",\"Broker\",312666,75085],[\"Watson\",\"Brianne\",\"704-791-3272\",\"briannewatsonrealtor@gmail.com\",\"Kannapolis\",\"Broker\",293189,53736],[\"Widenhouse\",\"Cindy\",\"704-795-8017\",\"cindy.s.widenhouse@gmail.com\",\"Kannapolis\",\"Broker\",299028,61885],[\"Wilson\",\"Rick\",\"704-996-9902\",\"richard.wilson4565@gmail.com\",\"Kannapolis\",\"Broker\",321788,81743],[\"Wooley\",\"Todd\",\"704-904-7162\",\"twooleyrealty@gmail.com\",\"Kannapolis\",\"Broker\",309536,71163],[\"Yates\",\"Melissa\",\"704-239-3835\",\"melissayates4u@gmail.com\",\"Salisbury\",\"Broker\",307917,69428],[\"Zhang\",\"Min\",\"319-471-1622\",\"realtymin77@gmail.com\",\"Harrisburg\",\"Broker\",299816,63292]]','Team Directory','','inherit','closed','closed','','1199-revision-v1','','','2020-11-11 02:08:05','2020-11-11 02:08:05','',1199,'https://lantern-realty.com/1199-revision-v1/',0,'revision','',0),(1200,1,'2020-10-18 16:54:43','2020-10-18 16:54:43','[[\"Last Name\",\"First Name\",\"Phone\",\"Email\",\"Home Office\",\"Team Role\",\"License #\",\"MLS ID\"],[\"Aldridge\",\"Jeremy\",\"704-773-0722\",\"kadaendeavorenterprises@gmail.com\",\"Kannapolis\",\"Broker\",\"306776\",\"68707\"],[\"Allison\",\"Sheila\",\"828-712-7843\",\"sheila.allison10@gmail.com\",\"Albemarle\",\"Broker\",\"307918\",\"69499\"],[\"Amoakon\",\"Sabine\",\"704-433-8462\",\"sab1.homes@outlook.com\",\"Kannapolis\",\"Broker\",\"316331\",\"78139\"],[\"Arledge\",\"Shelly\",\"980-258-3583\",\"arledgeshelly1@gmail.com\",\"Kannapolis\",\"Broker\",\"309820\",\"71848\"],[\"Barber\",\"Casey\",\"678-516-5196\",\"casey.m.barber@gmail.com\",\"Kannapolis\",\"Broker\",\"309318\",\"71136\"],[\"Baxter\",\"Cheryl\",\"704-796-8843\",\"cmbaxter2@gmail.com\",\"Kannapolis\",\"Broker\",\"298432\",\"61673\"],[\"Bendig\",\"Robbie\",\"704-640-4171\",\"rbendig89@gmail.com\",\"Salisbury\",\"Broker\",\"303589\",\"65910\"],[\"Benton\",\"Toni\",\"980-521-2696\",\"tbenton81@gmail.com\",\"Kannapolis\",\"Broker\",\"310611\",\"72825\"],[\"Bird\",\"April\",\"901-569-3161\",\"abirdhomes@gmail.com\",\"Kannapolis\",\"Broker\",\"301315\",\"63368\"],[\"Boger\",\"Annie\",\"980-521-3988\",\"Annie.homes4u@gmail.com\",\"Kannapolis\",\"Broker\",\"291550\",\"50846\"],[\"Brown\",\"Elizabeth\",\"704-421-0317\",\"elizabethbrownrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"302094\",\"62799\"],[\"Brown\",\"Brenda\",\"704-796-1948\",\"seniors2@twc.com\",\"Kannapolis\",\"Broker\",\"302340\",\"70430\"],[\"Bullock\",\"Dale\",\"704-791-5457\",\"dale.bullock2014realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"280284\",\"34573\"],[\"Cauble\",\"Crystal\",\"980-521-8431\",\"crystalcauble27@gmail.com\",\"Kannapolis\",\"Broker\",\"297260\",\"60165\"],[\"Caudill\",\"Evonne\",\"704-791-7012\",\"ecaudill12@gmail.com\",\"Kannapolis\",\"Broker\",\"242767\",\"52756\"],[\"Chandler\",\"Emily\",\"615-397-1925\",\"emilychandler.realtor@gmail.com\",\"Harrisburg\",\"Broker\",\"297265\",\"60204\"],[\"Christy\",\"Meredith\",\"980-248-4097\",\"meredith@meredithchristy.com\",\"Harrisburg\",\"Broker\",\"298605\",\"61273\"],[\"Clark\",\"Tracie\",\"704-900-4637\",\"tracieclarksells@gmail.com\",\"Harrisburg\",\"Broker\",\"238413\",\"29140\"],[\"Clodfelter\",\"Jody\",\"704-438-2190\",\"jodyc1972@gmail.com\",\"Albemarle\",\"Broker\",\"297153\",\"58787\"],[\"Cloward\",\"Jessica\",\"704-502-8383\",\"jessicacloward1@gmail.com\",\"Salisbury\",\"Broker - in - Charge\",\"298274\",\"57857\"],[\"Cody\",\"Amanda\",\"980-581-1399\",\"amandaearnhardt@yahoo.com\",\"Albemarle\",\"Broker\",\"217780\",\"50220\"],[\"Crowder\",\"Lisa\",\"704-380-7455\",\"lisadcrowder@gmail.com\",\"Harrisburg\",\"Broker\",\"279316\",\"32788\"],[\"Davis\",\"Michael\",\"\",\"mdavis@thewhiteoakgrove.com\",\"Kannapolis\",\"Broker\",\"289518\",\"548508637\"],[\"Drakulich\",\"Kimberly\",\"704-778-6959\",\"kim.drakulich@gmail.com\",\"Kannapolis\",\"Broker\",\"277431\",\"35684\"],[\"Dunphy\",\"Australia\",\"704-701-0177\",\"cdunphy51@hotmail,com\",\"Kannapolis\",\"Broker\",\"293885\",\"67265\"],[\"Erion\",\"Ivonne\",\"704-796-3530\",\"ivonne@ivonneerion.com\",\"Kannapolis\",\"Broker\",\"289340\",\"48565\"],[\"Evans\",\"Amy\",\"704-273-0107\",\"amyevansrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"297737\",\"59809\"],[\"Ferlauto\",\"Ashley\",\"980-333-8085\",\"ashleyferlauto@gmail.com\",\"Kannapolis\",\"Broker\",\"291080\",\"50443\"],[\"Franklin\",\"Jeff\",\"704-787-4888\",\"jeff.franklin.realtor@gmail.com\",\"Salisbury\",\"Broker\",\"298704\",\"61490\"],[\"Fullerton\",\"Michael\",\"980-318-4961\",\"mikefullerton72@gmail.com\",\"Albemarle\",\"Broker - in - Charge\",\"290662\",\"51527\"],[\"Garcia\",\"Yira\",\"704-907-9573\",\"ygarciarealty@gmail.com\",\"Kannapolis\",\"Broker\",\"300114\",\"63290\"],[\"Gearing\",\"Lynnette\",\"704-699-6902\",\"lynnettegearing.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"306394\",\"69473\"],[\"Griffin\",\"Deborah\",\"980-428-2462\",\"deborahg142@gmail.com\",\"Salisbury\",\"Broker\",\"145465\",\"56410\"],[\"Hager\",\"Cathy\",\"980-521-4429\",\"1cathyhager@gmail.com\",\"Kannapolis\",\"Broker\",\"294095\",\"54235\"],[\"Haywood\",\"Conard\",\"704-467-5102\",\"conardhaywood@gmail.com\",\"Kannapolis\",\"Broker\",\"319615\",\"\"],[\"Hedrick\",\"Courtney\",\"704-608-7893\",\"hedrickhomes@gmail.com\",\"Kannapolis\",\"Broker\",\"301363\",\"63492\"],[\"Hedrick\",\"William\",\"704-773-9204\",\"will@thewillhedrick.com\",\"Kannapolis\",\"Broker\",\"314736\",\"\"],[\"Henderson\",\"Jessie\",\"704-608-8081\",\"jessiehenderson8@gmail.com\",\"Kannapolis\",\"Broker\",\"300281\",\"66060\"],[\"Hill\",\"Hosanna\",\"336-317-8050\",\"hill.hosanna@gmail.com\",\"Kannapolis\",\"Broker\",\"315320\",\"76468\"],[\"Hiner\",\"Donna\",\"704-956-9898\",\"donnasellsrealestate1@gmail.com\",\"Harrisburg\",\"Broker\",\"272915\",\"21485\"],[\"Hines\",\"Ashley\",\"704-787-1576\",\"ahines0428@gmail.com\",\"Kannapolis\",\"Broker\",\"311494\",\"73057\"],[\"Howell\",\"Kimberly\",\"704-699-2600\",\"kdhowell1996@gmail.com\",\"Salisbury\",\"Broker\",\"302115\",\"64440\"],[\"Jackling\",\"Melissa\",\"980-621-4623\",\"onlymyrealtormelissa@gmail.com\",\"Kannapolis\",\"Broker\",\"291920\",\"51371\"],[\"Jalynski\",\"Christine\",\"704-749-4944\",\"cjalynskirealty@gmail.com\",\"Kannapolis\",\"Broker\",\"297054\",\"58601\"],[\"Johnson\",\"Priscilla\",\"704-891-5386\",\"priscillajrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"\",\"80621\"],[\"Keller\",\"Kelly\",\"704-467-4485\",\"kelly.keller.realty@gmail.com\",\"Kannapolis\",\"Broker\",\"313269\",\"74509\"],[\"Keller\",\"Margie\",\"704-245-2739\",\"margkellerhomes@gmail.com\",\"Salisbury\",\"Broker\",\"298750\",\"61747\"],[\"Kidd\",\"Cheyenne\",\"980-939-3809\",\"cheyennekidd00@gmail.com\",\"Salisbury\",\"Broker\",\"318995\",\"81249\"],[\"LaCroix\",\"Melissa\",\"704-796-6531\",\"mlacroix.realty@gmail.com\",\"Kannapolis\",\"Broker\",\"303207\",\"65548\"],[\"Lamb\",\"Dawn\",\"980-781-7385\",\"dawnlambrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"315881\",\"77815\"],[\"Laney\",\"Sandi\",\"704-773-5886\",\"sandilaney2@gmail.com\",\"Kannapolis\",\"Broker\",\"272563\",\"22259\"],[\"Leonard\",\"Bret\",\"980-521-7156\",\"buywithbret@gmail.com\",\"Salisbury\",\"Broker\",\"303052\",\"65034\"],[\"Matthews\",\"Helen\",\"704-796-4026\",\"hamatthews@gmail.com\",\"Kannapolis\",\"Broker\",\"303222\",\"65519\"],[\"McCauley\",\"Lindsey\",\"704-236-7850\",\"lmccauley727@gmail.com\",\"Kannapolis\",\"Broker\",\"298645\",\"61546\"],[\"Merrell\",\"Connie\",\"704-701-1678\",\"connie.merrell.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"320338\",\"81061\"],[\"Miller\",\"MaClay\",\"704-244-0065\",\"MaClayMiller@gmail.com\",\"Kannapolis\",\"Broker\",\"314056\",\"75244\"],[\"Miltz\",\"Deanna\",\"704-634-6289\",\"dmiltzrealtor@gmail.com\",\"Harrisburg\",\"Broker\",\"298941\",\"61437\"],[\"Monrad\",\"Rachel\",\"704-682-9422\",\"rachel@randsrealtygroup.com\",\"Mooresville\",\"Broker\",\"251860\",\"32949\"],[\"Nutter\",\"Julie\",\"240-888-7493\",\"teamnutter@gmail.com\",\"Kannapolis\",\"Broker\",\"293824\",\"48403\"],[\"Overcash\",\"Jason\",\"980-622-6327\",\"jasonovercashrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"305546\",\"68295\"],[\"Overcash\",\"Laura\",\"704-699-0765\",\"lovercashre@gmail.com\",\"Kannapolis\",\"Broker\",\"301686\",\"63472\"],[\"Petty\",\"Deana\",\"704-258-8068\",\"deana327@gmail.com\",\"Kannapolis\",\"BIC/Owner\",\"263080\",\"72155\"],[\"Pricher\",\"Lisa\",\"704-288-7392\",\"ncrealtorlisa@gmail.com\",\"Harrisburg\",\"Broker\",\"276287\",\"24658\"],[\"Puckett\",\"Chris\",\"704-298-5872\",\"ch2realty@gmail.com\",\"Kannapolis\",\"Qualifying Broker/Owner\",\"279213\",\"32613\"],[\"Queen\",\"Rodney\",\"704-239-3617\",\"rodneque@aol.com\",\"Salisbury\",\"Broker\",\"197764\",\"18091\"],[\"Rhew\",\"Rick\",\"704-491-2458\",\"ricksellsnc@gmail.com\",\"Harrisburg\",\"Broker\",\"288631\",\"49282\"],[\"Robinson\",\"Kelly\",\"704-699-2268\",\"kelly.robinson.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"316981\",\"79218\"],[\"Rogers\",\"Hayley\",\"704-431-2816\",\"hayley.realestate.rogers@gmail.com\",\"Harrisburg\",\"Broker - in - Charge\",\"281085\",\"35693\"],[\"Romesburg\",\"Sarah\",\"336-466-1646\",\"sarah@randsrealtygroup.com\",\"Mooresville\",\"Broker\",\"279215\",\"32982\"],[\"Sadler\",\"Kimberly\",\"704-798-8338\",\"kimsadler.realtor@gmail.com\",\"Kannapolis\",\"Broker\",\"290260\",\"49723\"],[\"Severt\",\"Paula\",\"704-232-3433\",\"paulasevert@yahoo.com\",\"Kannapolis\",\"Broker/Owner\",\"256100\",\"68433\"],[\"Sherin\",\"Chelsi\",\"570-690-3723\",\"chelsi.sherin@gmail.com\",\"Kannapolis\",\"Broker\",\"317621\",\"79645\"],[\"Sides\",\"Holden\",\"704-699-2092\",\"sideshb94@yahoo.com\",\"Kannapolis\",\"Broker\",\"322169\",\"\"],[\"Solarek\",\"Leslie\",\"229-854-0444\",\"lesliesellsnc@gmail.com\",\"Kannapolis\",\"Broker\",\"298587\",\"61042\"],[\"Starnes\",\"Susan\",\"704-305-0040\",\"susansellsnchomes@gmail.com\",\"Harrisburg\",\"Broker\",\"304452\",\"66546\"],[\"Stillinger\",\"Ethan\",\"704-957-1282\",\"ethanstillingerlrd@gmail.com\",\"Kannapolis\",\"Broker\",\"283899\",\"39819\"],[\"Strickland\",\"Tricia\",\"704-791-7314\",\"tricia.strickland927@gmail.com\",\"Kannapolis\",\"Broker\",\"314178\",\"75477\"],[\"Suther\",\"John\",\"704-622-1432\",\"johnsutherllc@gmail.com\",\"Kannapolis\",\"Broker\",\"309445\",\"71221\"],[\"Thomas\",\"Ellen\",\"704-791-3141\",\"ellencthomasservices@gmail.com\",\"Kannapolis\",\"Broker\",\"305464\",\"67704\"],[\"Thompson\",\"Chuck\",\"704-701-0129\",\"crtbroker@gmail.com\",\"Kannapolis\",\"Broker\",\"278357\",\"31317\"],[\"Trask\",\"Kimberly\",\"336-906-0848\",\"kimberlyktrask@gmail.com\",\"Kannapolis\",\"Broker\",\"312666\",\"75085\"],[\"Watson\",\"Brianne\",\"704-791-3272\",\"briannewatsonrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"293189\",\"53736\"],[\"Widenhouse\",\"Cindy\",\"704-795-8017\",\"cindy.s.widenhouse@gmail.com\",\"Kannapolis\",\"Broker\",\"299028\",\"61885\"],[\"Wilson\",\"Rick\",\"704-996-9902\",\"richard.wilson4565@gmail.com\",\"Kannapolis\",\"Broker\",\"321788\",\"81743\"],[\"Wooley\",\"Todd\",\"704-904-7162\",\"twooleyrealty@gmail.com\",\"Kannapolis\",\"Broker\",\"309536\",\"71163\"],[\"Yates\",\"Melissa\",\"704-239-3835\",\"melissayates4u@gmail.com\",\"Salisbury\",\"Broker\",\"307917\",\"69428\"],[\"Zhang\",\"Min\",\"319-471-1622\",\"realtymin77@gmail.com\",\"Harrisburg\",\"Broker\",\"299816\",\"63292\"]]','teamimport.xlsx','teamimport.xlsx','inherit','closed','closed','','1199-revision-v1','','','2020-10-18 16:54:43','2020-10-18 16:54:43','',1199,'https://lantern-realty.com/1199-revision-v1/',0,'revision','',0),(1113,6,'2020-09-26 09:21:59','2020-09-26 09:21:59','<div>Good Morning All, here are a few notes for the upcoming week or so....\n<div dir=\"ltr\">\n<div dir=\"ltr\">\n<div>- Take a look at our <b>website</b>!&nbsp; Our developer has been&nbsp;working hard to get everything updated.&nbsp; Specifically take a look at \"THe Lantern Team\" tab.&nbsp; All agents should have updated info as of early this week.&nbsp;&nbsp;</div>\n<div>&nbsp; &nbsp;If you see something missing i.e. profile picture, bio etc, please let me know.&nbsp;<br clear=\"all\">\n<div>- Thanks to everyone that helped with our first Community Outreach project at Wend End Park for <b>Happy Roots </b>in Salisbury.&nbsp; If you would like to make a monetary donation, Contact Happy Roots to make your donations.&nbsp; DO NOT write checks to Lantern for donations.&nbsp;&nbsp;</div>\n<div>- Make sure you have signed up for our <b>bank draft</b>.&nbsp; Quarterly dues are going to be billed out in a few weeks.&nbsp; Bank drafts make this process so much easier for all of us.&nbsp; I have attached a bank draft authorization form.&nbsp;</div>\n- <b>Team meeting</b> scheduled for October 7th.&nbsp; Currently scheduled to be at the ballpark in Kannapolis.&nbsp; Wendell Rummage will be speaking about agent safety.&nbsp; Wendell is a long time friend, retired Concord Police captain and licensed real estate broker.&nbsp;&nbsp;\n\n</div>\n<div>- <b>upcoming classes</b> for this week include</div>\n<div>&nbsp; ** Accountability Class hosted by Hayley Rogers.&nbsp; You can join this class online or in person at 10am on Monday at the Harrisburg office.&nbsp; If you want to attend online, email Hayley and she will send you the invite to join.&nbsp;</div>\n<div>&nbsp; ** Tuesday 9/29 at 10am I will be teaching \"How to Work w/ Investors\" at the Kannapolis office.</div>\n<div>&nbsp; ** Thursday, October 1st at 10am I will be teaching \"2021 Goal Setting\".&nbsp; Let\'s lay the groundwork for a very successful&nbsp;2021.&nbsp; That has to be done NOW!</div>\n<div></div>\n<div><b>Check out the attached Educational Calendar.&nbsp; We continue to add a wide variety of classes that we feel can benefit as many as possible.&nbsp;</b></div>\n<div><b>\n</b></div>\n<div><b>Have a GREAT weekend!!!!!</b></div>\n<div><b>\n</b></div>\n<div><b>\n</b>\n<div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\">\n<div dir=\"ltr\">\n<div>\n<div dir=\"ltr\">\n<div>\n<div dir=\"ltr\">\n<div dir=\"ltr\">\n<div dir=\"ltr\">\n<div dir=\"ltr\">\n<div dir=\"ltr\">\n<div dir=\"ltr\">\n<div dir=\"ltr\">Chris Puckett REALTOR ®, GRI, SRES, CDEI</div>\n<div dir=\"ltr\">Owner/Broker</div>\n<div dir=\"ltr\">\n<div>Lantern Realty &amp; Development</div>\n<div><span style=\"font-size:12.8px\">c. 704-298-5872</span></div>\n<div><a href=\"mailto:ch2realty@gmail.com\" target=\"_blank\" rel=\"noopener noreferrer\"></a><a href=\"mailto:ch2realty@gmail.com\">ch2realty@gmail.com</a></div>\n<div><a href=\"https://Lantern-Realty.com\" target=\"_blank\" rel=\"noopener noreferrer\">https://Lantern-Realty.com</a></div>\n<div></div>\n</div>\n<div dir=\"ltr\"></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/Draft-Authorization-Form.docx\"><img src=\"https://lantern-realty.com/wp-content/plugins/postie/icons/silver/doc-32.png\" alt=\"doc icon\"> Draft-Authorization-Form.docx</a>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/2020-Educational-Calendar.xlsx\"><img src=\"https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\" alt=\"xls icon\"> 2020-Educational-Calendar.xlsx</a>\n<a href=\"\"><img src=\"https://lantern-realty.com/wp-content/plugins/postie/icons/silver/default-32.png\" alt=\"default icon\">5f88ed4718730</a>\n<a href=\"\"><img src=\"https://lantern-realty.com/wp-content/plugins/postie/icons/silver/default-32.png\" alt=\"default icon\">5f88ed471abcb</a></div>','News &amp; Notes','','publish','closed','open','','news-notes','','','2020-10-16 01:22:45','2020-10-16 01:22:45','',0,'https://lantern-realty.com/?p=1113',0,'post','',0),(1114,1,'2020-10-16 00:45:59','2020-10-16 00:45:59','','Draft-Authorization-Form.docx','','inherit','closed','closed','','draft-authorization-form','','','2020-10-16 00:45:59','2020-10-16 00:45:59','',1113,'https://lantern-realty.com/wp-content/uploads/2020/10/Draft-Authorization-Form.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(1115,1,'2020-10-16 00:45:59','2020-10-16 00:45:59','','2020-Educational-Calendar.xlsx','','inherit','closed','closed','','2020-educational-calendar','','','2020-10-16 00:45:59','2020-10-16 00:45:59','',1113,'https://lantern-realty.com/wp-content/uploads/2020/10/2020-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1229,1,'2020-10-18 17:53:02','2020-10-18 17:53:02','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2><a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\">Team Announcements</a></h2>		\n			<h2>Most Recent Announcement</h2>		\n			<a href=\"#\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:53:02','2020-10-18 17:53:02','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1225,1,'2020-10-18 17:50:27','2020-10-18 17:50:27','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2><a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\">Team Announcements</a></h2>		\n			<a href=\"#\" role=\"button\">\n						Announcement Archive\n					</a>\n		<p style=\"text-align: center;\">The latest team announcement. Check out the announcements page for a full archive.</p>		\n			<h2>Most Recent Announcement</h2>		\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:50:27','2020-10-18 17:50:27','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1167,1,'2020-10-18 03:14:52','2020-10-18 03:14:52','<h1>Lantern Team Portal</h1>\n<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4>\n&nbsp; &nbsp; &nbsp;This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.\n\n<!-- icon-thumb -->\n<strong>New Agent Form</strong>\n<!-- text-with-icon-title -->\nSubmit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n<!-- text-with-icon-info -->\n<a href=\"https://lantern-realty.com//new-agent-registration/\">Click Here</a>\n<!-- text-with-icon-item  -->\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\">                            <!-- icon-thumb -->\n<strong>Lantern Branding</strong>\n<!-- text-with-icon-title -->\nDownload official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n<!-- text-with-icon-info -->\n<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\">Click Here</a>\n<!-- text-with-icon-item  -->\n<!-- icon-thumb -->\n<strong>Lantern Documents</strong>\n<!-- text-with-icon-title -->\nAccess to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n<!-- text-with-icon-info -->\n<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\">Click Here</a>\n<!-- text-with-icon-item  -->\n<!-- icon-thumb -->\n<strong>Website Change Request</strong>\n<!-- text-with-icon-title -->\nRequest updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n<!-- text-with-icon-info -->\n<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Click Here</a>\n<!-- text-with-icon-item  -->\n<h2>Team Announcements</h2>\n<article data-id=\"1113\">\n<header>\n<h2><a href=\"https://lantern-realty.com/news-notes/\" title=\"News &amp; Notes\" rel=\"nofollow\">News &amp; Notes</a></h2>\n</header>Good Morning All, here are a few notes for the upcoming week or so…. – Take a look at our website!&nbsp; Our developer has been&nbsp;working hard to get everything updated.&nbsp; Specifically take a look at “THe Lantern Team” tab.&nbsp; All agents should have updated info as of early this week.&nbsp;&nbsp; &nbsp; &nbsp;If you see something […]\n\n<a href=\"https://lantern-realty.com/news-notes/\" rel=\"nofollow\">Read More</a>\n<a href=\"https://lantern-realty.com/author/ch2realtygmail-com/\"><img alt=\"\" src=\"https://secure.gravatar.com/avatar/1473214242be6fc8fee6ee6f0add5fa8?s=96&amp;d=mm&amp;r=g\" srcset=\"https://secure.gravatar.com/avatar/1473214242be6fc8fee6ee6f0add5fa8?s=192&amp;d=mm&amp;r=g 2x\" class=\"avatar avatar-96 photo\" height=\"96\" width=\"96\" loading=\"lazy\"></a><a href=\"https://lantern-realty.com/author/ch2realtygmail-com/\" title=\"Posts by Chris Puckett\" rel=\"author\">Chris Puckett</a><time datetime=\"September 26, 2020\">September 26, 2020</time>\n</article>\n<h2>Lantern Team Calendar</h2>\n<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>\n\n<h2></h2>\n<a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 03:14:52','2020-10-18 03:14:52','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1164,1,'2020-10-18 03:07:45','2020-10-18 03:07:45','How to Work w/ Investors with Chris Puckett','How to Work w/ Investors','','publish','','closed','','how-to-work-w-investors','','','2020-10-18 03:07:45','2020-10-18 03:07:45','',0,'https://lantern-realty.com/events/how-to-work-w-investors/',0,'mec-events','',0),(1165,1,'2020-10-18 03:07:46','2020-10-18 03:07:46','7 Level of Communication/Miracle Morning - Discussion with Laura Overcash','7 Level of Communication/Miracle Morning - Discussion','','publish','','closed','','7-level-of-communication-miracle-morning-discussion-4','','','2020-10-18 03:07:46','2020-10-18 03:07:46','',0,'https://lantern-realty.com/events/7-level-of-communication-miracle-morning-discussion-4/',0,'mec-events','',0),(1166,1,'2020-10-18 03:07:47','2020-10-18 03:07:47','Understanding Zoning with Ellen Thomas','Understanding Zoning','','publish','','closed','','understanding-zoning','','','2020-10-18 03:07:47','2020-10-18 03:07:47','',0,'https://lantern-realty.com/events/understanding-zoning/',0,'mec-events','',0),(1224,1,'2020-10-18 17:49:11','2020-10-18 17:49:11','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2><a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\">Team Announcements</a></h2>		\n		<p style=\"text-align: center;\">The latest team announcement. Check out the announcements page for a full archive.</p>		\n			<h2>Most Recent Announcement</h2>		\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>		\n                    <h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2020-10-18 17:49:11','2020-10-18 17:49:11','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1143,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Carousel View','','publish','closed','closed','','carousel-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/carousel-view/',0,'mec_calendars','',0),(1144,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Countdown View','','publish','closed','closed','','countdown-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/countdown-view/',0,'mec_calendars','',0),(1145,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Slider View','','publish','closed','closed','','slider-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/slider-view/',0,'mec_calendars','',0),(1146,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Masonry View','','publish','closed','closed','','masonry-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/masonry-view/',0,'mec_calendars','',0),(1147,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Agenda View','','publish','closed','closed','','agenda-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/agenda-view/',0,'mec_calendars','',0),(1148,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Timetable View','','publish','closed','closed','','timetable-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/timetable-view/',0,'mec_calendars','',0),(1149,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Tile View','','publish','closed','closed','','tile-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/tile-view/',0,'mec_calendars','',0),(1150,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Timeline View','','publish','closed','closed','','timeline-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/timeline-view/',0,'mec_calendars','',0),(1151,1,'2020-10-18 03:07:26','2020-10-18 03:07:26','Broker Q&A with Amanda Cody','Broker Q&A','','publish','','closed','','broker-qa','','','2020-10-18 03:07:26','2020-10-18 03:07:26','',0,'https://lantern-realty.com/events/broker-qa/',0,'mec-events','',0),(1152,1,'2020-10-18 03:07:37','2020-10-18 03:07:37','Agent Safety with Wendell Rummage (EXP)','Agent Safety','','publish','','closed','','agent-safety','','','2020-10-18 03:07:37','2020-10-18 03:07:37','',0,'https://lantern-realty.com/events/agent-safety/',0,'mec-events','',0),(1153,1,'2020-10-18 03:07:38','2020-10-18 03:07:38','Dotloop/Forms with Paula Severt','Dotloop/Forms','','publish','','closed','','dotloop-forms','','','2020-10-18 03:07:38','2020-10-18 03:07:38','',0,'https://lantern-realty.com/events/dotloop-forms/',0,'mec-events','',0),(1154,1,'2020-10-18 03:07:38','2020-10-18 03:07:38','7 Level of Communication/Miracle Morning - Discussion with Laura Overcash','7 Level of Communication/Miracle Morning - Discussion','','publish','','closed','','7-level-of-communication-miracle-morning-discussion','','','2020-10-18 03:07:38','2020-10-18 03:07:38','',0,'https://lantern-realty.com/events/7-level-of-communication-miracle-morning-discussion/',0,'mec-events','',0),(1155,1,'2020-10-18 03:07:39','2020-10-18 03:07:39','CMA\'s with Tricia Strickland','CMA\'s','','publish','','closed','','cmas','','','2020-10-18 03:07:39','2020-10-18 03:07:39','',0,'https://lantern-realty.com/events/cmas/',0,'mec-events','',0),(1156,1,'2020-10-18 03:07:40','2020-10-18 03:07:40','Dotloop/Forms with Paula Severt','Dotloop/Forms','','publish','','closed','','dotloop-forms-2','','','2020-10-18 03:07:40','2020-10-18 03:07:40','',0,'https://lantern-realty.com/events/dotloop-forms-2/',0,'mec-events','',0),(1157,1,'2020-10-18 03:07:40','2020-10-18 03:07:40','Dotloop/Forms with Paula Severt','Dotloop/Forms','','publish','','closed','','dotloop-forms-3','','','2020-10-18 03:07:40','2020-10-18 03:07:40','',0,'https://lantern-realty.com/events/dotloop-forms-3/',0,'mec-events','',0),(1158,1,'2020-10-18 03:07:41','2020-10-18 03:07:41','2021 Goal Setting with Chris Puckett','2021 Goal Setting','','publish','','closed','','2021-goal-setting','','','2020-10-18 03:07:41','2020-10-18 03:07:41','',0,'https://lantern-realty.com/events/2021-goal-setting/',0,'mec-events','',0),(1159,1,'2020-10-18 03:07:42','2020-10-18 03:07:42','7 Level of Communication/Miracle Morning - Discussion with Laura Overcash','7 Level of Communication/Miracle Morning - Discussion','','publish','','closed','','7-level-of-communication-miracle-morning-discussion-2','','','2020-10-18 03:07:42','2020-10-18 03:07:42','',0,'https://lantern-realty.com/events/7-level-of-communication-miracle-morning-discussion-2/',0,'mec-events','',0),(1160,1,'2020-10-18 03:07:43','2020-10-18 03:07:43','Dotloop/Forms with Paula Severt','Dotloop/Forms','','publish','','closed','','dotloop-forms-4','','','2020-10-18 03:07:43','2020-10-18 03:07:43','',0,'https://lantern-realty.com/events/dotloop-forms-4/',0,'mec-events','',0),(1161,1,'2020-10-18 03:07:43','2020-10-18 03:07:43','Facebook Marketing with Kim Drakulich','Facebook Marketing','','publish','','closed','','facebook-marketing','','','2020-10-18 03:07:43','2020-10-18 03:07:43','',0,'https://lantern-realty.com/events/facebook-marketing/',0,'mec-events','',0),(1162,1,'2020-10-18 03:07:44','2020-10-18 03:07:44','Buyer/Seller Role playing class with Chris Puckett','Buyer/Seller Role playing class','','publish','','closed','','buyer-seller-role-playing-class','','','2020-10-18 03:07:44','2020-10-18 03:07:44','',0,'https://lantern-realty.com/events/buyer-seller-role-playing-class/',0,'mec-events','',0),(1163,1,'2020-10-18 03:07:45','2020-10-18 03:07:45','7 Level of Communication/Miracle Morning - Discussion with Laura Overcash','7 Level of Communication/Miracle Morning - Discussion','','publish','','closed','','7-level-of-communication-miracle-morning-discussion-3','','','2020-10-18 03:07:45','2020-10-18 03:07:45','',0,'https://lantern-realty.com/events/7-level-of-communication-miracle-morning-discussion-3/',0,'mec-events','',0),(1122,0,'2020-10-16 12:56:38','2020-10-16 12:56:38','','IMG_3402','','inherit','','closed','','img_3402','','','2020-10-16 12:56:38','2020-10-16 12:56:38','',0,'https://lantern-realty.com/img_3402/',0,'attachment','image/jpeg',0),(1123,0,'2020-10-16 13:13:34','2020-10-16 13:13:34','','IMG_3399','','inherit','','closed','','img_3399','','','2020-10-16 13:13:34','2020-10-16 13:13:34','',0,'https://lantern-realty.com/img_3399/',0,'attachment','image/jpeg',0),(1124,0,'2020-10-16 13:58:23','2020-10-16 13:58:23','','AlanBusinesspic','','inherit','','closed','','alanbusinesspic','','','2020-10-16 13:58:23','2020-10-16 13:58:23','',0,'https://lantern-realty.com/alanbusinesspic/',0,'attachment','image/jpeg',0),(1125,1,'2020-10-17 23:33:25','2020-10-17 23:33:25','','Lantern Albemarle Team','','inherit','','closed','','lantern-albemarle-team','','','2020-10-17 23:33:25','2020-10-17 23:33:25','',759,'https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg',0,'attachment','image/jpeg',0),(1127,1,'2020-10-17 23:42:21','2020-10-17 23:42:21','','Mike_Fullerton','','inherit','','closed','','mike_fullerton-2','','','2020-10-17 23:42:21','2020-10-17 23:42:21','',604,'https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1.jpg',0,'attachment','image/jpeg',0),(1370,6,'2020-10-26 12:56:21','2020-10-26 12:56:21','<div dir=\"ltr\">Good Morning, just a quick reminder Nic Lovelace will be teaching a class today at 330 in the Kannapolis office about Foreclosures.  I look forward to seeing you all.   <div><br></div><div>Also, if you are coming, please bring food for our food drive.  The totes are at the front of the office.  Let&#39;s make an impact on our community!<br clear=\"all\"><div><br></div>','Foreclosure class','','publish','closed','open','','foreclosure-class','','','2020-10-26 12:56:21','2020-10-26 12:56:21','',0,'https://lantern-realty.com/?p=1370',0,'post','',0),(1131,1,'2020-10-18 03:03:06','2020-10-18 03:03:06','','One Time Multiple Day Event','','publish','','closed','','one-time-multiple-day-event','','','2020-10-18 03:03:06','2020-10-18 03:03:06','',0,'https://lantern-realty.com/events/one-time-multiple-day-event/',0,'mec-events','',0),(1132,1,'2020-10-18 03:03:06','2020-10-18 03:03:06','','Daily each 3 days','','publish','','closed','','daily-each-3-days','','','2020-10-18 03:03:06','2020-10-18 03:03:06','',0,'https://lantern-realty.com/events/daily-each-3-days/',0,'mec-events','',0),(1133,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','','Weekly on Mondays','','publish','','closed','','weekly-on-mondays','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/events/weekly-on-mondays/',0,'mec-events','',0),(1134,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','','Monthly on 27th','','publish','','closed','','monthly-on-27th','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/events/monthly-on-27th/',0,'mec-events','',0),(1135,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','','Yearly on August 20th and 21st','','publish','','closed','','yearly-on-august-20th-and-21st','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/events/yearly-on-august-20th-and-21st/',0,'mec-events','',0),(1136,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Full Calendar','','publish','closed','closed','','full-calendar','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/full-calendar/',0,'mec_calendars','',0),(1137,1,'2020-10-18 03:03:07','2020-10-18 03:03:07','MEC','Monthly View','','publish','closed','closed','','monthly-view','','','2020-10-18 03:03:07','2020-10-18 03:03:07','',0,'https://lantern-realty.com/monthly-view/',0,'mec_calendars','',0),(1129,1,'2020-10-18 00:08:39','2020-10-18 00:08:39','','Lantern Realty','','inherit','','closed','','lantern-realty','','','2020-10-18 00:08:39','2020-10-18 00:08:39','',0,'https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Realty.png',0,'attachment','image/png',0),(1611,1,'2021-02-24 00:27:06','2021-02-24 00:27:06','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7042980087\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:27:06','2021-02-24 00:27:06','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1612,1,'2021-02-24 00:27:06','2021-02-24 00:27:06','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:27:06','2021-02-24 00:27:06','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1613,1,'2021-02-24 00:27:38','2021-02-24 00:27:38','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:27:38','2021-02-24 00:27:38','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1614,1,'2021-02-24 00:27:38','2021-02-24 00:27:38','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:27:38','2021-02-24 00:27:38','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1616,1,'2021-02-24 00:46:37','2021-02-24 00:46:37','','Lantern Asheville','','inherit','','closed','','lantern-asheville-2','','','2021-02-24 00:46:37','2021-02-24 00:46:37','',1599,'https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png',0,'attachment','image/png',0),(1617,1,'2021-02-24 00:47:18','2021-02-24 00:47:18','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:47:18','2021-02-24 00:47:18','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1618,1,'2021-02-24 00:47:18','2021-02-24 00:47:18','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"05F1BB70-445B-4044-AACC-8382CE3C590E\">\n							<img width=\"768\" height=\"614\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Mooresville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 00:47:18','2021-02-24 00:47:18','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1621,1,'2021-02-24 00:50:09','2021-02-24 00:50:09','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:50:09','2021-02-24 00:50:09','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1622,1,'2021-02-24 00:50:09','2021-02-24 00:50:09','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:50:09','2021-02-24 00:50:09','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1623,1,'2021-02-24 00:50:09','2021-02-24 00:50:09','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:50:09','2021-02-24 00:50:09','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1624,1,'2021-02-24 00:52:04','2021-02-24 00:52:04','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:52:04','2021-02-24 00:52:04','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1625,1,'2021-02-24 00:52:04','2021-02-24 00:52:04','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:52:04','2021-02-24 00:52:04','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1626,1,'2021-02-24 00:52:04','2021-02-24 00:52:04','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:52:04','2021-02-24 00:52:04','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1627,1,'2021-02-24 00:52:41','2021-02-24 00:52:41','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:52:41','2021-02-24 00:52:41','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1628,1,'2021-02-24 00:52:41','2021-02-24 00:52:41','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:52:41','2021-02-24 00:52:41','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1629,1,'2021-02-24 00:52:41','2021-02-24 00:52:41','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:52:41','2021-02-24 00:52:41','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1630,1,'2021-02-24 00:52:56','2021-02-24 00:52:56','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:52:56','2021-02-24 00:52:56','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1631,1,'2021-02-24 00:52:56','2021-02-24 00:52:56','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:52:56','2021-02-24 00:52:56','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1632,1,'2021-02-24 00:52:56','2021-02-24 00:52:56','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2021-02-24 00:52:56','2021-02-24 00:52:56','',1279,'https://lantern-realty.com/1279-revision-v1/',0,'revision','',0),(1633,1,'2021-02-24 01:04:19','2021-02-24 01:04:19','<!-- wp:paragraph -->\n<p>The right Realtor really does make all the difference! Since 1998 it is my privilege to provide professional excellent Real Estate service. From start to finish my goal is to give you a successful and enjoyable real estate experience. I am personally with you every step of the way… Sellers, together we discuss your goals. A marketing plan is executed to perfection to price your property, to have beautiful professional photography, and staging of your home. Buyers, we work together to find you just the right home, navigating the home search, your contract negotiations, inspections and repairs. Because of happy clients and their referrals of their family and friends, I have received multiple customer service awards, marketing awards, and sales awards year after year. I appreciate you for trusting me to assist you with all of your real estate needs! Education and Memberships: Western Carolina University, Bachelor degree in Business Administration, Marketing. NC Broker/ Realtor since 1998, NAR, NC Assoc of Realtors, CCAR, Carolina MLS. Accredited Relocation Specialist, Accredited Luxury Home Specialist (ALHS), Certified Military Residential Specialist (CMRS). It is a privilege to assist all Veterans and US Military Service Members. Originally from the beautiful beaches of Sarasota Florida, I’ve lived in NC since college. My husband Greg Lambert is a Kannapolis native and we have enjoyed living here, working, and raising our family. We are the proud parents of 3 very accomplished children that have families of their own now. Through the years I have enjoyed supporting and volunteering with our church, community and public schools. I support the Kannapolis Bible Teaching Association, Cabarrus Arts, Meals on Wheels, Habitat for Humanities, Samaritans Purse and other organizations.</p>\n<!-- /wp:paragraph -->','Pam Lambert','','publish','closed','closed','','pam-lambert','','','2021-02-24 01:49:43','2021-02-24 01:49:43','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1633',70,'houzez_agent','',0),(1634,1,'2021-02-24 01:01:17','2021-02-24 01:01:17','<!-- wp:paragraph -->\n<p>The right Realtor really does make all the difference! Since 1998 it is my privilege to provide professional excellent Real Estate service. From start to finish my goal is to give you a successful and enjoyable real estate experience. I am personally with you every step of the way… Sellers, together we discuss your goals. A marketing plan is executed to perfection to price your property, to have beautiful professional photography, and staging of your home. Buyers, we work together to find you just the right home, navigating the home search, your contract negotiations, inspections and repairs. Because of happy clients and their referrals of their family and friends, I have received multiple customer service awards, marketing awards, and sales awards year after year. I appreciate you for trusting me to assist you with all of your real estate needs! Education and Memberships: Western Carolina University, Bachelor degree in Business Administration, Marketing. NC Broker/ Realtor since 1998, NAR, NC Assoc of Realtors, CCAR, Carolina MLS. Accredited Relocation Specialist, Accredited Luxury Home Specialist (ALHS), Certified Military Residential Specialist (CMRS). It is a privilege to assist all Veterans and US Military Service Members. Originally from the beautiful beaches of Sarasota Florida, I’ve lived in NC since college. My husband Greg Lambert is a Kannapolis native and we have enjoyed living here, working, and raising our family. We are the proud parents of 3 very accomplished children that have families of their own now. Through the years I have enjoyed supporting and volunteering with our church, community and public schools. I support the Kannapolis Bible Teaching Association, Cabarrus Arts, Meals on Wheels, Habitat for Humanities, Samaritans Purse and other organizations.</p>\n<!-- /wp:paragraph -->','Pam Lambert','','inherit','closed','closed','','1633-revision-v1','','','2021-02-24 01:01:17','2021-02-24 01:01:17','',1633,'https://lantern-realty.com/1633-revision-v1/',0,'revision','',0),(1635,1,'2021-02-24 01:03:42','2021-02-24 01:03:42','','pam_lambert','','inherit','','closed','','pam_lambert','','','2021-02-24 01:03:42','2021-02-24 01:03:42','',1633,'https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert.jpg',0,'attachment','image/jpeg',0),(1664,0,'2021-03-06 00:17:35','2021-03-06 00:17:35','','147','','inherit','','closed','','147','','','2021-03-06 00:17:35','2021-03-06 00:17:35','',0,'https://lantern-realty.com/147/',0,'attachment','image/jpeg',0),(1637,1,'2021-02-24 01:11:46','2021-02-24 01:11:46','<!-- wp:paragraph -->\n<p>My passion is helping people achieve the goals they have set out before them. Every situation is different and I love knowing that I’m able to be a part of someone’s story. My dedication to you as your Realtor is to make sure you’re comfortable, have a solid understanding of what to expect, and eliminating unnecessary stress. My promise to you is that I will be by your side from the beginning, representing you to the highest level of professionalism and maintaining constant communication. I am originally from a small town in Nebraska and moved to Concord in 2008. I currently reside in Mooresville with my boyfriend and our dog. We spend our free time soaking up the sun on Lake Norman. My door is always open!</p>\n<!-- /wp:paragraph -->','Ashley Uttecht','','publish','closed','closed','','ashley-uttecht','','','2021-02-24 01:11:50','2021-02-24 01:11:50','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1637',120,'houzez_agent','',0),(1638,1,'2021-02-24 01:08:57','2021-02-24 01:08:57','<!-- wp:paragraph -->\n<p>My passion is helping people achieve the goals they have set out before them. Every situation is different and I love knowing that I’m able to be a part of someone’s story. My dedication to you as your Realtor is to make sure you’re comfortable, have a solid understanding of what to expect, and eliminating unnecessary stress. My promise to you is that I will be by your side from the beginning, representing you to the highest level of professionalism and maintaining constant communication. I am originally from a small town in Nebraska and moved to Concord in 2008. I currently reside in Mooresville with my boyfriend and our dog. We spend our free time soaking up the sun on Lake Norman. My door is always open!</p>\n<!-- /wp:paragraph -->','Ashley Uttecht','','inherit','closed','closed','','1637-revision-v1','','','2021-02-24 01:08:57','2021-02-24 01:08:57','',1637,'https://lantern-realty.com/1637-revision-v1/',0,'revision','',0),(1639,1,'2021-02-24 01:11:17','2021-02-24 01:11:17','','ashley_uttecht','','inherit','','closed','','ashley_uttecht','','','2021-02-24 01:11:17','2021-02-24 01:11:17','',1637,'https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg',0,'attachment','image/jpeg',0),(1640,1,'2021-02-24 01:16:15','2021-02-24 01:16:15','<!-- wp:paragraph -->\n<p>A native of Asheville, I have enjoyed a career in Accounting and Tax preparation. Following graduation at Western Carolina University I commenced my professional career and became a franchise owner with H&amp;R Block. For the last 20 years I have worked with physicians and tax departments of Healthcare Business Consultants and Doctors Management. Due to the fact that I enjoy real estate and investing myself, I obtained my NC brokerage license in the 80’s and worked referrals for many of my accounting and tax clients. I am currently pursuing a more active real estate career while staying abreast of the tax laws. This enables me to help guide you through those issues that pertain to both the real estate market and your financial future for those investments. I love to help client’s find homes and investments in the Asheville, Hendersonville and surrounding areas. Let me go to work to find you the perfect mountain home for your family, whether it be a mountain top home with expansive views of the valleys below or a small West Asheville abode within walking distance of renowned restaurants, entertainment and business. I can and will work diligently to market and promote your current property for the highest and best value. I know Western NC and real estate, let me go to work for you.</p>\n<!-- /wp:paragraph -->','Micheal Farlow','','publish','closed','closed','','michael-farlow','','','2021-08-01 21:16:13','2021-08-01 21:16:13','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1640',43,'houzez_agent','',0),(1641,1,'2021-02-24 01:14:33','2021-02-24 01:14:33','','Michael Farlow','','inherit','closed','closed','','1640-revision-v1','','','2021-02-24 01:14:33','2021-02-24 01:14:33','',1640,'https://lantern-realty.com/1640-revision-v1/',0,'revision','',0),(1642,1,'2021-02-24 01:18:53','2021-02-24 01:18:53','<!-- wp:paragraph -->\n<p>Having lived in the Asheville area all my life, I understand why it’s one of the top locations in the country to live. With over 21 years of sales experience and in true southern style, my approach to customer service is to get to know you, your personal needs and any potential concerns up front. This enables me to best advise you through your home buying and selling process, helping to avoid and potential problems down the road. Developing a true partnership to offer you up-front and honest advise is important. Aiding you in moving through each step of the sales process as quickly as possible, staying up to date on market changes both financial and legal enables the transaction to move more smoothly. Easing some of the stress and making it as enjoyable as possible is key. Buying or selling a home is not just a “transaction” . I am here to become a support and trusted advisor for dealing with your real estate needs. If you or someone you know is ready for their 1st or 2nd home or to purchase an investment property, here in the Western NC mountains – in and around Asheville – or if you are ready to sell, please feel free to contact me. In the end it is really about relationships. I might have helped you sell or purchase a home, but our relationship lasts forever. Your referral is the best compliment you can give and I promise to treat your connections as well as I treat my own. Check out my reviews on Zillow <a href=\"https://www.zillow.com/profile/KLawingrealtor\">https://www.zillow.com/profile/KLawingrealtor</a></p>\n<!-- /wp:paragraph -->','Katherine Lawing','','publish','closed','closed','','katherine-lawing','','','2022-02-18 01:43:19','2022-02-18 01:43:19','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1642',80,'houzez_agent','',0),(1643,1,'2021-02-24 01:17:41','2021-02-24 01:17:41','','Katherine Lawing','','inherit','closed','closed','','1642-revision-v1','','','2021-02-24 01:17:41','2021-02-24 01:17:41','',1642,'https://lantern-realty.com/1642-revision-v1/',0,'revision','',0),(1644,1,'2021-02-24 01:20:28','2021-02-24 01:20:28','<h2>Lantern Realty  - Asheville Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										23 Mill Stone Drive, Asheville NC 28803</li>\n 	<li>\n					<a href=\"tel:8287720220\">\n(828) 772-0220\n</a></li>\n 	<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">\nklawingrealtor@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:8287720220\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:8287720220\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Asheville Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA North Carolinian for the last 18 years, I am originally from New Jersey....\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 01:20:28','2021-02-24 01:20:28','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1645,1,'2021-02-24 01:20:28','2021-02-24 01:20:28','<h2>Lantern Realty  - Asheville Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										23 Mill Stone Drive, Asheville NC 28803</li>\n 	<li>\n					<a href=\"tel:8287720220\">\n(828) 772-0220\n</a></li>\n 	<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">\nklawingrealtor@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:8287720220\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:8287720220\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Asheville Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA North Carolinian for the last 18 years, I am originally from New Jersey....\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 01:20:28','2021-02-24 01:20:28','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1646,1,'2021-02-24 01:20:28','2021-02-24 01:20:28','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 01:20:28','2021-02-24 01:20:28','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1647,1,'2021-02-24 01:24:56','2021-02-24 01:24:56','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">6477 Morehead Road Harrisburg, North Carolina 28075 </br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thanks for checking out my profile! My name is Meredith Christy and the three...	\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...	\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"><strong>Lisa Pricher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">118 East Main Street Albemarle, North Carolina 28001 </br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2021-02-24 01:24:56','2021-02-24 01:24:56','',101,'https://lantern-realty.com/101-revision-v1/',0,'revision','',0),(1648,1,'2021-02-24 01:24:56','2021-02-24 01:24:56','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Shelly_Arledge-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"><strong>Shelly Arledge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/shelly-arledge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2018/11/Courtney_Hedrick.jpg 528w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"><strong>Courtney Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney is a native North Carolinian and long time resident of Kannapolis. She is...	\n		<a href=\"https://lantern-realty.com/agent/courtney-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-350x350.jpeg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Will_Hedrick-400x400.jpeg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/will-hedrick/\"><strong>Will Hedrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/will-hedrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Jessie_Henderson-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"><strong>Jessie Henderson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m a Baltimore, MD Native and a UNC Charlotte Graduate. Open-minded, committed and determined,...	\n		<a href=\"https://lantern-realty.com/agent/jessie-henderson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Ashley_Hines-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-hines/\"><strong>Ashley Hines</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ashley Hines a real estate professional, she recognizes and values the trust her clients...	\n		<a href=\"https://lantern-realty.com/agent/ashley-hines/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/MaClay_Miller-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maclay-miller/\"><strong>MaClay Miller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/maclay-miller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"><strong>Leslie Solarek</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/leslie-solarek/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ellen_Thomas-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"><strong>Ellen Thomas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ellen-thomas/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-350x351.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse-479x480.jpg 479w, https://lantern-realty.com/wp-content/uploads/2018/11/Cindy_Widenhouse.jpg 639w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"><strong>Cindy Widenhouse</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a local having grown up in Concord leaving only for a 20-year...	\n		<a href=\"https://lantern-realty.com/agent/cindy-widenhouse/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">6477 Morehead Road Harrisburg, North Carolina 28075 </br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thanks for checking out my profile! My name is Meredith Christy and the three...	\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...	\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"><strong>Lisa Pricher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lisa-pricher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">118 East Main Street Albemarle, North Carolina 28001 </br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2021-02-24 01:24:56','2021-02-24 01:24:56','',101,'https://lantern-realty.com/101-revision-v1/',0,'revision','',0),(1649,1,'2021-02-24 01:24:57','2021-02-24 01:24:57','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/renee-chambers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Renee_Chambers.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/renee-chambers/\"><strong>Renee Chambers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a proud mother of three beautiful girls. Kannapolis native and A.L. Brown...	\n		<a href=\"https://lantern-realty.com/agent/renee-chambers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Richard, originally from Florida, has made North Carolina his permanent home. However, he is...	\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Let me put my 20 years of experience in our local market (Cabarrus &amp;...	\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/alan-aylesworth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alan-aylesworth/\"><strong>Alan Aylesworth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Husband, Father &amp; Pop to 6 Grandkids. My belief system in business is simple...	\n		<a href=\"https://lantern-realty.com/agent/alan-aylesworth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alexandria-j-bare/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alexandria_J_Bare.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alexandria-j-bare/\"><strong>Alexandria J Bare</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Alexandria illustrates energy, hard work, and creative service in every detail of your real...	\n		<a href=\"https://lantern-realty.com/agent/alexandria-j-bare/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney loves helping others reach their goals! She has experience working residential sales, land...	\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in...	\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">6477 Morehead Road Harrisburg, North Carolina 28075 </br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thanks for checking out my profile! My name is Meredith Christy and the three...	\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...	\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">118 East Main Street Albemarle, North Carolina 28001 </br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My passion is helping people achieve the goals they have set out before them....	\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2021-02-24 01:24:57','2021-02-24 01:24:57','',101,'https://lantern-realty.com/101-revision-v1/',0,'revision','',0),(1650,1,'2021-02-24 01:39:45','2021-02-24 01:39:45','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 01:39:45','2021-02-24 01:39:45','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1651,1,'2021-02-24 01:39:45','2021-02-24 01:39:45','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 01:39:45','2021-02-24 01:39:45','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1652,1,'2021-02-24 01:39:45','2021-02-24 01:39:45','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','1599-revision-v1','','','2021-02-24 01:39:45','2021-02-24 01:39:45','',1599,'https://lantern-realty.com/1599-revision-v1/',0,'revision','',0),(1653,1,'2021-06-24 11:31:26','2021-02-24 01:41:46','','Asheville','','publish','closed','closed','','asheville','','','2021-06-24 11:31:26','2021-06-24 11:31:26','',0,'https://lantern-realty.com/?p=1653',29,'nav_menu_item','',0),(1654,1,'2021-02-24 01:45:36','2021-02-24 01:45:36','','pam_lambert','','inherit','','closed','','pam_lambert-2','','','2021-02-24 01:45:36','2021-02-24 01:45:36','',1633,'https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg',0,'attachment','image/jpeg',0),(1655,1,'2021-02-24 02:00:11','2021-02-24 02:00:11','<!-- wp:paragraph -->\n<p>My name is Tammy Fox and I have lived in the Kannapolis area my entire life. It’s exciting being a part of the new changes and growth to the area. I started my career in 2010 as a Property Manager and became a Realtor in 2013. I enjoy helping people with different transitions in their life whether it be helping them find their first home, forever home, downsizing or upsizing or even becoming an investor. Outside of real estate I enjoy spending as much time as I can with my husband and family of 3 children and 3 grandchildren. I also enjoy community outreach and crafting.</p>\n<!-- /wp:paragraph -->','Tammy Fox','','publish','closed','closed','','tammy-fox','','','2021-02-24 02:00:16','2021-02-24 02:00:16','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1655',45,'houzez_agent','',0),(1656,1,'2021-02-24 01:58:22','2021-02-24 01:58:22','<!-- wp:paragraph -->\n<p>My name is Tammy Fox and I have lived in the Kannapolis area my entire life. It’s exciting being a part of the new changes and growth to the area. I started my career in 2010 as a Property Manager and became a Realtor in 2013. I enjoy helping people with different transitions in their life whether it be helping them find their first home, forever home, downsizing or upsizing or even becoming an investor. Outside of real estate I enjoy spending as much time as I can with my husband and family of 3 children and 3 grandchildren. I also enjoy community outreach and crafting.</p>\n<!-- /wp:paragraph -->','Tammy Fox','','inherit','closed','closed','','1655-revision-v1','','','2021-02-24 01:58:22','2021-02-24 01:58:22','',1655,'https://lantern-realty.com/1655-revision-v1/',0,'revision','',0),(1657,1,'2021-02-24 01:59:54','2021-02-24 01:59:54','','tammy_fox','','inherit','','closed','','tammy_fox','','','2021-02-24 01:59:54','2021-02-24 01:59:54','',1655,'https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg',0,'attachment','image/jpeg',0),(1659,6,'2021-02-26 16:06:32','2021-02-26 16:06:32','','LRD-Roster_022521.xlsx','','inherit','closed','closed','','lrd-roster_022521','','','2021-02-26 16:06:32','2021-02-26 16:06:32','',1658,'https://lantern-realty.com/wp-content/uploads/2021/02/LRD-Roster_022521.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1660,6,'2021-02-26 16:06:33','2021-02-26 16:06:33','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-2-2','','','2021-02-26 16:06:33','2021-02-26 16:06:33','',1658,'https://lantern-realty.com/wp-content/uploads/2021/02/2021-Educational-Calendar-2.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1661,0,'2021-02-26 19:53:22','2021-02-26 19:53:22','','_pv9365-1 (1)','','inherit','','closed','','_pv9365-1-1','','','2021-02-26 19:53:22','2021-02-26 19:53:22','',0,'https://lantern-realty.com/_pv9365-1-1/',0,'attachment','image/jpeg',0),(1663,6,'2021-03-03 22:56:36','2021-03-03 22:56:36','<div dir=\"ltr\">See below<div><br></div><div><a href=\"https://youtu.be/Xz2-fAR8zgs\">https://youtu.be/Xz2-fAR8zgs</a><br clear=\"all\"><div><br></div>','Team Meeting video','','publish','closed','open','','team-meeting-video','','','2021-03-03 22:56:36','2021-03-03 22:56:36','',0,'https://lantern-realty.com/?p=1663',0,'post','',0),(1665,0,'2021-03-06 18:44:07','2021-03-06 18:44:07','','677AF495-B8D8-4B38-AA92-45C2C5E07C3D','','inherit','','closed','','677af495-b8d8-4b38-aa92-45c2c5e07c3d','','','2021-03-06 18:44:07','2021-03-06 18:44:07','',0,'https://lantern-realty.com/677af495-b8d8-4b38-aa92-45c2c5e07c3d/',0,'attachment','image/jpeg',0),(1666,0,'2021-03-08 16:56:14','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-08 16:56:14','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1666',0,'post','',0),(1667,0,'2021-03-09 17:56:28','2021-03-09 17:56:28','','_pv9365-1 (1)','','inherit','','closed','','_pv9365-1-1-2','','','2021-03-09 17:56:28','2021-03-09 17:56:28','',0,'https://lantern-realty.com/_pv9365-1-1-2/',0,'attachment','image/jpeg',0),(1668,6,'2021-03-09 19:51:04','2021-03-09 19:51:04','<div dir=\"ltr\"><a href=\"https://youtu.be/KZ6RHFNk1dM\">https://youtu.be/KZ6RHFNk1dM</a><br clear=\"all\"><div><br></div>','Link to \"Power Notes\" class by Laura Overcash','','publish','closed','open','','link-to-power-notes-class-by-laura-overcash','','','2021-03-09 19:51:04','2021-03-09 19:51:04','',0,'https://lantern-realty.com/?p=1668',0,'post','',0),(1669,0,'2021-03-10 18:26:18','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-10 18:26:18','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1669',0,'post','',0),(1670,0,'2021-03-10 19:46:20','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-10 19:46:20','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1670',0,'post','',0),(1671,6,'2021-03-11 14:36:08','2021-03-11 14:36:08','<div dir=\"ltr\">Good Morning All, just a few notes...<div><br></div><div>- Dont forget the Broker Q&amp;A this morning at 11am at the Kannapolis office w/ Tricia Strickland.  Come and learn how Tricia has built a very successful real estate business.  It is today at 11am in the Kannapolis office.</div><div>- We have removed the 2018 &amp; 2019 Docs folder from Dotloop so there will be no confusion on using the correct docs.</div><div>- PLEASE make sure you are submitting your loops for approval.  We are doing this to keep you compliant with the NCREC.</div><div>- Please make sure you are either measuring your properties yourself OR having them professionally measured.  If we see ANY Lantern listings that ask the buyer agent to confirm measurements or reference measurements from the tax records, WE WILL remove the listing until it is measured correctly. </div><div>- Dotloop has finally updated and added Mooresville and Asheville as individual offices.  </div><div>- Lastly, CCAR will be offering FREE GenUp this September.  Be on the lookout for those announcements.  In the meantime, you will be responsible for your own GenUp this year.  Make sure yours is complete prior to June 10th!</div><div><br></div><div>Thanks again for all you do.  <br clear=\"all\"><div><br></div>','News &amp; Notes','','publish','closed','open','','news-notes-10','','','2021-03-11 14:36:08','2021-03-11 14:36:08','',0,'https://lantern-realty.com/?p=1671',0,'post','',0),(1672,0,'2021-03-11 21:11:30','2021-03-11 21:11:30','','_pv9365-1 (1)','','inherit','','closed','','_pv9365-1-1-3','','','2021-03-11 21:11:30','2021-03-11 21:11:30','',0,'https://lantern-realty.com/_pv9365-1-1-3/',0,'attachment','image/jpeg',0),(1674,0,'2021-03-13 01:58:36','2021-03-13 01:58:36','','20210312_154539 (1)','','inherit','','closed','','20210312_154539-1','','','2021-03-13 01:58:36','2021-03-13 01:58:36','',0,'https://lantern-realty.com/20210312_154539-1/',0,'attachment','image/jpeg',0),(1700,6,'2021-03-24 16:56:14','2021-03-24 16:56:14','<div dir=\"ltr\">Good Afternoon,  I had a day long meeting with the NCREC yesterday for my teaching credits.  During the call we learned that the NCREC will be rolling out a new Working W/ Real Estate Agents brochure starting July 1 this year.  I have attached a copy for you to look over.  I feel it is a more simplified version to help both the agent and the consumer better understand what agency is and the choices they have.  <div><br></div><div>The NCREC will be doing a \"soft\" roll out of the new document in April.  They will also be doing webinars to discuss it and explain it to agents.  Lantern is going to try and get a member of the NCREC to join us for a team meeting prior to July and explain it to our agents.  </div><div><br></div><div>That&#39;s literally all I know for now.  No need to ask me questions because I just told you everything I wrote down from yesterday&#39;s meetings.  Keep an eye out for further emails.</div><div><br></div><div>In the meantime, keep doing what you&#39;re doing and making sure you are explaining the Working w/ Real Estate Agents brochure to each and every person you meet and have first substantial contact with. <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/03/WWREA-Disclosure-Form-July-2021.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/pdf-32.png\' alt=\'pdf icon\' /> WWREA-Disclosure-Form-July-2021.pdf</a><br /></div>','IMPORTANT NEWS!!!','','publish','closed','open','','important-news','','','2021-03-24 16:56:14','2021-03-24 16:56:14','',0,'https://lantern-realty.com/?p=1700',0,'post','',0),(1738,1,'2021-04-14 00:35:37','2021-04-14 00:35:37','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2021-04-14 00:35:37','2021-04-14 00:35:37','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1739,1,'2021-04-14 00:35:37','2021-04-14 00:35:37','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2021-04-14 00:35:37','2021-04-14 00:35:37','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1735,1,'2021-04-14 00:31:16','2021-04-14 00:31:16','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2021-04-14 00:31:16','2021-04-14 00:31:16','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1677,1,'2021-03-14 22:24:08','2021-03-14 22:24:08','<!-- wp:paragraph -->\n<p>Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that I am so happy to call this beautiful growing city Home! As a customer service employee for over 10 years helping people is my passion. I feel really blessed to be able to help my Kannapolis community and the surrounding areas finding their dream home, and also selling homes at the best price possible. Please know that I will always prefer having a face to face conversation to communicate with my clients, to help find the trust and need in a conversation. If you have been to El Amigo Mexican Restaurant in the past years, you have probably seen me there, or maybe at the local dental office where I help patients with their dental needs. Please know that I am just a phone call away, and would love to earn your business!</p>\n<!-- /wp:paragraph -->','Viviana Martinez Campos','','publish','closed','closed','','viviana-martinez-campos','','','2021-03-14 22:24:12','2021-03-14 22:24:12','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1677',85,'houzez_agent','',0),(1678,1,'2021-03-14 22:19:53','2021-03-14 22:19:53','<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Viviana Martinez Campos</td></tr></tbody></table></figure>\n<!-- /wp:table -->','','','inherit','closed','closed','','1677-revision-v1','','','2021-03-14 22:19:53','2021-03-14 22:19:53','',1677,'https://lantern-realty.com/1677-revision-v1/',0,'revision','',0),(1679,1,'2021-03-14 22:20:53','2021-03-14 22:20:53','<!-- wp:paragraph -->\n<p>Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that I am so happy to call this beautiful growing city Home! As a customer service employee for over 10 years helping people is my passion. I feel really blessed to be able to help my Kannapolis community and the surrounding areas finding their dream home, and also selling homes at the best price possible. Please know that I will always prefer having a face to face conversation to communicate with my clients, to help find the trust and need in a conversation. If you have been to El Amigo Mexican Restaurant in the past years, you have probably seen me there, or maybe at the local dental office where I help patients with their dental needs. Please know that I am just a phone call away, and would love to earn your business!</p>\n<!-- /wp:paragraph -->','Viviana Martinez Campos','','inherit','closed','closed','','1677-revision-v1','','','2021-03-14 22:20:53','2021-03-14 22:20:53','',1677,'https://lantern-realty.com/1677-revision-v1/',0,'revision','',0),(1680,1,'2021-03-14 22:23:45','2021-03-14 22:23:45','','Viviana_Martinez_Campos','','inherit','','closed','','viviana_martinez_campos','','','2021-03-14 22:23:45','2021-03-14 22:23:45','',1677,'https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg',0,'attachment','image/jpeg',0),(1699,0,'2021-03-24 15:38:16','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-24 15:38:16','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1699',0,'post','',0),(1682,1,'2021-03-14 22:28:06','2021-03-14 22:28:06','<!-- wp:paragraph -->\n<p>A NC native, resident of Cabarrus County for over 30 years and a graduate of UNC Chapel Hill...GO TAR HEELS!! I have been selling real estate for the past several years and love what I do. I am a very social and talkative person, so I never meet a stranger! It is very rewarding helping my clients find their perfect home or sell their home to start a new chapter in their life. I have sold homes around the area to include Lake Norman and Lake Tillery. Who doesn\'t love a little lake life!! I am ready to help you with your real estate needs and answer any questions you may have about the process!</p>\n<!-- /wp:paragraph -->','Taina Shaw','','publish','closed','closed','','taina-shaw','','','2021-03-14 22:28:09','2021-03-14 22:28:09','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1682',110,'houzez_agent','',0),(1683,1,'2021-03-14 22:25:28','2021-03-14 22:25:28','<!-- wp:paragraph -->\n<p>A NC native, resident of Cabarrus County for over 30 years and a graduate of UNC Chapel Hill...GO TAR HEELS!! I have been selling real estate for the past several years and love what I do. I am a very social and talkative person, so I never meet a stranger! It is very rewarding helping my clients find their perfect home or sell their home to start a new chapter in their life. I have sold homes around the area to include Lake Norman and Lake Tillery. Who doesn\'t love a little lake life!! I am ready to help you with your real estate needs and answer any questions you may have about the process!</p>\n<!-- /wp:paragraph -->','Taina Shaw','','inherit','closed','closed','','1682-revision-v1','','','2021-03-14 22:25:28','2021-03-14 22:25:28','',1682,'https://lantern-realty.com/1682-revision-v1/',0,'revision','',0),(1684,1,'2021-03-14 22:27:38','2021-03-14 22:27:38','','taina_shaw','','inherit','','closed','','taina_shaw','','','2021-03-14 22:27:38','2021-03-14 22:27:38','',1682,'https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg',0,'attachment','image/jpeg',0),(1685,1,'2021-03-14 22:32:07','2021-03-14 22:32:07','<!-- wp:paragraph -->\n<p>Wendell is a lifelong resident of the Charlotte Metro area which is a plus when searching for a knowledgeable realtor. His passion to serve people is evidenced by his 30 year law enforcement career and service to his church and other community groups. In 2015, Wendell was awarded the prestigious Robert Jackson Eury Officer of the Year Award by Cabarrus County Law Enforcement. He is a graduate of the 222nd Session of the FBI National Academy in Quantico, Virginia and obtained his Bachelor Degree from Pfeiffer University. Seeking to achieve an excellent experience with every client, we are proud to have Wendell serving as our Broker In Charge of the Kannapolis office.</p>\n<!-- /wp:paragraph -->','Wendell Rummage','','publish','closed','closed','','wendell-rummage','','','2022-06-24 01:15:24','2022-06-24 01:15:24','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1685',105,'houzez_agent','',0),(1686,1,'2021-03-14 22:29:20','2021-03-14 22:29:20','<!-- wp:paragraph -->\n<p>Wendell is a lifelong resident of the Charlotte Metro area which is a plus when searching for a knowledgeable realtor. His passion to serve people is evidenced by his 30 year law enforcement career and service to his church and other community groups. In 2015, Wendell was awarded the prestigious Robert Jackson Eury Officer of the Year Award by Cabarrus County Law Enforcement. He is a graduate of the 222nd Session of the FBI National Academy in Quantico, Virginia and obtained his Bachelor Degree from Pfeiffer University. Seeking to achieve an excellent experience with every client, we are proud to have Wendell serving as our Broker In Charge of the Kannapolis office.</p>\n<!-- /wp:paragraph -->','Wendell Rummage','','inherit','closed','closed','','1685-revision-v1','','','2021-03-14 22:29:20','2021-03-14 22:29:20','',1685,'https://lantern-realty.com/1685-revision-v1/',0,'revision','',0),(1687,1,'2021-03-14 22:31:37','2021-03-14 22:31:37','','wendell_rummage','','inherit','','closed','','wendell_rummage','','','2021-03-14 22:31:37','2021-03-14 22:31:37','',1685,'https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `lrwp_posts` VALUES (1688,1,'2021-03-14 22:48:57','2021-03-14 22:48:57','[[\"Last Name\",\"First Name\",\"Phone\",\"Email\",\"Home Office\",\"Team Role\",\"License #\",\"MLS ID\"],[\"Aldridge\",\"Jeremy\",\"704-773-0722\",\"kadaendeavorenterprises@gmail.com\",\"Kannapolis\",\"Broker\",306776,68707],[\"Allen\",\"Maranda\",\"704-819-7111\",\"Mandee704@hotmail.com\",\"Harrisburg\",\"Broker\",308723,71114],[\"Allison\",\"Sheila\",\"828-712-7843\",\"sheila.allison10@gmail.com\",\"Albemarle\",\"Broker\",307918,69499],[\"Amoakon\",\"Sabine\",\"704-433-8462\",\"sab1.homes@outlook.com\",\"Kannapolis\",\"Broker\",316331,78139],[\"Argabright\",\"Sherri Wiles\",\"704-202-0806\",\"sherriargabright@gmail.com\",\"Kannapolis\",\"Broker\",220340,97879],[\"Aylesworth\",\"Alan\",\"980-330-8401\",\"alan.aylesworth.lantern@gmail.com\",\"Salisbury\",\"Broker\",308001,69474],[\"Barber\",\"Casey\",\"678-516-5196\",\"casey.m.barber@gmail.com\",\"Kannapolis\",\"Broker\",309318,71136],[\"Bare\",\"Alexandria\",\"704-783-5434\",\"abarehomes@gmail.com\",\"Salisbury\",\"Broker\",325549,84360],[\"Baxter\",\"Cheryl\",\"704-796-8843\",\"cmbaxter2@gmail.com\",\"Kannapolis\",\"Broker\",298432,61673],[\"Bendig\",\"Robbie\",\"704-640-4171\",\"rbendig89@gmail.com\",\"Salisbury\",\"Broker\",303589,65910],[\"Benton\",\"Toni\",\"980-521-2696\",\"tbenton81@gmail.com\",\"Kannapolis\",\"Broker\",310611,72825],[\"Bird\",\"April\",\"901-569-3161\",\"abirdhomes@gmail.com\",\"Mooresville\",\"Broker\",301315,63368],[\"Boger\",\"Annie\",\"980-521-3988\",\"Annie.homes4u@gmail.com\",\"Kannapolis\",\"Broker\",291550,50846],[\"Brown\",\"Elizabeth\",\"704-421-0317\",\"elizabethbrownrealtor@gmail.com\",\"Kannapolis\",\"Broker\",302094,62799],[\"Brown\",\"Brenda\",\"704-796-1948\",\"seniors2@twc.com\",\"Kannapolis\",\"Broker\",302340,70430],[\"Bullock\",\"Dale\",\"704-791-5457\",\"dale.bullock2014realtor@gmail.com\",\"Kannapolis\",\"Broker\",280284,34573],[\"Cannon\",\"Janice\",\"205-514-5124\",\"janiceacannon@gmail.com\",\"Harrisburg\",\"Broker\",322349,83949],[\"Cauble\",\"Crystal\",\"980-521-8431\",\"crystalcauble27@gmail.com\",\"Kannapolis\",\"Broker\",297260,60165],[\"Caudill\",\"Evonne\",\"704-791-7012\",\"ecaudill12@gmail.com\",\"Kannapolis\",\"Broker\",242767,52756],[\"Chambers\",\"Renee\",\"704-925-7938\",\"NC.Realtor.Renee@gmail.com\",\"Kannapolis\",\"Broker\",316110,82316],[\"Chandler\",\"Emily\",\"615-397-1925\",\"emilychandler.realtor@gmail.com\",\"Harrisburg\",\"Broker\",297265,60204],[\"Christy\",\"Meredith\",\"980-248-4097\",\"meredith@meredithchristy.com\",\"Harrisburg\",\"Broker\",298605,61273],[\"Clark\",\"Tracie\",\"704-900-4637\",\"tracieclarksells@gmail.com\",\"Harrisburg\",\"Broker\",238413,29140],[\"Clodfelter\",\"Jody\",\"704-438-2190\",\"jodyc1972@gmail.com\",\"Albemarle\",\"Broker\",297153,58787],[\"Cloward\",\"Jessica\",\"704-502-8383\",\"jessicacloward1@gmail.com\",\"Salisbury\",\"Broker - in - Charge\",298274,57857],[\"Cody\",\"Amanda\",\"980-581-1399\",\"amandaearnhardt@yahoo.com\",\"Albemarle\",\"Broker\",217780,50220],[\"Cook\",\"Jenna\",\"704-960-5591\",\"4jennacook@gmail.com\",\"Kannapolis\",\"Broker\",293117,53960],[\"Davis\",\"Michael\",\"\",\"mdavis@thewhiteoakgrove.com\",\"Kannapolis\",\"Broker\",289518,548508637],[\"Drakulich\",\"Kimberly\",\"704-778-6959\",\"kim.drakulich@gmail.com\",\"Kannapolis\",\"Broker\",277431,35684],[\"Dunphy\",\"Australia\",\"704-701-0177\",\"cdunphy51@hotmail,com\",\"Kannapolis\",\"Broker\",293885,67265],[\"Erion\",\"Ivonne\",\"704-796-3530\",\"ivonne@ivonneerion.com\",\"Kannapolis\",\"Broker\",289340,48565],[\"Evans\",\"Amy\",\"704-273-0107\",\"amyevansrealty@gmail.com\",\"Kannapolis\",\"Broker\",297737,59809],[\"Farlow\",\"Michael\",\"828-231-5466\",\"mfarlowrealtor@gmail.com\",\"Asheville\",\"Broker\",\"\",\"\"],[\"Ferlauto\",\"Ashley\",\"980-333-8085\",\"ashleyferlauto@gmail.com\",\"Kannapolis\",\"Broker\",291080,50443],[\"Fox\",\"Tammy\",\"704-785-7597\",\"tammyafox@gmail.com\",\"Kannapolis\",\"Broker\",278107,31636],[\"Franklin\",\"Jeff\",\"704-787-4888\",\"jeff.franklin.realtor@gmail.com\",\"Salisbury\",\"Broker\",298704,61490],[\"Fullerton\",\"Michael\",\"980-318-4961\",\"mikefullerton72@gmail.com\",\"Albemarle\",\"Broker - in - Charge\",290662,51527],[\"Garcia\",\"Yira\",\"704-907-9573\",\"ygarciarealty@gmail.com\",\"Kannapolis\",\"Broker\",300114,63290],[\"Gearing\",\"Lynnette\",\"704-699-6902\",\"lynnettegearing.realtor@gmail.com\",\"Kannapolis\",\"Broker\",306394,69473],[\"Griffin\",\"Deborah\",\"980-428-2462\",\"deborahg142@gmail.com\",\"Salisbury\",\"Broker\",145465,56410],[\"Hager\",\"Cathy\",\"980-521-4429\",\"1cathyhager@gmail.com\",\"Kannapolis\",\"Broker\",294095,54235],[\"Hallman\",\"Liz\",\"980-621-9575\",\"lizphallman@gmail.com\",\"Kannapolis\",\"Broker\",281082,35806],[\"Haywood\",\"Conard\",\"704-467-5102\",\"conardhaywood@gmail.com\",\"Kannapolis\",\"Broker\",319615,\"\"],[\"Henrickson\",\"Ivan\",\"704-309-7841\",\"ivanbhenrickson@gmail.com\",\"Mooresville\",\"Broker\",319616,80237],[\"Hill\",\"Hosanna\",\"336-317-8050\",\"hill.hosanna@gmail.com\",\"Kannapolis\",\"Broker\",315320,76468],[\"Hiner\",\"Donna\",\"704-956-9898\",\"donnasellsrealestate1@gmail.com\",\"Harrisburg\",\"Broker\",272915,21485],[\"Howell\",\"Kimberly\",\"704-699-2600\",\"kdhowell1996@gmail.com\",\"Salisbury\",\"Broker\",302115,64440],[\"Jackling\",\"Melissa\",\"980-621-4623\",\"onlymyrealtormelissa@gmail.com\",\"Kannapolis\",\"Broker\",291920,51371],[\"Jalynski\",\"Christine\",\"704-749-4944\",\"cjalynskirealty@gmail.com\",\"Kannapolis\",\"Broker\",297054,58601],[\"Johnson\",\"Priscilla\",\"704-891-5386\",\"priscillajrealtor@gmail.com\",\"Kannapolis\",\"Broker\",\"\",80621],[\"Keller\",\"Kelly\",\"704-467-4485\",\"kelly.keller.realty@gmail.com\",\"Kannapolis\",\"Broker\",313269,74509],[\"Keller\",\"Margie\",\"704-245-2739\",\"margkellerhomes@gmail.com\",\"Salisbury\",\"Broker\",298750,61747],[\"Kidd\",\"Cheyenne\",\"980-939-3809\",\"cheyennekidd00@gmail.com\",\"Salisbury\",\"Broker\",318995,81249],[\"LaCroix\",\"Melissa\",\"704-796-6531\",\"mlacroix.realty@gmail.com\",\"Kannapolis\",\"Broker\",303207,65548],[\"Lamb\",\"Dawn\",\"980-781-7385\",\"dawnlambrealtor@gmail.com\",\"Kannapolis\",\"Broker\",315881,77815],[\"Lambert\",\"Amanda\",\"704-400-0641\",\"teamlambert.sellsnc@gmail.com\",\"Kannapolis\",\"Broker\",25766,65579],[\"Lambert\",\"Jerry\",\"704-791-0429\",\"jerry.teamlambert@gmail.com\",\"Kannapolis\",\"Broker\",321038,81412],[\"Lambert\",\"Pam\",\"704-791-1074\",\"pamlambert.ncrealtor@gmail.com\",\"Kannapolis\",\"Broker\",216222,16805],[\"Laney\",\"Sandi\",\"704-773-5886\",\"sandilaney2@gmail.com\",\"Kannapolis\",\"Broker\",272563,22259],[\"Lawing\",\"Katherine\",\"828-772-0220\",\"klawingrealtor@gmail.com\",\"Asheville\",\"Broker - in - Charge\",\"\",\"\"],[\"Leonard\",\"Bret\",\"980-521-7156\",\"buywithbret@gmail.com\",\"Salisbury\",\"Broker\",303052,65034],[\"Love Hammel\",\"Alicia\",\"704-699-7843\",\"aliciahammelrealtor@gmail.com\",\"Kannapolis\",\"Broker\",301472,64447],[\"Martinez Campos\",\"Viviana\",\"704-777-7245\",\"12martiv@gmail.com\",\"Kannapolis\",\"Broker\",318492,78947],[\"Matthews\",\"Helen\",\"704-796-4026\",\"hamatthews@gmail.com\",\"Kannapolis\",\"Broker\",303222,65519],[\"McCauley\",\"Lindsey\",\"704-236-7850\",\"lmccauley727@gmail.com\",\"Kannapolis\",\"Broker\",298645,61546],[\"McCLure\",\"Taylor\",\"980-253-0223\",\"taylormcclure23@gmail.com\",\"Kannapolis\",\"Broker\",321999,82269],[\"Merrell\",\"Connie\",\"704-701-1678\",\"connie.merrell.realtor@gmail.com\",\"Kannapolis\",\"Broker\",320338,81061],[\"Miltz\",\"Deanna\",\"704-634-6289\",\"dmiltzrealtor@gmail.com\",\"Harrisburg\",\"Broker\",298941,61437],[\"Monrad\",\"Rachel\",\"704-682-9422\",\"rachel@randsrealtygroup.com\",\"Mooresville\",\"Broker\",251860,32949],[\"Nutter\",\"Julie\",\"240-888-7493\",\"teamnutter@gmail.com\",\"Kannapolis\",\"Broker\",293824,48403],[\"Overcash\",\"Jason\",\"980-622-6327\",\"jasonovercashrealty@gmail.com\",\"Kannapolis\",\"Broker\",305546,68295],[\"Overcash\",\"Laura\",\"704-699-0765\",\"lovercashre@gmail.com\",\"Kannapolis\",\"Broker\",301686,63472],[\"Petty\",\"Deana\",\"704-258-8068\",\"deana327@gmail.com\",\"Kannapolis\",\"Broker/Owner\",263080,72155],[\"Puckett\",\"Chris\",\"704-298-5872\",\"ch2realty@gmail.com\",\"Kannapolis\",\"Qualifying Broker/Owner\",279213,32613],[\"Queen\",\"Rodney\",\"704-239-3617\",\"rodneque@aol.com\",\"Salisbury\",\"Broker\",197764,18091],[\"Rhew\",\"Rick\",\"704-491-2458\",\"ricksellsnc@gmail.com\",\"Harrisburg\",\"Broker\",288631,49282],[\"Robinson\",\"Kelly\",\"704-699-2268\",\"kelly.robinson.realtor@gmail.com\",\"Kannapolis\",\"Broker\",316981,79218],[\"Rogers\",\"Hayley\",\"704-431-2816\",\"hayley.realestate.rogers@gmail.com\",\"Harrisburg\",\"Broker - in - Charge\",281085,35693],[\"Romesburg\",\"Sarah\",\"336-466-1646\",\"sarah@randsrealtygroup.com\",\"Mooresville\",\"Broker\",279215,32982],[\"Rummage\",\"Wendell\",\"704-791-7475\",\"realtor.wendell.rummage@gmail.com\",\"Kannapolis\",\"Broker - in - Charge\",288825,46923],[\"Sadler\",\"Kimberly\",\"704-798-8338\",\"kimsadler.realtor@gmail.com\",\"Kannapolis\",\"Broker\",290260,49723],[\"Severt\",\"Paula\",\"704-232-3433\",\"paulasevert@yahoo.com\",\"Kannapolis\",\"Broker/Owner\",256100,68433],[\"Shaw\",\"Taina\",\"704-467-0090\",\"taina@tshawrealty.com\",\"Kannapolis\",\"Broker\",172196,17219],[\"Sherin\",\"Chelsi\",\"570-690-3723\",\"chelsi.sherin@gmail.com\",\"Kannapolis\",\"Broker\",317621,79645],[\"Sides\",\"Holden\",\"704-699-2092\",\"sideshb94@yahoo.com\",\"Kannapolis\",\"Broker\",322169,\"\"],[\"Sloan Holshouser\",\"Courtney\",\"704-754-7104\",\"csloansellshomes@gmail.com\",\"Salisbury\",\"Broker\",314926,\"\"],[\"Starnes\",\"Susan\",\"704-305-0040\",\"susansellsnchomes@gmail.com\",\"Harrisburg\",\"Broker\",304452,66546],[\"Stillinger\",\"Ethan\",\"704-957-1282\",\"ethanstillingerlrd@gmail.com\",\"Kannapolis\",\"Broker\",283899,39819],[\"Strickland\",\"Tricia\",\"704-791-7314\",\"tricia.strickland927@gmail.com\",\"Kannapolis\",\"Broker\",314178,75477],[\"Sue Bingham\",\"Brenda\",\"704-787-2539\",\"brenda@bingham.cc\",\"Albemarle\",\"Broker\",302334,65004],[\"Suther\",\"John\",\"704-622-1432\",\"johnsutherllc@gmail.com\",\"Kannapolis\",\"Broker\",309445,71221],[\"Thompson\",\"Chuck\",\"704-701-0129\",\"crtbroker@gmail.com\",\"Kannapolis\",\"Broker\",278357,31317],[\"Tichnor\",\"Michele\",\"704-699-8824\",\"Michele.Tichnor@gmail.com\",\"Kannapolis\",\"Broker\",321191,81688],[\"Trask\",\"Kimberly\",\"336-906-0848\",\"kimberlyktrask@gmail.com\",\"Kannapolis\",\"Broker\",312666,75085],[\"Uttecht\",\"Ashley\",\"704-792-5147\",\"ashleyuttecht@gmail.com\",\"Mooresville\",\"Broker\",303298,65845],[\"Walter\",\"Dominique\",\"828-638-5353\",\"dwalterhomes4u@gmail.com\",\"Mooresville\",\"Broker\",318276,78901],[\"Watson\",\"Brianne\",\"704-791-3272\",\"briannewatsonrealtor@gmail.com\",\"Kannapolis\",\"Broker\",293189,53736],[\"Widenhouse\",\"Cindy\",\"704-795-8017\",\"cindy.s.widenhouse@gmail.com\",\"Kannapolis\",\"Broker\",299028,61885],[\"Wilson\",\"Rick\",\"704-996-9902\",\"richard.wilson4565@gmail.com\",\"Kannapolis\",\"Broker\",321788,81743],[\"Wiser\",\"Paige\",\"704-904-1903\",\"PaigeWiserRealtor@gmail.com\",\"Salisbury\",\"Broker\",309172,71081],[\"Wooley\",\"Todd\",\"704-904-7162\",\"twooleyrealty@gmail.com\",\"Kannapolis\",\"Broker\",309536,71163],[\"Yates\",\"Melissa\",\"704-239-3835\",\"melissayates4u@gmail.com\",\"Salisbury\",\"Broker\",307917,69428],[\"Zhang\",\"Min\",\"319-471-1622\",\"realtymin77@gmail.com\",\"Harrisburg\",\"Broker\",299816,63292]]','Team Directory','','inherit','closed','closed','','1199-revision-v1','','','2021-03-14 22:48:57','2021-03-14 22:48:57','',1199,'https://lantern-realty.com/1199-revision-v1/',0,'revision','',0),(1689,0,'2021-03-15 15:17:51','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-15 15:17:51','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1689',0,'post','',0),(1690,0,'2021-03-16 15:36:10','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-16 15:36:10','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1690',0,'post','',0),(1691,0,'2021-03-17 13:19:13','2021-03-17 13:19:13','','Micheal Farlow pic','','inherit','','closed','','micheal-farlow-pic','','','2021-03-17 13:19:13','2021-03-17 13:19:13','',0,'https://lantern-realty.com/micheal-farlow-pic/',0,'attachment','image/jpeg',0),(1694,0,'2021-03-17 16:56:26','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-17 16:56:26','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1694',0,'post','',0),(1693,0,'2021-03-17 15:19:39','2021-03-17 15:19:39','','Lawing_10_MLS','','inherit','','closed','','lawing_10_mls','','','2021-03-17 15:19:39','2021-03-17 15:19:39','',0,'https://lantern-realty.com/lawing_10_mls/',0,'attachment','image/jpeg',0),(1695,0,'2021-03-19 00:31:26','2021-03-19 00:31:26','','_D4K7830 (2)','','inherit','','closed','','_d4k7830-2','','','2021-03-19 00:31:26','2021-03-19 00:31:26','',0,'https://lantern-realty.com/_d4k7830-2/',0,'attachment','image/jpeg',0),(1696,6,'2021-03-21 13:25:56','2021-03-21 13:25:56','<div dir=\"ltr\">Good Morning All, just a few notes to start your week...<div><br></div><div>-  We have more great education classes coming up this week.  Sarah Romesburg is teaching CONTRACTS to CLOSE on Tuesday at 10 and Hayley Rogers is teaching about NEW HOME CONSTRUCTION Tuesday at 1pm.  Both will be held via Zoom.  Invites will be sent out Monday.</div><div><br></div><div>Also this week Nic Lovelace w/ Knipp Law will be holding a class at our Kannapolis office and on Zoom.  This class will be on TITLE ISSUES.  Lord knows we all need this class.  It will be at 2pm on Wednesday.  </div><div><br></div><div>-  On Thursday 3/25 at 11am, we will hold a meeting of our Social Outreach Committee.  It will be held in our Kannapolis office.  We will also be on Zoom so folks in all of our offices can participate.  This committee is to identify needs ALL in the communities we serve and how we can help.  </div><div><br></div><div>- We will be finalizing plans for our Men of Lantern outing this week.  More details to follow!</div><div><br></div><div>- Lastly, we had a recent incident where an agent&#39;s listing was showing up incorrectly in Zillow and, as you can imagine it angered the client. The agent took steps to contact Zillow to rectify and after much work got it corrected.</div><div><br></div><div>The agent then contacted the NCAR legal hotline to see what liability they may have as an agent.  The agent was told that ultimately the liability of advertising is the responsibility of the listing agent.  That being said the NCAR Council also said \"<span style=\"color:rgb(0,0,0)\">that what gets posted on other people&#39;s site from CMLS feed is beyond our control\".  </span></div><div><font color=\"#000000\"><br></font></div><div><font color=\"#000000\">NCAR Council noted that it is in our best interest to keep all communication with Zillow.  Make sure that all attempts to \"fix\" the issue need to be in writing and documented.  </font></div><div><font color=\"#000000\"><br></font></div><div><font color=\"#000000\">Thank you all for your hard work.  If you ever need anything, please let Paula, Deana or myself know.  </font></div><div><font color=\"#000000\"><br></font></div><div><font color=\"#000000\"><br clear=\"all\"></font><div><br></div>','News &amp; Notes','','publish','closed','open','','news-notes-11','','','2021-03-21 13:25:56','2021-03-21 13:25:56','',0,'https://lantern-realty.com/?p=1696',0,'post','',0),(1697,0,'2021-03-21 16:06:43','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-21 16:06:43','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1697',0,'post','',0),(1698,0,'2021-03-22 13:06:13','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-22 13:06:13','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1698',0,'post','',0),(1701,6,'2021-03-24 16:56:14','2021-03-24 16:56:14','','WWREA-Disclosure-Form-July-2021.pdf','','inherit','closed','closed','','wwrea-disclosure-form-july-2021','','','2021-03-24 16:56:14','2021-03-24 16:56:14','',1700,'https://lantern-realty.com/wp-content/uploads/2021/03/WWREA-Disclosure-Form-July-2021.pdf',0,'attachment','application/pdf',0),(1702,0,'2021-03-24 17:18:57','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-24 17:18:57','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1702',0,'post','',0),(1703,0,'2021-03-24 17:46:05','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-24 17:46:05','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1703',0,'post','',0),(1704,6,'2021-03-25 13:37:01','2021-03-25 13:37:01','<div dir=\"ltr\">  <a href=\"https://youtu.be/l4I1W1KIGj4\">https://youtu.be/l4I1W1KIGj4</a>  <br><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">','Fwd: Zoom link for Tuesday classes March 23 - Contracts to Close 10 am and New Construction 1pm','','publish','closed','open','','fwd-zoom-link-for-tuesday-classes-march-23-contracts-to-close-10-am-and-new-construction-1pm','','','2021-03-25 13:37:01','2021-03-25 13:37:01','',0,'https://lantern-realty.com/?p=1704',0,'post','',0),(1705,0,'2021-03-25 14:56:23','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-03-25 14:56:23','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1705',0,'post','',0),(1706,0,'2021-03-29 15:03:54','2021-03-29 15:03:54','','julie photo','','inherit','','closed','','julie-photo','','','2021-03-29 15:03:54','2021-03-29 15:03:54','',0,'https://lantern-realty.com/julie-photo/',0,'attachment','image/jpeg',0),(1707,6,'2021-03-29 20:47:21','2021-03-29 20:47:21','<div dir=\"ltr\">Good Afternoon, below are a few notes for the upcoming week....<div><br></div><div>- We are excited to announce \"Lantern Loves\".  This is our social outreach effort.  We have branded it so to draw more attention to our efforts to our communities.  Our first effort is to take treats to local nursing facilities in the areas we serve.  Keep your eyes open for ways you can serve and contribute.</div><div>- I have attached a copy of our class schedule.</div><div>- Don&#39;t forget that Dotloop classes are offered one on one with Melissa Jackling.  Please contact her if you need anything at all regarding DotLoop.</div><div>- April 22nd is a HUGE day for us.  Our Men of Lantern event will be held at TopGolf Charlotte at noon.  Men, if you haven&#39;t responded please let me know that you will be attending.  </div><div>   Also, Ladies of Lantern event will be held at StoneGate Farms in CHina Grove.  Details to follow.<br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/03/LRD-Roster_032521.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> LRD-Roster_032521.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/03/2021-Educational-Calendar.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-4','','','2021-03-29 20:47:21','2021-03-29 20:47:21','',0,'https://lantern-realty.com/?p=1707',0,'post','',0),(1708,6,'2021-03-29 20:47:21','2021-03-29 20:47:21','','LRD-Roster_032521.xlsx','','inherit','closed','closed','','lrd-roster_032521','','','2021-03-29 20:47:21','2021-03-29 20:47:21','',1707,'https://lantern-realty.com/wp-content/uploads/2021/03/LRD-Roster_032521.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1709,6,'2021-03-29 20:47:21','2021-03-29 20:47:21','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-5','','','2021-03-29 20:47:21','2021-03-29 20:47:21','',1707,'https://lantern-realty.com/wp-content/uploads/2021/03/2021-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1710,6,'2021-04-02 12:49:14','2021-04-02 12:49:14','<div dir=\"ltr\">Good Friday to All!!! Just a few notes for everyone as we head into the Easter Weekend.  <div><br></div><div>- <b>\"Lantern Loves\"</b> is our new Social Outreach committee.  I have attached the logos to this email. We have already sent gifts to local nursing homes in the markets we serve!  It shows what we can do and the folks we can impact if we put our efforts to work! Be on the lookout for more ways to serve.  If you have ideas of how we can serve, please contact Melissa Yates.  Also, make sure to use #LanternLoves on your Instagram account and share our post.</div><div>- I have attached our <b>Education Calendar</b>.  Make sure you are in the right place at the right time!</div><div>- Our <b>team meeting</b> will be this Wednesday at 11am via Zoom.  Be on the lookout for the meeting invite.</div><div>- We have some <b>construction</b> going on in the Kannapolis office.  If you come by please be aware.  </div><div>- If you haven&#39;t joined our private<b> Facebook group</b> \"Lantern Realty Agents and Vendors\" please request membership.  Also, make sure you \"LIKE\" our public Facebook page \"Lantern Realty &amp; Development, LLC\" and share with your friends. </div><div>- MEN!!!!!  Dont forget to let me know if you will be attending our <b>Men of Lantern event on 4/22</b> at TopGolf Charlotte.  We need your responses asap.  You dont have to play golf, just come and enjoy the food and fellowship.</div><div>- LADIES!!!! We arent leaving you out.  Here is a link to sign up for our <b>First Annual Ladies of Lantern event </b>on 4/22.  PLEASE make sure you RSVP.  </div><div><a href=\"https://jennablacksellshomes.com/ladiesoflantern?fbclid=IwAR2K0p8InXjCIvD2A0feGG7LjPXQL9UZIVpK9jPd0yZzaPSnCFSoN8bYfsU\">https://jennablacksellshomes.com/ladiesoflantern?fbclid=IwAR2K0p8InXjCIvD2A0feGG7LjPXQL9UZIVpK9jPd0yZzaPSnCFSoN8bYfsU</a></div><div>You can also access the sign up link on our private Facebook group.  </div><div>- <b>VERY IMPORTANT!!!</b>!  We need all of those agents that want to sign up for <b>leads from our website</b> to email Melissa Jackling.  We are doing a sign up sheet so the leads that are generated through our website are not given to agents that are not interested in leads.  Please send her your name.  Also, leads coming through the Lantern website will be on a 70/30 split unless the lead asks specifically for the listing agent.  We are currently working with two more lead gen sites to help you expand your business.  </div><div>- Make sure you are applying ANNUALLY for your <b>Privilege License</b> through NC Department of Revenue.  This is your responsibility, not Lanterns.  </div><div>- We have made a change on our <b>onboarding process</b>.  We are now requiring new agents to have a mentor for their first 4 transactions.  This DOES NOT apply to anyone currently on board but will apply to any new agents going forward.  So if you run across someone looking to join Lantern, make sure you tell them of the current updated requirements. </div><div>- Lastly, we are making it <b>mandatory</b> for you to have a <b>mentor</b> if you do a transaction on a type of property which you have never done.  If you have never done a commercial deal, you need a mentor.  Same with land, lake homes, vacation homes etc.  You are putting yourself at great liability by handling a transaction that you have never done before.  You are also not doing your client any favors and are violating NC License Law.  No commission is worth your license!</div><div><br></div><div>I hope you all have a blessed weekend and get to enjoy your family and friends.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/?attachment_id=1711\"><img src=\"https://lantern-realty.com/wp-content/uploads/2021/04/lanternloves-vector-file.svg\" alt=\"\" width=\"1px\" height=\"1px\" class=\"alignnone size-medium wp-image-1711\" /></a><br />\n<a href=\"https://lantern-realty.com/?attachment_id=1712\"><img src=\"https://lantern-realty.com/wp-content/uploads/2021/04/lantenloves-transparent.png\" alt=\"\" width=\"300px\" height=\"162px\" class=\"alignnone size-medium wp-image-1712\" /></a><br />\n<a href=\"https://lantern-realty.com/?attachment_id=1713\"><img src=\"https://lantern-realty.com/wp-content/uploads/2021/04/Lanternloves-high-resolution.jpg\" alt=\"\" width=\"300px\" height=\"212px\" class=\"alignnone size-medium wp-image-1713\" /></a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/04/2021-Educational-Calendar.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/04/LRD-Roster_032521.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> LRD-Roster_032521.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-12','','','2021-04-02 12:49:14','2021-04-02 12:49:14','',0,'https://lantern-realty.com/?p=1710',0,'post','',0),(1711,6,'2021-04-02 12:47:51','2021-04-02 12:47:51','','lanternloves-vector-file.svg','','inherit','closed','closed','','lanternloves-vector-file','','','2021-04-02 12:47:51','2021-04-02 12:47:51','',1710,'https://lantern-realty.com/wp-content/uploads/2021/04/lanternloves-vector-file.svg',0,'attachment','image/svg+xml',0),(1712,6,'2021-04-02 12:47:51','2021-04-02 12:47:51','','lantenloves-transparent.png','','inherit','closed','closed','','lantenloves-transparent','','','2021-04-02 12:48:52','2021-04-02 12:48:52','',1710,'https://lantern-realty.com/wp-content/uploads/2021/04/lantenloves-transparent.png',0,'attachment','image/png',0),(1713,6,'2021-04-02 12:48:52','2021-04-02 12:48:52','','Lanternloves-high-resolution.jpg','','inherit','closed','closed','','lanternloves-high-resolution','','','2021-04-02 12:49:14','2021-04-02 12:49:14','',1710,'https://lantern-realty.com/wp-content/uploads/2021/04/Lanternloves-high-resolution.jpg',0,'attachment','image/jpeg',0),(1714,6,'2021-04-02 12:49:14','2021-04-02 12:49:14','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-6','','','2021-04-02 12:49:14','2021-04-02 12:49:14','',1710,'https://lantern-realty.com/wp-content/uploads/2021/04/2021-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1715,6,'2021-04-02 12:49:14','2021-04-02 12:49:14','','LRD-Roster_032521.xlsx','','inherit','closed','closed','','lrd-roster_032521-2','','','2021-04-02 12:49:14','2021-04-02 12:49:14','',1710,'https://lantern-realty.com/wp-content/uploads/2021/04/LRD-Roster_032521.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1716,0,'2021-04-02 14:12:19','2021-04-02 14:12:19','','78246493_2614369991981131_3987109451881512960_o','','inherit','','closed','','78246493_2614369991981131_3987109451881512960_o','','','2021-04-02 14:12:19','2021-04-02 14:12:19','',0,'https://lantern-realty.com/78246493_2614369991981131_3987109451881512960_o/',0,'attachment','image/jpeg',0),(1717,6,'2021-04-03 13:08:39','2021-04-03 13:08:39','<div dir=\"ltr\">Good Morning All, wanted to get this in front of you in case you missed it.  The attached article came from the NCREC monthly bulletin.  There are some very good bullet points in this article.  <div><br></div><div>Remember, you CAN NOT draft legal documents.  Make sure your client is hiring an attorney to draft any kind of clauses.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/04/NCREC-Bulletins-–-The-Pitfalls-of-Using-Escalation-Clauses.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/pdf-32.png\' alt=\'pdf icon\' /> NCREC-Bulletins-–-The-Pitfalls-of-Using-Escalation-Clauses.pdf</a><br /></div>','Escalator Clauses','','publish','closed','open','','escalator-clauses','','','2021-04-03 13:08:39','2021-04-03 13:08:39','',0,'https://lantern-realty.com/?p=1717',0,'post','',0),(1718,6,'2021-04-03 13:08:39','2021-04-03 13:08:39','','NCREC-Bulletins-–-The-Pitfalls-of-Using-Escalation-Clauses.pdf','','inherit','closed','closed','','ncrec-bulletins-the-pitfalls-of-using-escalation-clauses','','','2021-04-03 13:08:39','2021-04-03 13:08:39','',1717,'https://lantern-realty.com/wp-content/uploads/2021/04/NCREC-Bulletins-–-The-Pitfalls-of-Using-Escalation-Clauses.pdf',0,'attachment','application/pdf',0),(1719,0,'2021-04-05 11:16:00','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-04-05 11:16:00','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1719',0,'post','',0),(1720,0,'2021-04-05 18:40:44','2021-04-05 18:40:44','','166761760_482265923125422_5525175317584077461_n','','inherit','','closed','','166761760_482265923125422_5525175317584077461_n','','','2021-04-05 18:40:44','2021-04-05 18:40:44','',0,'https://lantern-realty.com/166761760_482265923125422_5525175317584077461_n/',0,'attachment','image/jpeg',0),(1721,0,'2021-04-06 15:35:58','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-04-06 15:35:58','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1721',0,'post','',0),(1722,6,'2021-04-07 16:16:16','2021-04-07 16:16:16','<div dir=\"ltr\">Here is the link to yesterdays Forms Class.<div><br></div><div><a href=\"https://youtu.be/T3yiqpG21BA\">https://youtu.be/T3yiqpG21BA</a><br clear=\"all\"><div><br></div>','Forms class YouTube Link','','publish','closed','open','','forms-class-youtube-link','','','2021-04-07 16:16:16','2021-04-07 16:16:16','',0,'https://lantern-realty.com/?p=1722',0,'post','',0),(1723,0,'2021-04-10 15:33:38','2021-04-10 15:33:38','','Micheal Farlow pic','','inherit','','closed','','micheal-farlow-pic-2','','','2021-04-10 15:33:38','2021-04-10 15:33:38','',0,'https://lantern-realty.com/micheal-farlow-pic-2/',0,'attachment','image/jpeg',0),(1724,6,'2021-04-12 17:26:50','2021-04-12 17:26:50','<div dir=\"ltr\">Good Afternoon, here are a few notes to start your week off....<div><br></div><div>- I will be hosting <b>\"How to Measure a House\"</b> tomorrow (4/12) at 10am at 508 S. Main St., Kannapolis.  It is my flip that is currently under rehab.  There is very little parking at the house.  There is a gas station beside of the house that you may park at.  I have also spoken with the manager at the First Bank across the street, she has agreed to let us park in her parking lot away from the First Bank building.  This is an active construction site, so if you come please wear appropriate clothing and footwear.  Also, please wear your masks and adhere to all Covid protocols.  </div><div>- I have attached our latest <b>Education</b> calendar.  Also note that Amanda Lambert will be teaching on Wednesday <b>\"How to Pull Deeds &amp; Permits\"</b>.  </div><div>- I&#39;ve also attached our updated Roster.  We have a fantastic office in Asheville if you ever need assistance in that area.  </div><div>- Men, don&#39;t forget our <b>Men of Lantern </b>event at TopGolf Charlotte on Thursday 4/22 from 12-3pm.  Don&#39;t worry if you cant play golf, just come and take a breather from this crazy world and enjoy good food and fellowship.</div><div>- Ladies, the <b>Women of Lantern</b> event will start at 10am on 4/22 at StoneGate Farms in China Grove.  </div><div>- PLEASE make sure all correspondence and commission checks are coming to the <b>correct address</b>.  We are still getting items sent to 812 N. Main St.  In case some don&#39;t know our new main office address is 119 West Avenue, Kannapolis, NC 28081.  Thankfully, I know the person that moved in that space but I don&#39;t want anyone&#39;s check to get lost.  You can always deposit the commission check yourself if needed.</div><div>- Lastly, please make sure you are adhering to the NCREC guidelines regarding Dual Agency and Designated Dual Agency.  Dual Agency occurs when ONE FIRM represents TWO parties in a transaction. If you have any questions at all, please call your BIC or Melissa Jackling for clarification.  <br></div><div><br></div><div>Thanks again for all you do!  You are all appreciated more than you know. </div><div><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/04/2021-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/04/LRD-Roster_041021.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/silver/xls-32.png\' alt=\'xls icon\' /> LRD-Roster_041021.xlsx</a><br /></div>','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-5','','','2021-04-12 17:26:50','2021-04-12 17:26:50','',0,'https://lantern-realty.com/?p=1724',0,'post','',0),(1725,6,'2021-04-12 17:26:50','2021-04-12 17:26:50','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-1-3','','','2021-04-12 17:26:50','2021-04-12 17:26:50','',1724,'https://lantern-realty.com/wp-content/uploads/2021/04/2021-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1726,6,'2021-04-12 17:26:50','2021-04-12 17:26:50','','LRD-Roster_041021.xlsx','','inherit','closed','closed','','lrd-roster_041021','','','2021-04-12 17:26:50','2021-04-12 17:26:50','',1724,'https://lantern-realty.com/wp-content/uploads/2021/04/LRD-Roster_041021.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1727,6,'2021-04-13 12:56:59','2021-04-13 12:56:59','<div dir=\"ltr\">See below from Dotloop.  More resources at your fingertips!<br><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">','Fwd: NEW Training Resources','','publish','closed','open','','fwd-new-training-resources','','','2021-04-13 12:56:59','2021-04-13 12:56:59','',0,'https://lantern-realty.com/?p=1727',0,'post','',0),(1728,0,'2021-04-13 13:26:02','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-04-13 13:26:02','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1728',0,'post','',0),(1729,0,'2021-04-13 17:47:38','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-04-13 17:47:38','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1729',0,'post','',0),(1839,9,'2021-04-23 16:46:55','2021-04-23 16:46:55','<div dir=\"ltr\">Hey Everyone!<div><br></div><div>I hope you are having a wonderful Friday.  Field Trip Time!  Shaun Gamble from Veterans Home Inspections has graciously offered to host a mock home inspection with a guest lender who specializes in FHA/VA type loans so bring all your questions...  It will be a live and on location class coming up on Tuesday, April 27 at 9:30 am. at 713 N Caldwell St Salisbury NC - because <b>it is limited to 15 agents</b>, if there is more interest in it, Shaun has offered to host a future class for those unable to attend this one.  <font face=\"arial, sans-serif\" style=\"\">He will <span style=\"letter-spacing:0.5px;color:rgb(57,54,79)\">be going over how to quickly identify issues with a home while showing it to your clients among other helpful tips.</span></font></div><div><font color=\"#39364f\" face=\"arial, sans-serif\"><span style=\"letter-spacing:0.5px\"><br></span></font></div><div><font color=\"#39364f\" face=\"arial, sans-serif\"><span style=\"letter-spacing:0.5px\"><b>You must register at the following link</b>   </span></font><a href=\"https://www.eventbrite.com/e/understanding-a-home-inspection-tickets-150603500123\">https://www.eventbrite.com/e/understanding-a-home-inspection-tickets-150603500123</a><font color=\"#39364f\" face=\"arial, sans-serif\"><span style=\"letter-spacing:0.5px\"><br></span></font><div class=\"gmail-g-group gmail-l-mar-bot-6 gmail-l-sm-mar-bot-4\" style=\"margin:0px 0px 30px;padding:0px;font-size:0px;letter-spacing:0px;color:rgb(57,54,79);font-family:\"Neue Plak\",-apple-system,BlinkMacSystemFont,Roboto,\"Helvetica Neue\",Helvetica,Tahoma,Arial,sans-serif\"><div class=\"gmail-structured-content gmail-g-cell gmail-g-cell-10-12 gmail-g-cell-md-1-1\" style=\"margin:0px;padding:0px 15px;width:560px;box-sizing:border-box;display:inline-block;overflow:hidden;vertical-align:top;letter-spacing:0.5px;font-size:0.933333rem;line-height:1.25rem\"><br class=\"gmail-Apple-interchange-newline\"></div></div><div><br></div>','Class Sign up Link for \"Mock Home Inspections\"','','publish','closed','open','','class-sign-up-link-for-mock-home-inspections','','','2021-04-23 16:46:55','2021-04-23 16:46:55','',0,'https://lantern-realty.com/?p=1839',0,'post','',0),(1731,1,'2021-04-13 23:58:50','2021-04-13 23:58:50','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2021-04-13 23:58:50','2021-04-13 23:58:50','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1732,1,'2021-04-13 23:58:50','2021-04-13 23:58:50','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2021-04-13 23:58:50','2021-04-13 23:58:50','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1733,1,'2021-04-13 23:58:50','2021-04-13 23:58:50','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2021-04-13 23:58:50','2021-04-13 23:58:50','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1740,1,'2021-04-14 00:35:37','2021-04-14 00:35:37','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2021-04-14 00:35:37','2021-04-14 00:35:37','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1737,1,'2021-04-14 00:31:16','2021-04-14 00:31:16','<h2>Team Announcements</h2>		\n		<p style=\"text-align: center;\">An archive of all recent announcements from Lantern.</p>		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Team Announcements','','inherit','closed','closed','','1217-revision-v1','','','2021-04-14 00:31:16','2021-04-14 00:31:16','',1217,'https://lantern-realty.com/1217-revision-v1/',0,'revision','',0),(1741,1,'2021-04-14 00:36:28','2021-04-14 00:36:28','<h1>Lantern Training Materials</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Training Videos and Links</h2>		\n		<p style=\"text-align: center;\">Links to published training videos and materials.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"  width=\"100%\"]','Lantern Training Links','','publish','closed','closed','','lantern-training-links','','','2021-04-16 20:45:37','2021-04-16 20:45:37','',882,'https://lantern-realty.com/?page_id=1741',0,'page','',0),(1742,1,'2021-04-14 00:37:13','2021-04-14 00:37:13','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-14 00:37:13','2021-04-14 00:37:13','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1746,1,'2021-04-14 00:39:53','2021-04-14 00:39:53','<h1>Lantern Training Materials</h1>\n<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\nRequest Changes\n</a>\n<h2>Training Videos and Links</h2>\n<p style=\"text-align: center;\">Links to published training videos and materials.</p>\n[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-14 00:39:53','2021-04-14 00:39:53','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1743,1,'2021-04-14 00:39:21','2021-04-14 00:39:21','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-14 00:39:21','2021-04-14 00:39:21','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1744,1,'2021-04-14 00:39:21','2021-04-14 00:39:21','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-14 00:39:21','2021-04-14 00:39:21','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1745,1,'2021-04-14 00:39:21','2021-04-14 00:39:21','<h1>Lantern Training Materials</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Training Videos and Links</h2>		\n		<p style=\"text-align: center;\">Links to published training videos and materials.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-14 00:39:21','2021-04-14 00:39:21','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1750,1,'2021-04-14 00:43:15','2021-04-14 00:43:15','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Training Links</strong>\n                                <!-- text-with-icon-title -->\n                                    Links to Lantern published training videos and materials.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-training-links/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>[calendar id=\"1235\"][calendar id=\"1241\"]','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2021-04-14 00:43:15','2021-04-14 00:43:15','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1748,1,'2021-04-14 00:43:14','2021-04-14 00:43:14','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>[calendar id=\"1235\"][calendar id=\"1241\"]','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2021-04-14 00:43:14','2021-04-14 00:43:14','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1749,1,'2021-04-14 00:43:15','2021-04-14 00:43:15','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>[calendar id=\"1235\"][calendar id=\"1241\"]','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2021-04-14 00:43:15','2021-04-14 00:43:15','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1754,1,'2021-04-14 00:48:03','2021-04-14 00:48:03','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Training Links</strong>\n                                <!-- text-with-icon-title -->\n                                    Links to Lantern published training videos and materials.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-training-links/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>[calendar id=\"1235\"][calendar id=\"1241\"]','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2021-04-14 00:48:03','2021-04-14 00:48:03','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1752,1,'2021-04-14 00:48:03','2021-04-14 00:48:03','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Training Links</strong>\n                                <!-- text-with-icon-title -->\n                                    Links to Lantern published training videos and materials.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-training-links/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>[calendar id=\"1235\"][calendar id=\"1241\"]','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2021-04-14 00:48:03','2021-04-14 00:48:03','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1753,1,'2021-04-14 00:48:03','2021-04-14 00:48:03','<h1>Lantern Team Portal</h1>		\n		<h4 style=\"text-align: center;\">Welcome to our Team Portal!</h4><p>     This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\">Website Change Request</a> link to request updates.</p>		\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Directory</strong>\n                                <!-- text-with-icon-title -->\n                                    Offices, Agents, Vendors and more. All the details you need, in one location.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-directory/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                <img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                            <!-- icon-thumb -->\n                                    <strong>Lantern Branding</strong>\n                                <!-- text-with-icon-title -->\n                                    Download official Lantern branding for use on business cards, letterhead, and more!                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-branding/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Lantern Documents</strong>\n                                <!-- text-with-icon-title -->\n                                    Access to anything you may need to be successful as a Lantern Teammate.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-documents/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Website Change Request</strong>\n                                <!-- text-with-icon-title -->\n                                    Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>New Agent Form</strong>\n                                <!-- text-with-icon-title -->\n                                    Submit your information to get started with Lantern.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com//new-agent-registration/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n                                                            <!-- icon-thumb -->\n                                    <strong>Training Links</strong>\n                                <!-- text-with-icon-title -->\n                                    Links to Lantern published training videos and materials.                                <!-- text-with-icon-body -->\n                            <!-- text-with-icon-info -->\n                                <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/lantern-training-links/\"  >Click Here</a>\n                        <!-- text-with-icon-item  -->\n			<h2>Most Recent Team Announcement</h2>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/team-announcements/\" role=\"button\">\n						See All Announcements\n					</a>\n			<h2>Lantern Team Calendar</h2>		\n		<p style=\"text-align: center;\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!</p>[calendar id=\"1235\"][calendar id=\"1241\"]','Team Portal','','inherit','closed','closed','','882-revision-v1','','','2021-04-14 00:48:03','2021-04-14 00:48:03','',882,'https://lantern-realty.com/882-revision-v1/',0,'revision','',0),(1755,0,'2021-04-15 00:03:30','2021-04-15 00:03:30','','FA82C85D-87DA-450A-9BD2-2CEA67650DDA','','inherit','','closed','','fa82c85d-87da-450a-9bd2-2cea67650dda','','','2021-04-15 00:03:30','2021-04-15 00:03:30','',0,'https://lantern-realty.com/fa82c85d-87da-450a-9bd2-2cea67650dda/',0,'attachment','image/jpeg',0),(1756,6,'2021-04-16 12:38:23','2021-04-16 12:38:23','<div dir=\"ltr\">Here is the link to the Deeds &amp; Permits class Amanda Lambert hosted this past Wednesday in case you missed it.  <div><br></div><div><a href=\"https://youtu.be/bUzcp9b8j9w\">https://youtu.be/bUzcp9b8j9w</a><br clear=\"all\"><div><br></div>','Deeds &amp; Permits class','','publish','closed','open','','deeds-permits-class','','','2021-04-16 12:38:23','2021-04-16 12:38:23','',0,'https://lantern-realty.com/?p=1756',0,'post','',0),(1757,1,'2021-04-16 19:12:24','2021-04-16 19:12:24','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\" datatables_page_length=\"150\"][table id=team /]','zzLantern Directory','','draft','closed','closed','','zzlantern-directory-2','','','2021-06-09 01:28:41','2021-06-09 01:28:41','',882,'https://lantern-realty.com/?page_id=1757',0,'page','',0),(1758,1,'2021-04-16 19:19:33','2021-04-16 19:19:33','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][table id=offices /]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:19:33','2021-04-16 19:19:33','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1759,1,'2021-04-16 19:19:34','2021-04-16 19:19:34','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][table id=offices /]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:19:34','2021-04-16 19:19:34','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1760,1,'2021-04-16 19:19:34','2021-04-16 19:19:34','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:19:34','2021-04-16 19:19:34','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1764,1,'2021-04-16 19:26:50','2021-04-16 19:26:50','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:26:50','2021-04-16 19:26:50','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1762,1,'2021-04-16 19:26:45','2021-04-16 19:26:45','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:26:45','2021-04-16 19:26:45','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1763,1,'2021-04-16 19:26:46','2021-04-16 19:26:46','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:26:46','2021-04-16 19:26:46','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1765,1,'2021-04-16 19:29:24','2021-04-16 19:29:24','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:29:24','2021-04-16 19:29:24','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1766,1,'2021-04-16 19:29:24','2021-04-16 19:29:24','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:29:24','2021-04-16 19:29:24','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1767,1,'2021-04-16 19:29:24','2021-04-16 19:29:24','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:29:24','2021-04-16 19:29:24','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1768,1,'2021-04-16 19:38:32','2021-04-16 19:38:32','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:38:32','2021-04-16 19:38:32','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1769,1,'2021-04-16 19:38:32','2021-04-16 19:38:32','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:38:32','2021-04-16 19:38:32','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1770,1,'2021-04-16 19:38:32','2021-04-16 19:38:32','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:38:32','2021-04-16 19:38:32','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1771,1,'2021-04-16 19:46:33','2021-04-16 19:46:33','<h1>Lantern Training Materials</h1>\n<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\nRequest Changes\n</a>\n<h2>Training Videos and Links</h2>\n<p style=\"text-align: center;\">Links to published training videos and materials.</p>\n[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-16 19:46:33','2021-04-16 19:46:33','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1772,1,'2021-04-16 19:46:33','2021-04-16 19:46:33','<h1>Lantern Training Materials</h1>\n<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\nRequest Changes\n</a>\n<h2>Training Videos and Links</h2>\n<p style=\"text-align: center;\">Links to published training videos and materials.</p>\n[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-16 19:46:33','2021-04-16 19:46:33','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1773,1,'2021-04-16 19:46:34','2021-04-16 19:46:34','<h1>Lantern Training Materials</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Training Videos and Links</h2>		\n		<p style=\"text-align: center;\">Links to published training videos and materials.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-16 19:46:34','2021-04-16 19:46:34','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1774,1,'2021-04-16 19:47:44','2021-04-16 19:47:44','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:47:44','2021-04-16 19:47:44','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1775,1,'2021-04-16 19:47:44','2021-04-16 19:47:44','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:47:44','2021-04-16 19:47:44','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1776,1,'2021-04-16 19:47:44','2021-04-16 19:47:44','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:47:44','2021-04-16 19:47:44','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1777,1,'2021-04-16 19:52:20','2021-04-16 19:52:20','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:52:20','2021-04-16 19:52:20','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1778,1,'2021-04-16 19:52:20','2021-04-16 19:52:20','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:52:20','2021-04-16 19:52:20','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1779,1,'2021-04-16 19:52:20','2021-04-16 19:52:20','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 19:52:20','2021-04-16 19:52:20','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1780,1,'2021-04-16 19:53:14','2021-04-16 19:53:14','<h1>Lantern Training Materials</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Training Videos and Links</h2>		\n		<p style=\"text-align: center;\">Links to published training videos and materials.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-16 19:53:14','2021-04-16 19:53:14','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1781,1,'2021-04-16 19:53:14','2021-04-16 19:53:14','<h1>Lantern Training Materials</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Training Videos and Links</h2>		\n		<p style=\"text-align: center;\">Links to published training videos and materials.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-16 19:53:14','2021-04-16 19:53:14','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1782,1,'2021-04-16 19:53:15','2021-04-16 19:53:15','<h1>Lantern Training Materials</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Training Videos and Links</h2>		\n		<p style=\"text-align: center;\">Links to published training videos and materials.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-16 19:53:15','2021-04-16 19:53:15','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1792,1,'2021-04-16 20:42:14','2021-04-16 20:42:14','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:42:14','2021-04-16 20:42:14','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1786,1,'2021-04-16 20:04:59','2021-04-16 20:04:59','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" responsive=\"false\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:04:59','2021-04-16 20:04:59','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1784,1,'2021-04-16 20:04:50','2021-04-16 20:04:50','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:04:50','2021-04-16 20:04:50','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1785,1,'2021-04-16 20:04:53','2021-04-16 20:04:53','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:04:53','2021-04-16 20:04:53','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1787,1,'2021-04-16 20:39:31','2021-04-16 20:39:31','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" responsive=\"false\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:39:31','2021-04-16 20:39:31','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1788,1,'2021-04-16 20:39:31','2021-04-16 20:39:31','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" responsive=\"false\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:39:31','2021-04-16 20:39:31','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1789,1,'2021-04-16 20:39:32','2021-04-16 20:39:32','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" details=\"none\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:39:32','2021-04-16 20:39:32','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1790,1,'2021-04-16 20:42:14','2021-04-16 20:42:14','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" details=\"none\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:42:14','2021-04-16 20:42:14','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1791,1,'2021-04-16 20:42:14','2021-04-16 20:42:14','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" details=\"none\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:42:14','2021-04-16 20:42:14','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1793,1,'2021-04-16 20:45:37','2021-04-16 20:45:37','<h1>Lantern Training Materials</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Training Videos and Links</h2>		\n		<p style=\"text-align: center;\">Links to published training videos and materials.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-16 20:45:37','2021-04-16 20:45:37','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1794,1,'2021-04-16 20:45:37','2021-04-16 20:45:37','<h1>Lantern Training Materials</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Training Videos and Links</h2>		\n		<p style=\"text-align: center;\">Links to published training videos and materials.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-16 20:45:37','2021-04-16 20:45:37','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1795,1,'2021-04-16 20:45:37','2021-04-16 20:45:37','<h1>Lantern Training Materials</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Training Videos and Links</h2>		\n		<p style=\"text-align: center;\">Links to published training videos and materials.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1WXGCWCR6CxwtsRq3EOnkO0w7AbP6r87nk_bds_HdeOc/edit?usp=sharing\"  width=\"100%\"]','Lantern Training Links','','inherit','closed','closed','','1741-revision-v1','','','2021-04-16 20:45:37','2021-04-16 20:45:37','',1741,'https://lantern-realty.com/1741-revision-v1/',0,'revision','',0),(1796,1,'2021-04-16 20:46:46','2021-04-16 20:46:46','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:46:46','2021-04-16 20:46:46','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1797,1,'2021-04-16 20:46:47','2021-04-16 20:46:47','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n		[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:46:47','2021-04-16 20:46:47','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1798,1,'2021-04-16 20:46:47','2021-04-16 20:46:47','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:46:47','2021-04-16 20:46:47','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1799,1,'2021-04-16 20:58:14','2021-04-16 20:58:14','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:58:14','2021-04-16 20:58:14','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1800,1,'2021-04-16 20:58:14','2021-04-16 20:58:14','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:58:14','2021-04-16 20:58:14','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1801,1,'2021-04-16 20:58:14','2021-04-16 20:58:14','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"select A,B WHERE A=Kannapolis\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:58:14','2021-04-16 20:58:14','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1802,1,'2021-04-16 20:58:49','2021-04-16 20:58:49','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"select A,B WHERE A=Kannapolis\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:58:49','2021-04-16 20:58:49','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1803,1,'2021-04-16 20:58:49','2021-04-16 20:58:49','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"select A,B WHERE A=Kannapolis\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:58:49','2021-04-16 20:58:49','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1804,1,'2021-04-16 20:58:50','2021-04-16 20:58:50','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" gdoc_query=\"select A,B WHERE A=Kannapolis\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 20:58:50','2021-04-16 20:58:50','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1805,1,'2021-04-16 21:00:25','2021-04-16 21:00:25','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" gdoc_query=\"select A,B WHERE A=Kannapolis\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:00:25','2021-04-16 21:00:25','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1806,1,'2021-04-16 21:00:25','2021-04-16 21:00:25','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" gdoc_query=\"select A,B WHERE A=Kannapolis\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:00:25','2021-04-16 21:00:25','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1807,1,'2021-04-16 21:00:26','2021-04-16 21:00:26','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B WHERE A=Kannapolis\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:00:26','2021-04-16 21:00:26','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1811,1,'2021-04-16 21:04:05','2021-04-16 21:04:05','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B WHERE A=\'Kannapolis\'\" header_rows=\"1\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:04:05','2021-04-16 21:04:05','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1809,1,'2021-04-16 21:04:04','2021-04-16 21:04:04','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B WHERE A=Kannapolis\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:04:04','2021-04-16 21:04:04','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1810,1,'2021-04-16 21:04:04','2021-04-16 21:04:04','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B WHERE A=Kannapolis\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:04:04','2021-04-16 21:04:04','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1812,1,'2021-04-16 21:05:41','2021-04-16 21:05:41','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B WHERE A=\'Kannapolis\'\" header_rows=\"1\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:05:41','2021-04-16 21:05:41','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1813,1,'2021-04-16 21:05:41','2021-04-16 21:05:41','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B WHERE A=\'Kannapolis\'\" header_rows=\"1\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:05:41','2021-04-16 21:05:41','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1814,1,'2021-04-16 21:05:41','2021-04-16 21:05:41','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B WHERE A=\'Kannapolis\'\" header_rows=\"2\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:05:41','2021-04-16 21:05:41','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1815,1,'2021-04-16 21:06:46','2021-04-16 21:06:46','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B WHERE A=\'Kannapolis\'\" header_rows=\"2\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:06:46','2021-04-16 21:06:46','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1816,1,'2021-04-16 21:06:47','2021-04-16 21:06:47','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B WHERE A=\'Kannapolis\'\" header_rows=\"2\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:06:47','2021-04-16 21:06:47','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1817,1,'2021-04-16 21:06:48','2021-04-16 21:06:48','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE A=\'Kannapolis\'\" header_rows=\"2\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:06:48','2021-04-16 21:06:48','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1818,1,'2021-04-16 21:08:53','2021-04-16 21:08:53','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE A=\'Kannapolis\'\" header_rows=\"2\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:08:53','2021-04-16 21:08:53','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1819,1,'2021-04-16 21:08:57','2021-04-16 21:08:57','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE A=\'Kannapolis\'\" header_rows=\"2\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:08:57','2021-04-16 21:08:57','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1820,1,'2021-04-16 21:09:05','2021-04-16 21:09:05','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE A=\'Kannapolis\'\" csv_headers=\"1\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:09:05','2021-04-16 21:09:05','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1821,1,'2021-04-16 21:32:00','2021-04-16 21:32:00','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE A=\'Kannapolis\'\" csv_headers=\"1\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:32:00','2021-04-16 21:32:00','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1822,1,'2021-04-16 21:32:02','2021-04-16 21:32:02','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE A=\'Kannapolis\'\" csv_headers=\"1\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:32:02','2021-04-16 21:32:02','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1823,1,'2021-04-16 21:32:05','2021-04-16 21:32:05','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE A=\'Kannapolis\'\" csv_headers=\"1\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\"][table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:32:05','2021-04-16 21:32:05','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1824,1,'2021-04-16 21:34:27','2021-04-16 21:34:27','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE A=\'Kannapolis\'\" csv_headers=\"1\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\"][table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:34:27','2021-04-16 21:34:27','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1825,1,'2021-04-16 21:34:29','2021-04-16 21:34:29','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE A=\'Kannapolis\'\" csv_headers=\"1\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT * WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\"][table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:34:29','2021-04-16 21:34:29','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1826,1,'2021-04-16 21:34:36','2021-04-16 21:34:36','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\"][table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:34:36','2021-04-16 21:34:36','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1827,1,'2021-04-16 21:39:59','2021-04-16 21:39:59','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\"][table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:39:59','2021-04-16 21:39:59','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1828,1,'2021-04-16 21:39:59','2021-04-16 21:39:59','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\"][table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:39:59','2021-04-16 21:39:59','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1829,1,'2021-04-16 21:39:59','2021-04-16 21:39:59','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\" pageLength=\"150\"][table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:39:59','2021-04-16 21:39:59','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1830,1,'2021-04-16 21:42:43','2021-04-16 21:42:43','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\" pageLength=\"150\"][table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:42:43','2021-04-16 21:42:43','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1831,1,'2021-04-16 21:42:43','2021-04-16 21:42:43','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\" pageLength=\"150\"][table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:42:43','2021-04-16 21:42:43','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1832,1,'2021-04-16 21:42:46','2021-04-16 21:42:46','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\" datatables_page_length=\"150\"][table id=team /]','Lantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-04-16 21:42:46','2021-04-16 21:42:46','',1757,'https://lantern-realty.com/1757-revision-v1/',0,'revision','',0),(1833,0,'2021-04-17 01:26:48','2021-04-17 01:26:48','','78246493_2614369991981131_3987109451881512960_o','','inherit','','closed','','78246493_2614369991981131_3987109451881512960_o-2','','','2021-04-17 01:26:48','2021-04-17 01:26:48','',0,'https://lantern-realty.com/78246493_2614369991981131_3987109451881512960_o-2/',0,'attachment','image/jpeg',0),(1834,6,'2021-04-19 15:06:52','2021-04-19 15:06:52','<div dir=\"ltr\">Good Morning FOlks, just a few notes to get your week started.  <div><br></div><div>- Dont forget this week we will be doing both the <b>Women of Lantern</b> event at Stone Gate Farms in China Grove on 4/22 at 10am.  Also, our <b>Men of Lantern</b> event will be on 4/22 starting at 12pm at TopGolf in Charlotte.  We hope as many of you can attend as possible.  </div><div>- Dont forget if you need 1 on 1 help with any of the <b>NCAR forms</b> please contact Melissa Yates.  If you have need for <b>Dotloop help</b>, please contact Melissa Jackling.  </div><div>- If you have interest in a <b>private office</b> at our Kannapolis office please let me know.  Our two new offices are 95% complete and almost ready to occupy.  First come, first serve.  </div><div>- We will be sending out a revised education schedule within the next week for upcoming classes in May.  <b>Liz Hallman</b> will be doing a <b>Broker Q&amp;A </b>next Thursday on 4/29 at the Kannapolis office.  Come and find out how Liz broke away from a very successful team and built her business. </div><div>   Also on 4/27 we will be having an <b>on site Home Inspection</b> class with a lender and home inspector .  The event will be limited to 15 people.  Melissa Jackling <br clear=\"all\"><div>will be sending an EventBrite sign up for this class.  Once the location is set we will be sending out more information. </div><div>- I have attached an <b>office roster.</b>  Please be aware of our new location in Asheville and that we have agents that serve the W. Jefferson/Boone area as well (Jeremt Aldridge).  </div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/04/LRD-Roster_041021-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_041021.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/04/2021-Educational-Calendar-2.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-13','','','2021-04-19 15:06:52','2021-04-19 15:06:52','',0,'https://lantern-realty.com/?p=1834',0,'post','',0),(1835,6,'2021-04-19 15:06:52','2021-04-19 15:06:52','','LRD-Roster_041021.xlsx','','inherit','closed','closed','','lrd-roster_041021-1','','','2021-04-19 15:06:52','2021-04-19 15:06:52','',1834,'https://lantern-realty.com/wp-content/uploads/2021/04/LRD-Roster_041021-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1836,6,'2021-04-19 15:06:52','2021-04-19 15:06:52','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-2-3','','','2021-04-19 15:06:52','2021-04-19 15:06:52','',1834,'https://lantern-realty.com/wp-content/uploads/2021/04/2021-Educational-Calendar-2.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1837,8,'2021-04-19 15:06:52','2021-04-19 15:06:52','<div>  Attention ladies of Lantern the event starts at 10:30<br><br><br><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><b style=\"word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">Paula G Severt</i></b>&nbsp;<img title=\"Emoji\" alt=\"Emoji\" class=\"yiv2427752816ydpc53d7409yahoo-emoji-wrapper\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding: 0px 2px; vertical-align: middle; word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><span style=\"word-wrap: break-word !important;\">Owner, Broker/ Realtor®</span><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><a rel=\"nofollow noopener\" target=\"_blank\" href=\"http://lantern-realty.com/\" style=\"-webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">lantern-realty.com</a><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Lantern Realty and Development LLC</div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">\"Let Us Guide You Home\"</i></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Cell&nbsp;<a href=\"tel:704-232-3433\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/1\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-232-3433</a><br style=\"word-wrap: break-word !important;\">Office&nbsp;<a href=\"tel:704-298-0087\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/2\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-298-0087</a><br style=\"word-wrap: break-word !important;\">eMail Signature<br style=\"word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\">NOTE: BUYERS and SELLERS, NC real estate agents are required&nbsp;by law&nbsp;to provide&nbsp;the&nbsp;\"Working with Real Estate Agents Brochure\"&nbsp;Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure.&nbsp;<br style=\"word-wrap: break-word !important;\"><a href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"4\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a>&nbsp;<br style=\"word-wrap: break-word !important;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br><p class=\"yahoo-quoted-begin\" style=\"font-size: 15px; color: #715FFA; padding-top: 15px; margin-top: 0\">On Monday, April 19, 2021, 11:00 AM, Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com&gt\" >ch2realty@gmail.com&gt</a>; wrote:</p><blockquote class=\"iosymail\"><div id=\"yiv7571971494\"><div dir=\"ltr\">Good Morning FOlks, just a few notes to get your week started.&nbsp;&nbsp;<div><br></div><div>- Dont forget this week we will be doing both the <b>Women of Lantern</b> event at Stone Gate Farms in China Grove on 4/22 at 10am.&nbsp; Also, our <b>Men of Lantern</b> event will be on 4/22 starting at 12pm at TopGolf in Charlotte.&nbsp; We hope as many of you can attend as possible.&nbsp;&nbsp;</div><div>- Dont forget if you need 1 on 1 help with any of the <b>NCAR forms</b> please contact Melissa Yates.&nbsp; If you have need for <b>Dotloop help</b>, please contact Melissa Jackling.&nbsp;&nbsp;</div><div>- If you have interest in a <b>private office</b> at our Kannapolis office please let me know.&nbsp; Our two new offices are 95% complete and almost ready to occupy.&nbsp; First come, first serve.&nbsp;&nbsp;</div><div>- We will be sending out a revised education schedule within the&nbsp;next week for upcoming classes in May.&nbsp; <b>Liz Hallman</b> will be doing a <b>Broker Q&amp;A </b>next Thursday on 4/29 at the Kannapolis office.&nbsp; Come and find out how Liz broke away from a very successful&nbsp;team and built her business.&nbsp;</div><div>&nbsp; &nbsp;Also on 4/27 we will be having an <b>on site Home Inspection</b> class with a lender and home inspector .&nbsp; The event will be limited to 15 people.&nbsp; Melissa Jackling&nbsp;<br clear=\"all\"><div>will be sending an EventBrite sign up for this class.&nbsp; Once the location is set we will be sending out more information.&nbsp;</div><div>- I have attached an <b>office roster.</b>&nbsp; Please be aware of our new location in Asheville and that we have agents that serve the W. Jefferson/Boone area as well (Jeremt Aldridge).&nbsp;&nbsp;</div>','News &amp; Notes','','publish','closed','open','','news-notes-14','','','2021-04-19 15:06:52','2021-04-19 15:06:52','',0,'https://lantern-realty.com/?p=1837',0,'post','',0),(1838,6,'2021-04-22 00:00:00','2021-04-22 00:00:00','<div dir=\"ltr\">Good Evening, just wanted to remind you of a few things prior to our event tomorrow at TopGolf Charlotte from 12p-3p.  <div><br></div><div>- If you havent RSVP&#39;d, no worries, come on down and say \"hello!\" and grab some great food. There is no itinerary, just casual.  No dress code either.</div><div>- This event is just for fellowship purposes.  Let&#39;s get away from this crazy real estate world for a few hours and enjoy each other&#39;s company. <br></div><div>- Clubs are provided, so no need to bring yours.  </div><div>- Lunch is being provided as well.  </div><div><br></div><div>Here are specifics you need to know....</div><div><br></div><div><span style=\"color:rgb(0,0,0)\"><b><i>Topgolf has implemented the highest safety regulations including; new social distancing standards, safely-spaced bays with barriers, regular health checks, and many more cleanliness and safety practices. Because safety is our #1 priority, we wanted to communicate a few important reminders for you and your guests to follow during the event.</i></b></span><br style=\"color:rgb(0,0,0)\"><br style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(0,0,0)\">-No group gatherings should take place in the lobby or other common areas</span><br style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(0,0,0)\">-No mingling between bays to adhere to the 6 guests per bay limitations</span><br style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(0,0,0)\">- Please be sure to review our Face Mask policies: </span><a href=\"https://topgolf.com/us/play-safely/facemask-req/\" rel=\"noreferrer noopener\" target=\"_blank\">https://topgolf.com/us/play-safely/facemask-req/</a><br style=\"color:rgb(0,0,0)\"><br style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(0,0,0)\">When you arrive check-in with our team in the lobby with the name of your event, Lantern Realty Development, and you&#39;ll be directed to your reserved golf bays.</span><br style=\"color:rgb(0,0,0)\"><br style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(0,0,0)\">Here&#39;s what we have planned:</span><br style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(0,0,0)\"></span><br style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(0,0,0)\">Topgolf Time: 12:00 PM - 3:00 PM</span><br style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(0,0,0)\">Dining: Southern Picnic Platters</span><br style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(0,0,0)\">Catering Time: 12:15PM</span><br style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(0,0,0)\">Event Ambassador(s): Monae</span></div><div><font color=\"#000000\"><br></font></div><div><font color=\"#000000\" face=\"arial, sans-serif\"><b>Address is TopGolf Charlotte - Southwest</b></font></div><div><span style=\"color:rgb(32,33,36);font-size:14px\"><font face=\"arial, sans-serif\"><b>8024 Savoy Corporate Dr, Charlotte, NC 28273</b></font></span><font color=\"#000000\"><br clear=\"all\"></font><div><br></div>','Tomorrows \"Men of Lantern\" event','','publish','closed','open','','tomorrows-men-of-lantern-event','','','2021-04-21 22:27:58','2021-04-21 22:27:58','',0,'https://lantern-realty.com/?p=1838',0,'post','',0),(1840,9,'2021-04-26 20:48:04','2021-04-26 20:48:04','<div dir=\"ltr\"><b>Class Reminder and Location Address Correction</b> - For the agents that are registered for the MOCK HOME INSPECTION Class Tuesday, April 27 at 9:30 am. Please note the location is <b>703 N Caldwell St Salisbury</b>, I mistyped the address originally. We had a few agents that wanted to go and were unable, I am checking to see if we can get another class for a future date.  I will let you know if we are able to get one set up.<div><br></div><div>Thank you!</div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Apr 23, 2021 at 12:40 PM Melissa Jackling &lt;<a href=\"mailto:onlymyrealtormelissa@gmail.com\"><a href=\"mailto:onlymyrealtormelissa@gmail.com\" >onlymyrealtormelissa@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Hey Everyone!<div><br></div><div>I hope you are having a wonderful Friday.  Field Trip Time!  Shaun Gamble from Veterans Home Inspections has graciously offered to host a mock home inspection with a guest lender who specializes in FHA/VA type loans so bring all your questions...  It will be a live and on location class coming up on Tuesday, April 27 at 9:30 am. at 713 N Caldwell St Salisbury NC - because <b>it is limited to 15 agents</b>, if there is more interest in it, Shaun has offered to host a future class for those unable to attend this one.  <font face=\"arial, sans-serif\">He will <span style=\"letter-spacing:0.5px;color:rgb(57,54,79)\">be going over how to quickly identify issues with a home while showing it to your clients among other helpful tips.</span></font></div><div><font color=\"#39364f\" face=\"arial, sans-serif\"><span style=\"letter-spacing:0.5px\"><br></span></font></div><div><font color=\"#39364f\" face=\"arial, sans-serif\"><span style=\"letter-spacing:0.5px\"><b>You must register at the following link</b>   </span></font><a href=\"https://www.eventbrite.com/e/understanding-a-home-inspection-tickets-150603500123\" target=\"_blank\" rel=\"noopener\">https://www.eventbrite.com/e/understanding-a-home-inspection-tickets-150603500123</a><font color=\"#39364f\" face=\"arial, sans-serif\"><span style=\"letter-spacing:0.5px\"><br></span></font><div style=\"margin:0px 0px 30px;padding:0px;font-size:0px;letter-spacing:0px;color:rgb(57,54,79);font-family:\"Neue Plak\",-apple-system,BlinkMacSystemFont,Roboto,\"Helvetica Neue\",Helvetica,Tahoma,Arial,sans-serif\"><div style=\"margin:0px;padding:0px 15px;width:560px;box-sizing:border-box;display:inline-block;overflow:hidden;vertical-align:top;letter-spacing:0.5px;font-size:0.933333rem;line-height:1.25rem\"><br></div></div><div><br></div>','Class Sign up Link for \"Mock Home Inspections\"','','publish','closed','open','','class-sign-up-link-for-mock-home-inspections-2','','','2021-04-26 20:48:04','2021-04-26 20:48:04','',0,'https://lantern-realty.com/?p=1840',0,'post','',0),(1841,9,'2021-04-28 15:47:27','2021-04-28 15:47:27','<div dir=\"ltr\"><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br></div><div>We have a much anticipated Broker Q&amp;A class in the Kannapolis Office from 10am-12pm tomorrow, April 29.   Bring your questions....</div><div><br></div><div><b><br></b></div><div><b>Topic: Broker Q&amp;A w/Liz Hallman</b><br>Time: Apr 29, 2021 10:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/88525142466?pwd=NDR1TzRpTzlIUmpJUENSbjNVbnpIUT09\">https://us02web.zoom.us/j/88525142466?pwd=NDR1TzRpTzlIUmpJUENSbjNVbnpIUT09</a><br><br>Meeting ID: 885 2514 2466<br>Passcode: 423172<br>One tap mobile<br>+13017158592,,88525142466#,,,,*423172# US (Washington DC)<br>+13126266799,,88525142466#,,,,*423172# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 885 2514 2466<br>Passcode: 423172<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kcZGbyMhcT\">https://us02web.zoom.us/u/kcZGbyMhcT</a><br><br></div><div><br></div><div><br></div><br clear=\"all\"><div><br></div>','Zoom Invite for Broker Q&amp;A w/Liz Hallman April 29 at 10 a.m.','','publish','closed','open','','zoom-invite-for-broker-qa-w-liz-hallman-april-29-at-10-a-m','','','2021-04-28 15:47:27','2021-04-28 15:47:27','',0,'https://lantern-realty.com/?p=1841',0,'post','',0),(1842,6,'2021-04-29 17:45:57','2021-04-29 17:45:57','<div dir=\"ltr\">Thanks to Liz Hallman for todays class.  For those that missed it.  Here is the link to view it on our YouTube channel. <div><br></div><div><a href=\"https://youtu.be/s4WzrnV1Hy0\">https://youtu.be/s4WzrnV1Hy0</a><br clear=\"all\"><div><br></div>','Broker Q &amp; A link','','publish','closed','open','','broker-q-a-link','','','2021-04-29 17:45:57','2021-04-29 17:45:57','',0,'https://lantern-realty.com/?p=1842',0,'post','',0),(1854,9,'2021-05-10 19:36:00','2021-05-10 19:36:00','<div dir=\"ltr\"><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br><b>Topic: Land Prep with Amanda Lambert<br>Time: May 11, 2021 10:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/85845368195?pwd=UlU4aXVQSlVJOHlIbEM5VW56Z2cwQT09\">https://us02web.zoom.us/j/85845368195?pwd=UlU4aXVQSlVJOHlIbEM5VW56Z2cwQT09</a><br><br>Meeting ID: 858 4536 8195<br>Passcode: 503342<br>One tap mobile<br>+13126266799,,85845368195#,,,,*503342# US (Chicago)<br>+19292056099,,85845368195#,,,,*503342# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 858 4536 8195<br>Passcode: 503342<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kziNSWeEc\">https://us02web.zoom.us/u/kziNSWeEc</a><br><br></div><div><br></div><br clear=\"all\"><div><br></div>','Zoom Invite for Land Prep Class for May 11 at 10 am','','publish','closed','open','','zoom-invite-for-land-prep-class-for-may-11-at-10-am','','','2021-05-10 19:36:01','2021-05-10 19:36:01','',0,'https://lantern-realty.com/?p=1854',0,'post','',0),(1844,6,'2021-05-03 15:16:17','2021-05-03 15:16:17','<div dir=\"ltr\">Good Morning, here are a few notes to start your week.<div><br></div><div>- We do have a <b>team meeting </b>this Wednesday 5/5 @ 11am.  It will be on Zoom and Melissa will be sending out the link on Tuesday.  </div><div>- Dont forget <b>Dotloop classes</b> are available at your convenience with Melissa Jackling.  All you have to do is call or email Melissa and set up a time convenient for you!  </div><div>- Speaking of <b>Dotloop</b>, please make sure you are filling out your documents completely.  Melissa will be reviewing.  Please accept her feedback as help.  We are trying to keep everyone compliant.  </div><div>- We have an <b>office available</b> for rent in the Kannapolis office.  The cost is $200/month.  If you or a group of agents are interested in getting a secure space to leave your stuff and to meet clients, please let me know.  First come, first serve. </div><div>- If you are signing up for <b>call time at the Kannapolis office</b>, we NEED YOU TO BE HERE!  The front desk person that works for McMillan Insurance is only here 1-5 Tuesday-Thursday.  Baseball games start on Tuesday so foot traffic is going to pick up exponentially.  We need someone to occupy the front desk.  <br clear=\"all\"><div>- I have attached an updated<b> Education schedule</b>.  Be on the lookout for new classes.  Also, don&#39;t forget to check our YouTube channel for previous classes you can view.  </div><div>- Lastly, we will be doing more <b>construction at the Kannapolis office</b>.  Sorry for the inconvenience but I think you will be pleased once completed.  We&#39;ll keep you posted!</div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/05/2021-Educational-Calendar.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/05/LRD-Roster_042821.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_042821.xlsx</a><br /></div>','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-6','','','2021-05-03 15:16:17','2021-05-03 15:16:17','',0,'https://lantern-realty.com/?p=1844',0,'post','',0),(1845,6,'2021-05-03 15:16:17','2021-05-03 15:16:17','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-7','','','2021-05-03 15:16:17','2021-05-03 15:16:17','',1844,'https://lantern-realty.com/wp-content/uploads/2021/05/2021-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1846,6,'2021-05-03 15:16:17','2021-05-03 15:16:17','','LRD-Roster_042821.xlsx','','inherit','closed','closed','','lrd-roster_042821','','','2021-05-03 15:16:17','2021-05-03 15:16:17','',1844,'https://lantern-realty.com/wp-content/uploads/2021/05/LRD-Roster_042821.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1847,6,'2021-05-03 17:26:07','2021-05-03 17:26:07','<div dir=\"ltr\">Good Afternoon, our team meeting will be at the Kannapolis office this coming Wednesday.  We will have Lighthouse Visuals speaking and will be catering lunch.  I look forward to seeing as many of you as possible.  <br clear=\"all\"><div><br></div>','TEAM MEETING 5/5 @ 11am - UPDATE!!!!!','','publish','closed','open','','team-meeting-5-5-11am-update','','','2021-05-03 17:26:07','2021-05-03 17:26:07','',0,'https://lantern-realty.com/?p=1847',0,'post','',0),(1848,9,'2021-05-04 14:18:16','2021-05-04 14:18:16','<div dir=\"ltr\"><b>For those unable to attend Wednesday&#39;s office meeting in person, it will be held on Zoom as well.  Please see the link provided below</b><div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Kannapolis Team Meeting<br>Time: May 5, 2021 11:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/85939315219?pwd=a3kwT2JyVE5UZHFWcStaTklhR2VkUT09\">https://us02web.zoom.us/j/85939315219?pwd=a3kwT2JyVE5UZHFWcStaTklhR2VkUT09</a><br><br>Meeting ID: 859 3931 5219<br>Passcode: 209279<br>One tap mobile<br>+19292056099,,85939315219#,,,,*209279# US (New York)<br>+13017158592,,85939315219#,,,,*209279# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 859 3931 5219<br>Passcode: 209279<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kcx56YZaKQ\">https://us02web.zoom.us/u/kcx56YZaKQ</a><br><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, May 3, 2021 at 1:24 PM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Good Afternoon, our team meeting will be at the Kannapolis office this coming Wednesday.  We will have Lighthouse Visuals speaking and will be catering lunch.  I look forward to seeing as many of you as possible.  <br clear=\"all\"><div><br></div>','TEAM MEETING 5/5 @ 11am - UPDATE!!!!!','','publish','closed','open','','team-meeting-5-5-11am-update-2','','','2021-05-04 14:18:16','2021-05-04 14:18:16','',0,'https://lantern-realty.com/?p=1848',0,'post','',0),(1849,6,'2021-05-05 14:16:12','2021-05-05 14:16:12','<div dir=\"ltr\">See below info from Nic Lovelace and the State Bar regarding \"Double closings\" and wholesale deals.  Keep this in mind if you deal with these kinds of situations.  <br><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">','Fwd: Double Closings/Assignments Ethics Opinion','','publish','closed','open','','fwd-double-closings-assignments-ethics-opinion','','','2021-05-05 14:16:12','2021-05-05 14:16:12','',0,'https://lantern-realty.com/?p=1849',0,'post','',0),(1850,6,'2021-05-08 13:46:19','2021-05-08 13:46:19','<div dir=\"ltr\">Good Morning All, I hope you get to enjoy this Mothers Day weekend with your family.  Just a few notes as we enter a new week.<div><br></div><div>- Our classes continue this week.  We are trying to add new classes every month.  If there is something you would like to see or other suggestions for the <b>Education Committee</b> please let Melissa Jackling or myself know. See attached schedule</div><div>*** Tuesday 5/11 at 10am <b>Amanda Lambert</b> will be teaching <b>\"Land Prep\"</b>.  This will be a Zoom class.  <br clear=\"all\"><div>*** Wednesday 5/12 will be <b>\"Client Care: Adding Value in Every Situation\" w/ Sarah Romesburg</b>.  This class will BE IN THE KANNAPOLIS OFFICE and on ZOOM.  </div><div><br></div><div>- Our <b>Lantern Loves</b> committee, led by Melissa Yates has been extremely busy.  Below are some of the activities we have going on and need/want to support.  </div><div>*** <span style=\"color:rgb(0,0,0)\">Our IMPACT Community Youth Group is also looking for donations to help with refinishing the concrete flooring in our youth space (estimated 2000) and mounted microwave.  If anyone would like to help with this you can mail a check to me at 40969 Paul&#39;s Crossing Rd, Richfield NC 28137. Checks can be made payable to Impact Community Youth Group and we can provide you without tax ID number. </span></div><div><span style=\"color:rgb(0,0,0)\">*** </span><font face=\"arial, sans-serif\"><b style=\"color:rgb(5,5,5);font-size:15px;white-space:pre-wrap\">Elder Orphan Care</b><span style=\"color:rgb(5,5,5);font-size:15px;white-space:pre-wrap\"> </span></font></div><div style=\"font-size:15px;white-space:pre-wrap;color:rgb(5,5,5)\"><font face=\"arial, sans-serif\">Hands on Volunteers / Donations</font></div><div style=\"font-size:15px;white-space:pre-wrap;color:rgb(5,5,5)\"><font face=\"arial, sans-serif\">EOC will be celebrating 5 years as a local non-profit serving older adults in Rowan and Cabarrus Counties.  Their goal is to help older adults, aging alone, remain safely at home.  This organization helps with home modifications and/or adaptive equipment, provides a pantry program that supplies its clients with a monthly grocery distribution, free adaptive tables to assist with virtual contact and a link to the community.  <b style=\"\">Elder Orphan Care is seeking volunteers to help with their monthly grocery distribution in both Rowan and Cabarrus County as well sponsorship donations.</b>  Their Anniversary Celebration will take place on Sunday, May 23, 2021 at 7:00pm streaming live from their website, <i style=\"\"><a href=\"http://elderorphancare.com/\" target=\"_blank\" rel=\"noopener\">elderorphancare.com</a></i>.  If you are interested in volunteering your time or becoming a sponsor, please reach out to our very own <i style=\"\"><b style=\"\">Laura Overcash 704-699-0765</b>.  Feel free to drop off checks or donations at the Kannapolis office.</i></font></div><div style=\"font-family:inherit;font-size:15px;white-space:pre-wrap;color:rgb(5,5,5)\"><span style=\"font-family:inherit\"><i>*** </i></span><b style=\"font-family:inherit\">Pregnancy Support Center </b></div><div style=\"font-family:inherit;font-size:15px;white-space:pre-wrap;color:rgb(5,5,5)\"><span style=\"font-family:inherit\"><i>Baby Bottle Campaign - Mother&#39;s Day to Father&#39;s Day</i></span></div><div style=\"color:rgb(0,0,0);font-family:inherit;font-size:15px;white-space:pre-wrap\"><span style=\"font-family:inherit\"><font color=\"#050505\">Gather your coins, dollar bills, and checks as we help the </font>Pregancy<font color=\"#050505\"> Support Center with their largest campaign of the year.  Help support this cause by filling the provided bottles with monetary donations. Empty bottles will be available at the Salisbury and Kannapolis office starting tomorrow, </font><b style=\"color:rgb(5,5,5)\">Friday, May 7, 2021</b><font color=\"#050505\">.  Funding from this campaign will help with Medical Services - Free pregnancy testing and ultrasound,  Education - group classes and one-on-one programs, Material Support - diapers, wipes, formula, as well as prayer and encouragement, Parenting Options and Post-Abortive Care.  </font><i><font color=\"#6aa84f\">Each bottle comes with an individual tax deductible receipt so start collecting NOW!!</font><font color=\"#6fa8dc\"> </font><font color=\"#666666\"> </font></i><b style=\"color:rgb(5,5,5)\">Returned bottles will be collected at both locations on Monday, June 21, 2021.</b></span></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/05/2021-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/05/LRD-Roster_050621.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_050621.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-15','','','2021-05-08 13:46:19','2021-05-08 13:46:19','',0,'https://lantern-realty.com/?p=1850',0,'post','',0),(1851,6,'2021-05-08 13:46:19','2021-05-08 13:46:19','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-1-4','','','2021-05-08 13:46:19','2021-05-08 13:46:19','',1850,'https://lantern-realty.com/wp-content/uploads/2021/05/2021-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1852,6,'2021-05-08 13:46:19','2021-05-08 13:46:19','','LRD-Roster_050621.xlsx','','inherit','closed','closed','','lrd-roster_050621','','','2021-05-08 13:46:19','2021-05-08 13:46:19','',1850,'https://lantern-realty.com/wp-content/uploads/2021/05/LRD-Roster_050621.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1853,0,'2021-05-08 17:48:04','2021-05-08 17:48:04','','IMG_0830 edit (small)','','inherit','','closed','','img_0830-edit-small','','','2021-05-08 17:48:04','2021-05-08 17:48:04','',0,'https://lantern-realty.com/img_0830-edit-small/',0,'attachment','image/jpeg',0),(1855,6,'2021-05-11 13:06:35','2021-05-11 13:06:35','<div dir=\"ltr\">We have had a few questions regarding the mentorship program.  I have attached the mentorship program agreement.  <div><br></div><div>If you would like to be on our mentor list, please let myself, Paula or Melissa Jackling know.  We are now requiring new agents that join our office that have no experience to have a mentor.  This is a good way for experienced agents to help out new agents and make some money as well.  </div><div><br></div><div>The mentor program is also available for ANY agents that feel like they need help, or are in need to refocus their career.  It never hurts to have the ear of an experienced agent and see what works for them.  </div><div><br></div><div>If you have any questions please let me know. <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/05/2021-LRD-Mentoring-Program-Guidelines.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 2021-LRD-Mentoring-Program-Guidelines.pdf</a><br /></div>','Lantern Mentorship Program','','publish','closed','open','','lantern-mentorship-program','','','2021-05-11 13:06:35','2021-05-11 13:06:35','',0,'https://lantern-realty.com/?p=1855',0,'post','',0),(1856,6,'2021-05-11 13:06:35','2021-05-11 13:06:35','','2021-LRD-Mentoring-Program-Guidelines.pdf','','inherit','closed','closed','','2021-lrd-mentoring-program-guidelines','','','2021-05-11 13:06:35','2021-05-11 13:06:35','',1855,'https://lantern-realty.com/wp-content/uploads/2021/05/2021-LRD-Mentoring-Program-Guidelines.pdf',0,'attachment','application/pdf',0),(1857,0,'2021-05-11 13:06:35','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-05-11 13:06:35','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1857',0,'post','',0),(1858,0,'2021-05-11 13:06:36','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-05-11 13:06:36','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1858',0,'post','',0),(1859,0,'2021-05-11 14:26:31','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-05-11 14:26:31','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1859',0,'post','',0),(1860,0,'2021-05-11 14:26:31','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-05-11 14:26:31','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1860',0,'post','',0),(1861,6,'2021-05-12 12:36:53','2021-05-12 12:36:53','<div dir=\"ltr\"><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\">HI EVERYONE!!</p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\"><u></u> <u></u></p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\">It is Law Enforcement Week!!  A time to thank our law enforcement officers at the Cabarrus County Sheriff’s Office, Kannapolis Police Department and Concord Police Department.  A non-profit, Behind the Valor Collaborative, is collecting gift cards for our officers.  Currently we are 75 short having all the officers covered for the Friday event.  If you would like to donate money or a gift card that would be great!   My understanding is the gift cards range from $10-$25.</p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\"><u></u> <u></u></p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\">I can meet to pick up gift cards or venmo me (@Taina-Shaw) with any amount.  If you are doing multiple cards please let me know the amount for each gift card.</p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\"><u></u> <u></u></p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\">If you have any questions please call or text.  As a wife of a law enforcement officer for over 30 years, I appreciate your thoughtfulness and kindness to them as we thank them for their service this week.</p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\"><u></u> <u></u></p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\">Sincerely,</p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\">Tee</p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\"><u></u> <u></u></p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\"><b><span style=\"font-size:14pt\">T</span></b><span style=\"font-size:12pt\">aina “<b>T</b>ee” </span><b><span style=\"font-size:14pt\">S</span></b><span style=\"font-size:12pt\">haw<u></u><u></u></span></p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\"><span style=\"font-size:12pt\">Lantern Realty and Development<u></u><u></u></span></p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\"><a href=\"mailto:taina@tshawrealty.com\" target=\"_blank\" rel=\"noopener\"><span style=\"font-size:12pt\"><a href=\"mailto:taina@tshawrealty.com\" >taina@tshawrealty.com</a></span></a><span style=\"font-size:12pt\"><u></u><u></u></span></p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\"><span style=\"font-size:12pt\">704-467-0090</span></p><div><br></div>','Law Enforcement Week','','publish','closed','open','','law-enforcement-week','','','2021-05-12 12:36:53','2021-05-12 12:36:53','',0,'https://lantern-realty.com/?p=1861',0,'post','',0),(1862,6,'2021-05-12 14:15:55','2021-05-12 14:15:55','<div dir=\"ltr\">Here is a link to the class Amanda Lambert taught for us yesterday.  Some really good stuff here!<div><br></div><div><a href=\"https://youtu.be/DchYuJiDBCY\">https://youtu.be/DchYuJiDBCY</a><br clear=\"all\"><div><br></div>','Land Prep Class link','','publish','closed','open','','land-prep-class-link','','','2021-05-12 14:15:55','2021-05-12 14:15:55','',0,'https://lantern-realty.com/?p=1862',0,'post','',0),(1875,0,'2021-05-31 17:23:21','2021-05-31 17:23:21','','Screen Shot 2021-05-07 at 11.35.58 AM','','inherit','','closed','','screen-shot-2021-05-07-at-11-35-58-am','','','2021-05-31 17:23:21','2021-05-31 17:23:21','',0,'https://lantern-realty.com/screen-shot-2021-05-07-at-11-35-58-am/',0,'attachment','image/png',0),(1864,6,'2021-05-15 15:06:47','2021-05-15 15:06:47','<div dir=\"ltr\">Good Morning, just a few notes to start your weekend....<div><br></div><div>- <b>Your NC License renewals start today!!!!!</b>  DO IT!   $45 is not worth losing a deal over.  Make sure you pay it online at NCREC.gov.  </div><div>- Joe Ricci with Mortgage Right would like to invite agents to the <b>June 10th game at the Kannapolis Cannon Ballers stadium at 7pm</b>.  We have a limit of 20 tickets, first come, first serve.  Agents only.  Lets have a good turn out, enjoy some fellowship.  Let me know if you want to go ASAP.</div><div>- Make sure you check out <b>Wendells Rummages facebook video message</b>.  Some good info on there.  Here is the link.  <a href=\"https://www.facebook.com/100011433107901/videos/1559983104392778\">https://www.facebook.com/100011433107901/videos/1559983104392778</a></div><div>- I am looking for someone to teach a <b>Lead Gen class</b>.  If you are interested, please let me know.  We have a ton of interest in this topic.  Would love to hear different points of view on this topic.  Please contact me if you want to teach.  </div><div><br></div><div><br></div><div>Thanks again for all you do!!!  Call Paula, Deana or myself if you have questions, comments or suggestions. <br clear=\"all\"><div><br></div>','News &amp; Notes','','publish','closed','open','','news-notes-16','','','2021-05-15 15:06:47','2021-05-15 15:06:47','',0,'https://lantern-realty.com/?p=1864',0,'post','',0),(1865,9,'2021-05-17 19:56:08','2021-05-17 19:56:08','<div dir=\"ltr\">Hey guys,<div><br></div><div>We had a lot of agents asking for another mock home inspection class.  With homes selling so fast, we had to wait until the last minute to secure a location, thank you for your understanding for the short notice. As before, this one is on location at 2658 Thistle Brook Dr Concord.  Veterans Home Inspection is hosting it again and has set up an Evite for it.  They can take up to 15 agents, first come first serve.  Inspection starts at 4 pm. They estimate it will last about 2 hours. Please keep in mind, the homeowner will be on site, so I know we&#39;ll all be on our best behavior.</div><div><br></div><div>Please let me know if you have any questions or concerns.  Here is the link to reserve your spot    <a href=\"https://www.eventbrite.com/e/understanding-a-home-inspection-tickets-155692525535\">https://www.eventbrite.com/e/understanding-a-home-inspection-tickets-155692525535</a></div><div><br></div><div><br clear=\"all\"><div><br></div>','Mock Home Inspection Wednesday May 19 - 4 pm','','publish','closed','open','','mock-home-inspection-wednesday-may-19-4-pm','','','2021-05-17 19:56:08','2021-05-17 19:56:08','',0,'https://lantern-realty.com/?p=1865',0,'post','',0),(1866,9,'2021-05-18 13:25:58','2021-05-18 13:25:58','Hey All,<div dir=\"auto\"><br></div><div dir=\"auto\">Sorry for the short notice. Today’s CMA class has been postponed, we’ll let you know when we have a new date scheduled.</div><div dir=\"auto\"><br></div><div dir=\"auto\">Thank you </div>','CMA Class Postponed','','publish','closed','open','','cma-class-postponed','','','2021-05-18 13:25:58','2021-05-18 13:25:58','',0,'https://lantern-realty.com/?p=1866',0,'post','',0),(1867,0,'2021-05-21 15:05:57','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-05-21 15:05:57','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1867',0,'post','',0),(1868,0,'2021-05-21 15:05:57','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-05-21 15:05:57','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1868',0,'post','',0),(1870,9,'2021-05-24 20:15:58','2021-05-24 20:15:58','<div dir=\"ltr\"><br clear=\"all\"><div><b>Just a quick reminder for Tuesday&#39;s class.  It will be IN PERSON in the Kannapolis Office AND on ZOOM</b></div><div><br></div><div>Please join us as Mooresville BIC, Sarah Romesburg, helps us understand how Client Care can truly help our business and client relationships.  </div><div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br><b>Topic: Client Care w/ Sarah Romesburg<br>Time: May 25, 2021 10:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/85753861033?pwd=MVhZYUs2citBcXFGL1QrUitON3hBUT09\">https://us02web.zoom.us/j/85753861033?pwd=MVhZYUs2citBcXFGL1QrUitON3hBUT09</a><br><br>Meeting ID: 857 5386 1033<br>Passcode: 877848<br>One tap mobile<br>+19292056099,,85753861033#,,,,*877848# US (New York)<br>+13017158592,,85753861033#,,,,*877848# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 857 5386 1033<br>Passcode: 877848<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kPRlFa6JM\">https://us02web.zoom.us/u/kPRlFa6JM</a><br><br></div><div><br></div><div><br></div>','Zoom Meeting Invite for \"Client Care\" class Tuesday 10 am May 25','','publish','closed','open','','zoom-meeting-invite-for-client-care-class-tuesday-10-am-may-25','','','2021-05-24 20:15:59','2021-05-24 20:15:59','',0,'https://lantern-realty.com/?p=1870',0,'post','',0),(1871,6,'2021-05-24 20:35:58','2021-05-24 20:35:58','<div dir=\"ltr\">Good Afternoon, just a few notes for you as you head into this week...<div><br></div><div>- Make sure you <b>renew your license!!!!!</b> That is due by June 30th.  Go to the commission&#39;s website.  They make it VERY easy to take your money. </div><div><br></div><div>- If you have responded that you will be going to the <b>Cannon Ballers game on June 10th @ 7pm</b>,  Thank You!  We should have a blast.  If you have not yet let me know, you still have a few days.  This event is for agents only and is hosted by Joe Ricci at Mortgage Right.  FYI,  our very own Courtney Holshouser will be signing the national anthem that night!  Come out and support one of our very own.</div><div><br></div><div>- I have attached a new <b>Education calendar.</b>  Several new classes have been added.  </div><div>*** I will be doing a Broker Q&amp;A on 6/3.  This class is open to all for you to ask any and all questions.  I&#39;ll do my best to answer them.  </div><div>*** A Ribbon.com class will be held on 6/8 w/ Ryan Lantz.  This is a great tool to assist your buyer clients. </div><div>*** Cathy Hager will be holding a Lead Generation class on 6/22. </div><div>*** This week Sarah Romesburg, our Mooresville BIC will be holding a class on Client Care.  Also this week @ 6pm on 5/27 Trio will be holding a zoom class on their Lease To Own product.  </div><div><br></div><div>- You only have 17 days to take your GenUp and CE.  Please check with your BIC&#39;s if you are not sure where you stand.  Online classes make it really easy to get this taken care of this year.  NO EXCUSES!!!!</div><div><br></div><div>- Lastly, our <b>next team meeting</b> will be held at the Kannapolis office on 6/2 at 11am.  Trio will be speaking to us as well as Nicole at HWA.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/05/LRD-Roster_051421.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_051421.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/05/2021-Educational-Calendar-2.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-17','','','2021-05-24 20:35:58','2021-05-24 20:35:58','',0,'https://lantern-realty.com/?p=1871',0,'post','',0),(1872,6,'2021-05-24 20:35:58','2021-05-24 20:35:58','','LRD-Roster_051421.xlsx','','inherit','closed','closed','','lrd-roster_051421','','','2021-05-24 20:35:58','2021-05-24 20:35:58','',1871,'https://lantern-realty.com/wp-content/uploads/2021/05/LRD-Roster_051421.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1873,6,'2021-05-24 20:35:58','2021-05-24 20:35:58','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-2-4','','','2021-05-24 20:35:58','2021-05-24 20:35:58','',1871,'https://lantern-realty.com/wp-content/uploads/2021/05/2021-Educational-Calendar-2.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1874,9,'2021-05-26 13:26:55','2021-05-26 13:26:55','<div dir=\"ltr\"><div><br></div><div><br></div><div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>We have a new and interesting vendor that will be telling us all about their company, Aaron Tuttle with Trio, a Lease to Own concept will be joining us..  Please join us via Zoom this Thursday evening, May 27 from 6-6:30 pm and see how they may be able to help your clients. If you cannot make the evening session, no worries.  Aaron Tuttle with Trio will join us via Zoom at our team meeting on June 2, which will be both in person and via Zoom.</div><div><b><br></b></div><div><b><br></b></div><div><b>Topic: Lease to Own Class w/ Trio<br>Time: May 27, 2021 06:00 PM Eastern Time (US and Canada)<br></b><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/81498360175?pwd=TVBBRVdtYWZQUm9hZzN2R1lZL1UwUT09\">https://us02web.zoom.us/j/81498360175?pwd=TVBBRVdtYWZQUm9hZzN2R1lZL1UwUT09</a><br><br>Meeting ID: 814 9836 0175<br>Passcode: 069370<br>One tap mobile<br>+19292056099,,81498360175#,,,,*069370# US (New York)<br>+13017158592,,81498360175#,,,,*069370# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 814 9836 0175<br>Passcode: 069370<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kc5YW4f5Ja\">https://us02web.zoom.us/u/kc5YW4f5Ja</a><br><br></div><div><br></div><br clear=\"all\"><div><br></div>','Zoom Invite for Lease to Own Class - Thursday May 27 at 6 pm','','publish','closed','open','','zoom-invite-for-lease-to-own-class-thursday-may-27-at-6-pm','','','2021-05-26 13:26:55','2021-05-26 13:26:55','',0,'https://lantern-realty.com/?p=1874',0,'post','',0),(1876,6,'2021-06-01 13:16:25','2021-06-01 13:16:25','<div dir=\"ltr\">Good Morning, hope you all had a restful Memorial Day weekend and took time to remember those heroes that gave all so we can live in a free country.  Here are a few notes as we head into the first week of June.<div><br></div><div>- Our<b> team meeting tomorrow</b> (6/2) will be at 11am.  It will not be in person, only on Zoom.  Trio will be talking to us about their \"lease to own\" program.  Also, Nicole Barth will be speaking as well.  Melissa will be sending out a meeting link later today.  <br clear=\"all\"><div>- If you havent let me know that you will be attending the <b>June 10th Cannon Ballers</b> game, please let me know ASAP.  This will be hosted by Joe Ricci with Mortgage Right.  </div><div>- PLEASE make sure you<b> renew your NC license</b>.  Just go to NCREC.gov and pay them $45.  You have until June 30th.</div><div>- Also, make sure you are AT LEAST signed up to take your <b>CE &amp; GenUp</b>. You MUST take this by June 10th.  If you don&#39;t, your license will be inactive and you won&#39;t be able to practice real estate until you take the classes after July 1st. </div><div>- I have attached our updated<b> Education Calendar</b>.   I will be holding a Broker Q&amp;A this Thursday at 10a on Zoom and in person at the Kannapolis office.  Come by and ask ANYTHING!   I love sharing my real estate experiences including what has and hasn&#39;t worked for me.  We have also added a Lead Generation class as well as another Q&amp;A w/ an Appraiser (that should be interesting!). </div><div>- Lastly, make sure you have renewed your <b>Privilege License</b> with NC DOR.  You should have recently received a renewal in the mail.  If not, go to the NC DOR site and renew it online.  </div><div><br></div><div>Thank you all for your hard work!  <b>This year our units sold are up 89% over LY and $ sold are up 146% over the same period LY</b>.  Great job!  Let Paula, Deana and myself know what you need to succeed.  </div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/06/LRD-Roster_052721.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_052721.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/06/2021-Educational-Calendar.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-18','','','2021-06-01 13:16:25','2021-06-01 13:16:25','',0,'https://lantern-realty.com/?p=1876',0,'post','',0),(1877,6,'2021-06-01 13:16:25','2021-06-01 13:16:25','','LRD-Roster_052721.xlsx','','inherit','closed','closed','','lrd-roster_052721','','','2021-06-01 13:16:25','2021-06-01 13:16:25','',1876,'https://lantern-realty.com/wp-content/uploads/2021/06/LRD-Roster_052721.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1878,6,'2021-06-01 13:16:25','2021-06-01 13:16:25','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-8','','','2021-06-01 13:16:25','2021-06-01 13:16:25','',1876,'https://lantern-realty.com/wp-content/uploads/2021/06/2021-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1879,9,'2021-06-01 13:55:59','2021-06-01 13:55:59','<div dir=\"ltr\"><div><br></div><div><br></div><div>We have a great Zoom team meeting coming up tomorrow, Wednesday June 2.  Aaron Tuttle with Trio will join us and speak about their &#39;Lease to Own&#39; program.  You will want to check it out.  I really enjoyed Thursday evening&#39;s Zoom with him and am excited for all of you to learn about Trio.  You&#39;ll be able to help even more clients get into a home!  NIcole Barth with HWA will join us with some helpful information about septic coverage.  Matthew at GEICO is out of town, but will try to jump on the meeting too!  </div><div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br><b>Topic: Lantern Realty Team Meeting<br>Time: Jun 2, 2021 11:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/88911836677?pwd=RjVnMGY2U3VubFNFM0MxajFQUlI1dz09\">https://us02web.zoom.us/j/88911836677?pwd=RjVnMGY2U3VubFNFM0MxajFQUlI1dz09</a><br><br>Meeting ID: 889 1183 6677<br>Passcode: 608637<br>One tap mobile<br>+19292056099,,88911836677#,,,,*608637# US (New York)<br>+13017158592,,88911836677#,,,,*608637# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 889 1183 6677<br>Passcode: 608637<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kcKmQ0nRcJ\">https://us02web.zoom.us/u/kcKmQ0nRcJ</a><br><br></div><div><br></div><div><br></div><br clear=\"all\"><div><br></div>','Zoom Link for Lantern Realty Team Meeting Wednesday June 2','','publish','closed','open','','zoom-link-for-lantern-realty-team-meeting-wednesday-june-2','','','2021-06-01 13:55:59','2021-06-01 13:55:59','',0,'https://lantern-realty.com/?p=1879',0,'post','',0),(1880,9,'2021-06-02 19:06:41','2021-06-02 19:06:41','<div dir=\"ltr\"><div><br></div><div>Please join us Thursday, June 3 at 10 a.m. either in person at the Kannapolis office or via Zoom as Chris Puckett will be hosting the Broker Q&amp;A, so bring all your questions and let&#39;s see what he knows!</div><div><br></div><div><br><b>Topic: Broker Q&amp;A w/Chris Puckett<br>Time: Jun 3, 2021 10:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/87854352050?pwd=QVpiSXVUZ2c1M2EzT2ZuMmpiUTlMdz09\">https://us02web.zoom.us/j/87854352050?pwd=QVpiSXVUZ2c1M2EzT2ZuMmpiUTlMdz09</a><br><br>Meeting ID: 878 5435 2050<br>Passcode: 778035<br>One tap mobile<br>+13126266799,,87854352050#,,,,*778035# US (Chicago)<br>+19292056099,,87854352050#,,,,*778035# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 878 5435 2050<br>Passcode: 778035<br>Find your local number: <a href=\"https://us02web.zoom.us/u/keFZYau8FD\">https://us02web.zoom.us/u/keFZYau8FD</a><br><br></div><div><br></div><div><br></div><br clear=\"all\"><div><br></div>','Class invite for Broker Q&amp;A for Thursday June 3 at 10 am','','publish','closed','open','','class-invite-for-broker-qa-for-thursday-june-3-at-10-am','','','2021-06-02 19:06:41','2021-06-02 19:06:41','',0,'https://lantern-realty.com/?p=1880',0,'post','',0),(1881,6,'2021-06-07 13:46:17','2021-06-07 13:46:17','<div dir=\"ltr\">Good Morning, I hope you all had a wonderful weekend.  Here are a few notes to get your week started...<div><br></div><div>- Dont forget the <b>baseball game on Thursday 6/10 at 7pm.</b>  Joe Ricci w/ Mortgage Right has invited agents from Lantern.  If you have replied to me saying you will go, we look forward to seeing you all there.  If you havent and still want to go just let me know.  </div><div><br></div><div>- Attached is the current <b>education calendar</b>.  We will be planning an \"Offer to Purchase\" workshop, coming up later in the summer.  The workshop will be on several dates, both lunchtime and evening with lunch and dinner to be provided.  By late Summer we will have the new 2021 Offer to Purchase and we will do a deep dive into each line of the contract, so we can all have a better understanding of it and how to best explain to our clients. Stay tuned for more details.</div><div><br></div><div>- Don&#39;t forget to renew your <b>privilege license! </b> If you have questions, go to the NC DOR website for details. </div><div><br></div><div>- Last but not least, <b>MAKE SURE YOU RENEW YOUR LICENSE AND TAKE YOUR CE/GenUp.</b>  You have until Thursday June 10th to complete your CE &amp; GenUp requirements.  You have until June 30th to renew your license.  If your license goes inactive because you failed to take CE or Genup and you are under contract on a property,  You will not get paid until your license is active again.  If someone has to take over your transaction because of your negligence, you will have to pay that agent part or all of your commission.  </div><div><br></div><div>Should you have any questions, let Paula, Deana or myself know.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/06/2021-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-19','','','2021-06-07 13:46:17','2021-06-07 13:46:17','',0,'https://lantern-realty.com/?p=1881',0,'post','',0),(1882,6,'2021-06-07 13:46:17','2021-06-07 13:46:17','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-1-5','','','2021-06-07 13:46:17','2021-06-07 13:46:17','',1881,'https://lantern-realty.com/wp-content/uploads/2021/06/2021-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1883,9,'2021-06-07 20:35:55','2021-06-07 20:35:55','<div dir=\"ltr\"><div><br>With all these questions bouncing around about \"what is Ribbon?\"  \"how does Ribbon work?\"  \"anyone heard of Ribbon?\", here is your chance to find out.  Ribbon is becoming increasingly popular and many agents and clients have been asking about it.  Join us via Zoom only on June 8 at 9:45 a.m. as Ryan tells us how we can take advantage of Ribbon.</div><div><b><font size=\"4\"><br></font></b></div><div><b><font size=\"4\">Topic: Ribbon with Ryan<br>Time: Jun 8, 2021 09:45 AM Eastern Time (US and Canada)</font></b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/81119723136?pwd=b2FNZnBXT25Cby9qcFVjOUhxR2JEZz09\">https://us02web.zoom.us/j/81119723136?pwd=b2FNZnBXT25Cby9qcFVjOUhxR2JEZz09</a><br><br>Meeting ID: 811 1972 3136<br>Passcode: 563724<br>One tap mobile<br>+13017158592,,81119723136#,,,,*563724# US (Washington DC)<br>+13126266799,,81119723136#,,,,*563724# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 811 1972 3136<br>Passcode: 563724<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kcnmTGY9U1\">https://us02web.zoom.us/u/kcnmTGY9U1</a><br><br></div><div><br></div><div><br></div><br clear=\"all\"><div><br></div>','Zoom Ribbon Class Tuesday June 8 at 9:45 a.m. - Lantern Realty','','publish','closed','open','','zoom-ribbon-class-tuesday-june-8-at-945-a-m-lantern-realty','','','2021-06-07 20:35:55','2021-06-07 20:35:55','',0,'https://lantern-realty.com/?p=1883',0,'post','',0),(1884,0,'2021-06-08 14:01:54','2021-06-08 14:01:54','','PicsArt_06-08-09.58.13','','inherit','','closed','','picsart_06-08-09-58-13','','','2021-06-08 14:01:54','2021-06-08 14:01:54','',0,'https://lantern-realty.com/picsart_06-08-09-58-13/',0,'attachment','image/jpeg',0),(1885,0,'2021-06-08 14:20:25','2021-06-08 14:20:25','','D8130E10-C3B5-4B81-90E9-1A894310EE45','','inherit','','closed','','d8130e10-c3b5-4b81-90e9-1a894310ee45','','','2021-06-08 14:20:25','2021-06-08 14:20:25','',0,'https://lantern-realty.com/d8130e10-c3b5-4b81-90e9-1a894310ee45/',0,'attachment','image/jpeg',0),(1927,9,'2021-06-21 18:06:03','2021-06-21 18:06:03','<div dir=\"ltr\"><br clear=\"all\"><div>Hey All,</div><div><br></div><div>Two things to note for this week:  </div><div><br></div><div>1.  Our Lead Gen class with fellow agent, Cathy Hager,  is tomorrow, June 22 in person in the Kannapolis office and via Zoom.  Zoom link is provided below.  Zak with DR Horton will be joining us briefly to let us know what the latest is with their new home communities and will be generously providing lunch for those that RSVP&#39;d.</div><div><br></div><div>2.  Unfortunately, our Appraisal Class by Leslie with Avanti will have to be rescheduled.  She had a family emergency.  I will let you know when we have a confirmation on a new date.  I know many of you were looking forward to it.</div><div><br></div><div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br><b>Topic: Lead Generation w/Cathy Hager<br>Time: Jun 22, 2021 11:30 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/87945356200?pwd=RGZmWFJOYnNRbnpra2tOMVNFKzRxZz09\">https://us02web.zoom.us/j/87945356200?pwd=RGZmWFJOYnNRbnpra2tOMVNFKzRxZz09</a><br><br>Meeting ID: 879 4535 6200<br>Passcode: 912673<br>One tap mobile<br>+19292056099,,87945356200#,,,,*912673# US (New York)<br>+13017158592,,87945356200#,,,,*912673# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 879 4535 6200<br>Passcode: 912673<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kAaWYiHAY\">https://us02web.zoom.us/u/kAaWYiHAY</a><br><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>','Lead Generation Reminder Tuesday, June 22 at 11:30 a.m. &amp; Zoom Link','','publish','closed','open','','lead-generation-reminder-tuesday-june-22-at-1130-a-m-zoom-link','','','2021-06-21 18:06:03','2021-06-21 18:06:03','',0,'https://lantern-realty.com/?p=1927',0,'post','',0),(1888,1,'2021-06-09 00:23:50','2021-06-09 00:23:50','<!-- wp:paragraph -->\n<p>A native of Asheville, I have enjoyed a career in Accounting and Tax preparation. Following graduation at Western Carolina University I commenced my professional career and became a franchise owner with H&amp;R Block. For the last 20 years I have worked with physicians and tax departments of Healthcare Business Consultants and Doctors Management. Due to the fact that I enjoy real estate and investing myself, I obtained my NC brokerage license in the 80’s and worked referrals for many of my accounting and tax clients. I am currently pursuing a more active real estate career while staying abreast of the tax laws. This enables me to help guide you through those issues that pertain to both the real estate market and your financial future for those investments. I love to help client’s find homes and investments in the Asheville, Hendersonville and surrounding areas. Let me go to work to find you the perfect mountain home for your family, whether it be a mountain top home with expansive views of the valleys below or a small West Asheville abode within walking distance of renowned restaurants, entertainment and business. I can and will work diligently to market and promote your current property for the highest and best value. I know Western NC and real estate, let me go to work for you.</p>\n<!-- /wp:paragraph -->','Michael Farlow','','inherit','closed','closed','','1640-revision-v1','','','2021-06-09 00:23:50','2021-06-09 00:23:50','',1640,'https://lantern-realty.com/?p=1888',0,'revision','',0),(1889,1,'2021-06-09 00:24:43','2021-06-09 00:24:43','','Micheal-Farlow','','inherit','','closed','','micheal-farlow','','','2021-06-09 00:24:43','2021-06-09 00:24:43','',1640,'https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg',0,'attachment','image/jpeg',0),(1890,1,'2021-06-09 00:31:09','2021-06-09 00:31:09','<!-- wp:paragraph -->\n<p>Having lived in the Asheville area all my life, I understand why it’s one of the top locations in the country to live. With over 21 years of sales experience and in true southern style, my approach to customer service is to get to know you, your personal needs and any potential concerns up front. This enables me to best advise you through your home buying and selling process, helping to avoid and potential problems down the road. Developing a true partnership to offer you up-front and honest advise is important. Aiding you in moving through each step of the sales process as quickly as possible, staying up to date on market changes both financial and legal enables the transaction to move more smoothly. Easing some of the stress and making it as enjoyable as possible is key. Buying or selling a home is not just a “transaction” . I am here to become a support and trusted advisor for dealing with your real estate needs. If you or someone you know is ready for their 1st or 2nd home or to purchase an investment property, here in the Western NC mountains – in and around Asheville – or if you are ready to sell, please feel free to contact me. In the end it is really about relationships. I might have helped you sell or purchase a home, but our relationship lasts forever. Your referral is the best compliment you can give and I promise to treat your connections as well as I treat my own. Check out my reviews on Zillow <a href=\"https://www.zillow.com/profile/KLawingrealtor\">https://www.zillow.com/profile/KLawingrealtor</a></p>\n<!-- /wp:paragraph -->','Katherine Lawing','','inherit','closed','closed','','1642-revision-v1','','','2021-06-09 00:31:09','2021-06-09 00:31:09','',1642,'https://lantern-realty.com/?p=1890',0,'revision','',0),(1891,1,'2021-06-09 00:32:29','2021-06-09 00:32:29','','Katherine_Lawing','','inherit','','closed','','katherine_lawing','','','2021-06-09 00:32:29','2021-06-09 00:32:29','',1642,'https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing.jpg',0,'attachment','image/jpeg',0),(1892,1,'2021-06-09 00:48:10','2021-06-09 00:48:10','<!-- wp:paragraph -->\n<p>Hi! My name is Dawn and I was born and raised in Cabarrus County. Since I have lived here my entire life, I am very familiar with the area. I currently live in Concord with my husband, two daughters, and my sweet little dog. In my spare time, I enjoy weekends trips anywhere, but the mountains are my favorite. I have many years with customer service experience and would love to help buyer and seller clients with their real estate needs. I am ready to help you and I look forward to working together.</p>\n<!-- /wp:paragraph -->','Dawn Wetherbee','','publish','closed','closed','','dawn-wetherbee','','','2021-08-01 21:35:31','2021-08-01 21:35:31','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1892',100,'houzez_agent','',0),(1893,1,'2021-06-09 00:47:41','2021-06-09 00:47:41','','Dawn_Wetherbee','','inherit','','closed','','dawn_wetherbee','','','2021-06-09 00:47:41','2021-06-09 00:47:41','',1892,'https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee.jpeg',0,'attachment','image/jpeg',0),(1894,1,'2021-06-09 00:48:10','2021-06-09 00:48:10','<!-- wp:paragraph -->\n<p>Hi! My name is Dawn and I was born and raised in Cabarrus County. Since I have lived here my entire life, I am very familiar with the area. I currently live in Concord with my husband, two daughters, and my sweet little dog. In my spare time, I enjoy weekends trips anywhere, but the mountains are my favorite. I have many years with customer service experience and would love to help buyer and seller clients with their real estate needs. I am ready to help you and I look forward to working together.</p>\n<!-- /wp:paragraph -->','Dawn Wetherbee','','inherit','closed','closed','','1892-revision-v1','','','2021-06-09 00:48:10','2021-06-09 00:48:10','',1892,'https://lantern-realty.com/?p=1894',0,'revision','',0),(1895,1,'2021-06-09 00:52:20','2021-06-09 00:52:20','<!-- wp:paragraph -->\n<p>Asheville and Western North Carolina are great places to live and work, which is why Julie chose to call it home. With roots in Chappaqua, NY, a suburb of NYC, she moved to North Carolina in 1997, then to Asheville in 2005. Real estate is a passion for her and with her background as an Administrative Assistant with a BS in Business Administration/Marketing, and currently a multi-million dollar agent since 2017, it is easy to see why so many have called her for help with buying and selling. Julie has been a part of the Lantern family since May of 2021, but she isn’t just passionate about helping families find their next home. She has volunteered with Energy Savers Network and Habitat for Humanity and loves being a part of other community events. An avid hiker and music fan, when she isn’t in the office, or volunteering, you’ll usually find her at a concert, in the woods, or home enjoying time with her husband Bob and their cats and goats.</p>\n<!-- /wp:paragraph -->','Julie Arader','','publish','closed','closed','','julie-arader','','','2021-11-22 00:28:45','2021-11-22 00:28:45','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1895',4,'houzez_agent','',0),(1896,1,'2021-06-09 00:51:58','2021-06-09 00:51:58','','Julie_Arader','','inherit','','closed','','julie_arader','','','2021-06-09 00:51:58','2021-06-09 00:51:58','',1895,'https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg',0,'attachment','image/jpeg',0),(1897,1,'2021-06-09 00:52:20','2021-06-09 00:52:20','<!-- wp:paragraph -->\n<p>I grew up in Chappaqua, NY, a suburb about 30 miles north of NYC. I moved to NC in 1997, I worked for IBM and moved my job to the Raleigh/Durham area. I found my way to Asheville in 2005 when I met my husband. I love this area and am here to stay. We live in Candler with our 3 cats, 2 goats and 4 chickens. I like gardening, hiking and going to see live music, and music festivals. I have an Associates degree in Marketing and a BS in Business Administration. I\'ve been an Administrative Assistant for most of my career and have always been interested in being a Real Estate Agent so I finally went for it in early 2017. I live in my perfect for me home, let me help you find your perfect for you home.</p>\n<!-- /wp:paragraph -->','Julie Arader','','inherit','closed','closed','','1895-revision-v1','','','2021-06-09 00:52:20','2021-06-09 00:52:20','',1895,'https://lantern-realty.com/?p=1897',0,'revision','',0),(1898,1,'2021-06-09 00:56:38','2021-06-09 00:56:38','<!-- wp:paragraph -->\n<p>I grew up as a Rowan County resident and moved to Richfield when my husband and I bought our first home 3 years ago. After going through the extensive process of buying and remodeling I decided that I wanted to help other families or first time home buyers do the same thing and help make their transitions as easy as possible! I left my previous full time job and came into the market when is was HOT and I absolutely love it and haven\'t looked back since. I spend all of my spare time enjoying the outdoors with my husband and dogs, fishing, boating, camping and trail riding ATVs.</p>\n<!-- /wp:paragraph -->','Chelsea Trexler','','publish','closed','closed','','chelsea-trexler','','','2021-08-01 21:34:25','2021-08-01 21:34:25','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1898',80,'houzez_agent','',0),(1899,1,'2021-06-09 00:56:03','2021-06-09 00:56:03','','Chelsea_Trexler','','inherit','','closed','','chelsea_trexler','','','2021-06-09 00:56:03','2021-06-09 00:56:03','',1898,'https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg',0,'attachment','image/jpeg',0),(1900,1,'2021-06-09 00:56:38','2021-06-09 00:56:38','','Chelsea Trexler','','inherit','closed','closed','','1898-revision-v1','','','2021-06-09 00:56:38','2021-06-09 00:56:38','',1898,'https://lantern-realty.com/?p=1900',0,'revision','',0),(1901,1,'2021-06-09 01:00:40','2021-06-09 01:00:40','<!-- wp:paragraph -->\n<p>Sandra has lived in North Carolina her whole life. Her passion is to help families find their perfect home. She has been doing that very job since 2017. She would love to help you buy or sell your home.</p>\n<!-- /wp:paragraph -->','Sandra Bean','','publish','closed','closed','','sandra-bean','','','2021-06-09 01:00:50','2021-06-09 01:00:50','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1901',10,'houzez_agent','',0),(1902,1,'2021-06-09 01:00:04','2021-06-09 01:00:04','','Sandra_Bean','','inherit','','closed','','sandra_bean','','','2021-06-09 01:00:04','2021-06-09 01:00:04','',1901,'https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean.jpg',0,'attachment','image/jpeg',0),(1903,1,'2021-06-09 01:00:40','2021-06-09 01:00:40','<!-- wp:paragraph -->\n<p>Sandra has lived in North Carolina her whole life. Her passion is to help families find their perfect home. She has been doing that very job since 2017. She would love to help you buy or sell your home.</p>\n<!-- /wp:paragraph -->','Sandra Bean','','inherit','closed','closed','','1901-revision-v1','','','2021-06-09 01:00:40','2021-06-09 01:00:40','',1901,'https://lantern-realty.com/?p=1903',0,'revision','',0),(1904,1,'2021-06-09 01:03:39','2021-06-09 01:03:39','<!-- wp:paragraph -->\n<p>Born and raised in upstate New York, I moved to Concord with my family in 2007. Since moving here, I have lived in Concord, Kannapolis and now settled in Salisbury. I have always enjoyed looking at homes, and helping friends and family find real estate online. Now that I am officially an NC Realtor, I am now able to take my hobby and make it into a career. I love listening to my clients wants and needs, and making them a reality. I specialize in all areas of real estate, including relocation. As your real estate agent, I promise that you can be confident that I will always have your back and look out for the best interests of you and your family. I am passionate about what I do and I use my passion as the driving force to help my clients reach their real estate and financial goals. When I am not practicing real estate, you can find me working as a freelance PR assistant, playing outside with son or preparing a home cooked meal for my family. My husband and I have a son, named Jack, who is the light of our lives, as well as two fur babies.</p>\n<!-- /wp:paragraph -->','Katie Abell','','publish','closed','closed','','katie-abell','','','2021-06-09 01:03:48','2021-06-09 01:03:48','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1904',5,'houzez_agent','',0),(1905,1,'2021-06-09 01:03:14','2021-06-09 01:03:14','','Katie_Abell','','inherit','','closed','','katie_abell','','','2021-06-09 01:03:14','2021-06-09 01:03:14','',1904,'https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell.png',0,'attachment','image/png',0),(1906,1,'2021-06-09 01:03:39','2021-06-09 01:03:39','<!-- wp:paragraph -->\n<p>Born and raised in upstate New York, I moved to Concord with my family in 2007. Since moving here, I have lived in Concord, Kannapolis and now settled in Salisbury. I have always enjoyed looking at homes, and helping friends and family find real estate online. Now that I am officially an NC Realtor, I am now able to take my hobby and make it into a career. I love listening to my clients wants and needs, and making them a reality. I specialize in all areas of real estate, including relocation. As your real estate agent, I promise that you can be confident that I will always have your back and look out for the best interests of you and your family. I am passionate about what I do and I use my passion as the driving force to help my clients reach their real estate and financial goals. When I am not practicing real estate, you can find me working as a freelance PR assistant, playing outside with son or preparing a home cooked meal for my family. My husband and I have a son, named Jack, who is the light of our lives, as well as two fur babies.</p>\n<!-- /wp:paragraph -->','Katie Abell','','inherit','closed','closed','','1904-revision-v1','','','2021-06-09 01:03:39','2021-06-09 01:03:39','',1904,'https://lantern-realty.com/?p=1906',0,'revision','',0),(1907,1,'2021-06-09 01:06:44','2021-06-09 01:06:44','<!-- wp:paragraph -->\n<p>Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate professionals ready to expertly guide you home. Rochelle spent 13 years as a visual merchandiser for a flagship department store in her hometown town of Des Moines, Iowa. She later entered the mortgage industry, working to help homeowners facing foreclosure stay in their homes. In 2014, Rochelle moved to Matthews, NC with her husband and high-school sweetheart, Tim, and their two children. It was here in the Queen City that she was able to combine her love of design and passion for helping others by becoming a licensed real estate agent. In 2021, Rochelle formed The Ogburn Group and was thrilled to partner with her husband to help even more clients find their way ‘home’. Tim Ogburn worked for over a decade at one of the nation\'s largest financial institutions. First in mortgages and then as a Business Relationship Manager. He is excited, humbled and honored to bring his mortgage insight and relationship management skills to The Ogburn Group and help more buyers and sellers realize their homeownership dreams.</p>\n<!-- /wp:paragraph -->','Rochelle Shanae Ogburn','','publish','closed','closed','','rochelle-shanae-ogburn','','','2021-06-09 01:06:50','2021-06-09 01:06:50','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=1907',60,'houzez_agent','',0),(1908,1,'2021-06-09 01:06:22','2021-06-09 01:06:22','','Rochelle_Shanae_Ogburn','','inherit','','closed','','rochelle_shanae_ogburn','','','2021-06-09 01:06:22','2021-06-09 01:06:22','',1907,'https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn.jpg',0,'attachment','image/jpeg',0),(1909,1,'2021-06-09 01:06:44','2021-06-09 01:06:44','<!-- wp:paragraph -->\n<p>Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate professionals ready to expertly guide you home. Rochelle spent 13 years as a visual merchandiser for a flagship department store in her hometown town of Des Moines, Iowa. She later entered the mortgage industry, working to help homeowners facing foreclosure stay in their homes. In 2014, Rochelle moved to Matthews, NC with her husband and high-school sweetheart, Tim, and their two children. It was here in the Queen City that she was able to combine her love of design and passion for helping others by becoming a licensed real estate agent. In 2021, Rochelle formed The Ogburn Group and was thrilled to partner with her husband to help even more clients find their way ‘home’. Tim Ogburn worked for over a decade at one of the nation\'s largest financial institutions. First in mortgages and then as a Business Relationship Manager. He is excited, humbled and honored to bring his mortgage insight and relationship management skills to The Ogburn Group and help more buyers and sellers realize their homeownership dreams.</p>\n<!-- /wp:paragraph -->','Rochelle Shanae Ogburn','','inherit','closed','closed','','1907-revision-v1','','','2021-06-09 01:06:44','2021-06-09 01:06:44','',1907,'https://lantern-realty.com/?p=1909',0,'revision','',0),(1911,1,'2021-06-09 01:26:35','2021-06-09 01:26:35','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2021-06-09 01:26:35','2021-06-09 01:26:35','',1175,'https://lantern-realty.com/?p=1911',0,'revision','',0),(1912,1,'2021-06-09 01:26:35','2021-06-09 01:26:35','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[table id=team /]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2021-06-09 01:26:35','2021-06-09 01:26:35','',1175,'https://lantern-realty.com/?p=1912',0,'revision','',0),(1913,1,'2021-06-09 01:26:35','2021-06-09 01:26:35','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\" datatables_page_length=\"150\"]','Lantern Directory','','inherit','closed','closed','','1175-revision-v1','','','2021-06-09 01:26:35','2021-06-09 01:26:35','',1175,'https://lantern-realty.com/?p=1913',0,'revision','',0),(1914,1,'2021-06-09 01:28:41','2021-06-09 01:28:41','<h1>Lantern Directory</h1>		\n			<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/\" role=\"button\">\n						Request Changes\n					</a>\n			<h2>Office Directory</h2>		\n		<p style=\"text-align: center;\">Important details about our Lantern Offices.</p>[table id=offices /][gdoc key=\"https://docs.google.com/spreadsheets/d/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw/edit?usp=sharing\" width=\"100%\" use_cache=\"no\"]		\n			<h2>Team Directory</h2>		\n		<p style=\"text-align: center;\">A quick listing of all Lantern Team Members.</p>[gdoc key=\"https://docs.google.com/spreadsheets/d/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE/edit?usp=sharing\" width=\"100%\" query=\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\" csv_headers=\"1\" use_cache=\"no\" datatables_page_length=\"150\"][table id=team /]','zzLantern Directory','','inherit','closed','closed','','1757-revision-v1','','','2021-06-09 01:28:41','2021-06-09 01:28:41','',1757,'https://lantern-realty.com/?p=1914',0,'revision','',0),(1915,6,'2021-06-09 14:16:08','2021-06-09 14:16:08','<div dir=\"ltr\">Here is the link to our YouTube Channel and the Ribbon class that was held on 6/8/21. <div><br></div><div><a href=\"https://youtu.be/sqYnsctganc\">https://youtu.be/sqYnsctganc</a><br clear=\"all\"><div><br></div>','Ribbon Class link','','publish','closed','open','','ribbon-class-link','','','2021-06-09 14:16:08','2021-06-09 14:16:08','',0,'https://lantern-realty.com/?p=1915',0,'post','',0),(1917,0,'2021-06-09 15:20:15','2021-06-09 15:20:15','','head shot','','inherit','','closed','','head-shot-2','','','2021-06-09 15:20:15','2021-06-09 15:20:15','',0,'https://lantern-realty.com/head-shot-2/',0,'attachment','image/jpeg',0),(1918,0,'2021-06-10 03:34:24','2021-06-10 03:34:24','','headshot','','inherit','','closed','','headshot-2','','','2021-06-10 03:34:24','2021-06-10 03:34:24','',0,'https://lantern-realty.com/headshot-2/',0,'attachment','image/jpeg',0),(1919,6,'2021-06-10 15:26:33','2021-06-10 15:26:33','<div dir=\"ltr\">Hello All, here is a link to the Trio - Lease to Own class.  Hope you enjoy!<div><br></div><div><a href=\"https://youtu.be/O-ZIOTNn96I\">https://youtu.be/O-ZIOTNn96I</a><br clear=\"all\"><div><br></div>','Trio class','','publish','closed','open','','trio-class','','','2021-06-10 15:26:33','2021-06-10 15:26:33','',0,'https://lantern-realty.com/?p=1919',0,'post','',0),(1920,0,'2021-06-10 19:39:55','2021-06-10 19:39:55','','Doreen_Shaughnessy','','inherit','closed','closed','','img_2205-4','','','2021-08-01 22:21:06','2021-08-01 22:21:06','',0,'https://lantern-realty.com/img_2205-4/',0,'attachment','image/jpeg',0),(1921,6,'2021-06-11 15:36:13','2021-06-11 15:36:13','<div dir=\"ltr\">Good morning, we just learned that Dotloop has updated their interface with NCAR, who provides our documents.  Thanks for the heads up, Dotloop!<div><br></div><div>Anyway, when you sign in you should see some changes.  When you go to add documents to your loop you will see the changes.  Here is what you need to do to proceed.  </div><div><br></div><div>- When you are looking for documents, go to TEMPLATES.  </div><div>- Scroll to the bottom of the folder list and click on NORTH CAROLINA REALTORS INTERACTIVE DOCUMENTS folder.</div><div>- This will prompt you for your NRDS #.  </div><div>- Make sure you agree to terms</div><div>- You have to REFRESH your page (whether you log in and log out)</div><div><br></div><div>Once you do this your documents should appear.  </div><div><br></div><div>You will have to do this for each one of your profiles if you have multiple profiles.  </div><div><br></div><div>Have a great weekend!</div><div><br clear=\"all\"><div><br></div>','DOTLOOP Updates','','publish','closed','open','','dotloop-updates','','','2021-06-11 15:36:13','2021-06-11 15:36:13','',0,'https://lantern-realty.com/?p=1921',0,'post','',0),(1922,9,'2021-06-11 16:55:59','2021-06-11 16:55:59','<div dir=\"ltr\">We have a great opportunity coming up on Tuesday, June 15 at 11 a.m.- 12 p.m.  You can join us in person at the Kannapolis office or via Zoom.  Every agent wants to know how to get more business and increase your sales production.  Our very own Terry Whitesell and Cece Kellogg with Fairway Mortgage will be hosting a free seminar for both new and veteran Lantern Realty agents that you won&#39;t want to miss.  Let&#39;s show Terry our support and come and see what they have to offer, it may be just what you were looking for.  I have attached a couple of the flyers they sent on the Pathway to Mastery. Below is the Zoom link provided by Cece Kellogg for those that won&#39;t be able to attend in person........<div><br></div><div>Join Zoom Meeting<br><a href=\"https://fairwaymc.zoom.us/j/99651246820?pwd=dStIZUd1ZEVRSlJmSkFXS1pEUU5IZz09\" rel=\"noreferrer noopener\" target=\"_blank\">https://fairwaymc.zoom.us/j/99651246820?pwd=dStIZUd1ZEVRSlJmSkFXS1pEUU5IZz09</a><br><br>Meeting ID: 996 5124 6820<br>Passcode: 211452<br>One tap mobile<br>+13126266799,,99651246820# US (Chicago)<br>+13462487799,,99651246820# US (Houston)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 346 248 7799 US (Houston)<br>        +1 646 558 8656 US (New York)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 301 715 8592 US (Washington DC)<br>Meeting ID: 996 5124 6820<br>Find your local number: <a href=\"https://fairwaymc.zoom.us/u/aBAtuwnX2\" rel=\"noreferrer noopener\" target=\"_blank\">https://fairwaymc.zoom.us/u/aBAtuwnX2</a></div><div><br></div><div><br><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/06/Buffini-Flyer.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> Buffini-Flyer.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/06/Buffini-Flyer-2.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> Buffini-Flyer-2.pdf</a><br /></div>','Sales Production Class with Fairway Mortgage - Tuesday June 15 @ 11 a.m.','','publish','closed','open','','sales-production-class-with-fairway-mortgage-tuesday-june-15-11-a-m','','','2021-06-11 16:55:59','2021-06-11 16:55:59','',0,'https://lantern-realty.com/?p=1922',0,'post','',0),(1923,9,'2021-06-11 16:55:59','2021-06-11 16:55:59','','Buffini-Flyer.pdf','','inherit','closed','closed','','buffini-flyer','','','2021-06-11 16:55:59','2021-06-11 16:55:59','',1922,'https://lantern-realty.com/wp-content/uploads/2021/06/Buffini-Flyer.pdf',0,'attachment','application/pdf',0),(1924,9,'2021-06-11 16:55:59','2021-06-11 16:55:59','','Buffini-Flyer-2.pdf','','inherit','closed','closed','','buffini-flyer-2','','','2021-06-11 16:55:59','2021-06-11 16:55:59','',1922,'https://lantern-realty.com/wp-content/uploads/2021/06/Buffini-Flyer-2.pdf',0,'attachment','application/pdf',0),(1925,9,'2021-06-14 16:06:10','2021-06-14 16:06:10','<div dir=\"ltr\">Just a reminder for tomorrow&#39;s sales production class from Fairway Mortgage.  If you plan to show up in person instead of Zoom, please let me know so we can get a head count.  If you already RSVP&#39;d on FB, you do not have to respond to this email.<div><br></div><div>Thank you all and have a great day!</div><div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Fri, Jun 11, 2021 at 12:49 PM Melissa Jackling &lt;<a href=\"mailto:onlymyrealtormelissa@gmail.com\"><a href=\"mailto:onlymyrealtormelissa@gmail.com\" >onlymyrealtormelissa@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">We have a great opportunity coming up on Tuesday, June 15 at 11 a.m.- 12 p.m.  You can join us in person at the Kannapolis office or via Zoom.  Every agent wants to know how to get more business and increase your sales production.  Our very own Terry Whitesell and Cece Kellogg with Fairway Mortgage will be hosting a free seminar for both new and veteran Lantern Realty agents that you won&#39;t want to miss.  Let&#39;s show Terry our support and come and see what they have to offer, it may be just what you were looking for.  I have attached a couple of the flyers they sent on the Pathway to Mastery. Below is the Zoom link provided by Cece Kellogg for those that won&#39;t be able to attend in person........<div><br></div><div>Join Zoom Meeting<br><a href=\"https://fairwaymc.zoom.us/j/99651246820?pwd=dStIZUd1ZEVRSlJmSkFXS1pEUU5IZz09\" rel=\"noreferrer noopener\" target=\"_blank\">https://fairwaymc.zoom.us/j/99651246820?pwd=dStIZUd1ZEVRSlJmSkFXS1pEUU5IZz09</a><br><br>Meeting ID: 996 5124 6820<br>Passcode: 211452<br>One tap mobile<br>+13126266799,,99651246820# US (Chicago)<br>+13462487799,,99651246820# US (Houston)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 346 248 7799 US (Houston)<br>        +1 646 558 8656 US (New York)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 301 715 8592 US (Washington DC)<br>Meeting ID: 996 5124 6820<br>Find your local number: <a href=\"https://fairwaymc.zoom.us/u/aBAtuwnX2\" rel=\"noreferrer noopener\" target=\"_blank\">https://fairwaymc.zoom.us/u/aBAtuwnX2</a></div><div><br></div><div><br><div><br></div>','Sales Production Class with Fairway Mortgage - Tuesday June 15 @ 11 a.m.','','publish','closed','open','','sales-production-class-with-fairway-mortgage-tuesday-june-15-11-a-m-2','','','2021-06-14 16:06:10','2021-06-14 16:06:10','',0,'https://lantern-realty.com/?p=1925',0,'post','',0),(1926,6,'2021-06-15 12:35:56','2021-06-15 12:35:56','<div dir=\"ltr\">Good Morning Folks,  below are the resources you will need to begin utilizing Ribbon.  I&#39;ve also included the reps contact info at the bottom. <div><br></div><div><div style=\"color:rgb(0,0,0)\"><strong>Getting Started:</strong><br>1. Create your Ribbon Agent account <span style=\"color:rgb(17,85,204)\"><a href=\"https://t.sidekickopen87.com/s3t/c/5/f18dQhb0S7kF8cpm_PVy0sXc59hl3kW7_k2841CXdp3MPx3-Nsgx69N2dykcHdbysc101?te=W3R5hFj4cm2zwW3zfPSj49M7TFW43TCfX3_SGVJW43T4NQ3P0vvjW4cgBC949M8cLW3K2VhQ3P0vvjW1GHDvr41Y-N9W3T1jVZ4cQj01W3vkwSb3zhs7SW41Y6l14kCJ24W2dN2_m1X1VpfW1S1nmr1N6P1v34fk2&amp;si=8000000002720571&amp;pi=30712404-8644-401e-8827-881129378632\" target=\"_blank\" rel=\"noopener\">HERE</a></span> (Access your Ribbon Advisor)<br>2. Add your Buyer<br>3. Upload your clients Approval Letter<br>4. Add the property Address to obtain Ribbon&#39;s Valuation<br>5. Write your Offer</div><div style=\"color:rgb(0,0,0)\">** Your dedicated Ribbon advisor is there to support you the entire way**</div><br style=\"color:rgb(0,0,0)\"><div style=\"color:rgb(0,0,0)\"><strong>Learning More &amp; Resources<br></strong></div><div style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(17,85,204)\"><a href=\"https://t.sidekickopen87.com/s3t/c/5/f18dQhb0S7kF8cpm_PVy0sXc59hl3kW7_k2841CXdp3MPx3-Nsgx69N2dykcHdbysc101?te=W3R5hFj4cm2zwW4mKLS-49M7TFW43TCfX3_SGVJW43T4NY43YflNW4fdjf149N0hwW49M7TF43TBQZW4cKbf93M2lH22273&amp;si=8000000002720571&amp;pi=30712404-8644-401e-8827-881129378632\" target=\"_blank\" rel=\"noopener\">How It Works</a></span></div><div style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(17,85,204)\"><a href=\"https://t.sidekickopen87.com/s3t/c/5/f18dQhb0S7kF8cpm_PVy0sXc59hl3kW7_k2841CXdp3MPx3-Nsgx69N2dykcHdbysc101?te=W3R5hFj4cm2zwW4mKLS-49M7TFW43TCfX3_SGVJF43T4NWW2xX1&amp;si=8000000002720571&amp;pi=30712404-8644-401e-8827-881129378632\" target=\"_blank\" rel=\"noopener\">FAQ&#39;s</a></span></div><div style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(17,85,204)\"><a href=\"https://t.sidekickopen87.com/s3t/c/5/f18dQhb0S7kF8cpm_PVy0sXc59hl3kW7_k2841CXdp3MPx3-Nsgx69N2dykcHdbysc101?te=W3R5hFj4cm2zwW4mKLS-49M7TFW43TCfX3_SGVJW43T4P449M7Zw394l2&amp;si=8000000002720571&amp;pi=30712404-8644-401e-8827-881129378632\" target=\"_blank\" rel=\"noopener\">Pricing</a></span></div><div style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(17,85,204)\"><a href=\"https://t.sidekickopen87.com/s3t/c/5/f18dQhb0S7kF8cpm_PVy0sXc59hl3kW7_k2841CXdp3MPx3-Nsgx69N2dykcHdbysc101?te=W3R5hFj4cm2zwW3R5HxG1JCh31W2FrrR23djSL20&amp;si=8000000002720571&amp;pi=30712404-8644-401e-8827-881129378632\" target=\"_blank\" rel=\"noopener\">Ribbon Overview</a></span></div><a href=\"https://t.sidekickopen87.com/s3t/c/5/f18dQhb0S7kF8cpm_PVy0sXc59hl3kW7_k2841CXdp3MPx3-Nsgx69N2dykcHdbysc101?te=W3R5hFj4cm2zwW4mKLS-49M7TFW43TCfX3_SGVJW43T4P03K1LYgF1LvcNZW2Qn1&amp;si=8000000002720571&amp;pi=30712404-8644-401e-8827-881129378632\" target=\"_blank\" rel=\"noopener\">Agent Dashboard Videos</a></div><div><br></div><div><span style=\"color:rgb(0,0,0);font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:14px;white-space:pre-wrap;outline:none;font-weight:bold\">Ryan Lantz</span><span style=\"color:rgb(0,0,0);font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:14px;white-space:pre-wrap;outline:none\"> Business Development Lead  Email: </span><a href=\"mailto:Ryan@ribbonhome.com\" target=\"_blank\" rel=\"noopener\"><a href=\"mailto:Ryan@ribbonhome.com\" >Ryan@ribbonhome.com</a></a><br clear=\"all\"><div><br></div>','Ribbon Agent dashboard info','','publish','closed','open','','ribbon-agent-dashboard-info','','','2021-06-15 12:35:56','2021-06-15 12:35:56','',0,'https://lantern-realty.com/?p=1926',0,'post','',0),(1962,6,'2021-07-05 12:16:55','2021-07-05 12:16:55','<div dir=\"ltr\">Good Morning, here are a few notes to start your week....<div><br></div><div>- The 2021/2022 NCAR Forms Update class on Wednesday at 3pm will be ZOOM ONLY.  Due to construction at the Kannapolis office, hosting live classes will be on hold for a few days.  </div><div>  Fortunately, Nic Lovelace has agreed to host the Forms Update live class for us in a few weeks.  More details to come!</div><div>- While we are all looking for inventory to sell, GOOD NEWS! DR Horton has a lot of inventory in the Charlotte area.  I have copied Jamey Slawter, DR Horton New Home Consultant in this email if you have questions.  His phone is 704.425.0482. </div><div>  DR Horton has a ton of developments going up in this area, so keep new construction in mind as we search for the right home for our clients.  Also, DR Horton pays 3% to real estate agents!</div><div>- We will have a Team meeting next Wednesday 7/14 at the Kannapolis office.  Terry Whitesell will be hosting a class on Different Loan Types.  This will be from 11-12. </div><div>- Prior to the Team Meeting on 7/14, Amanda COdy will be hosting a Broker Q&amp;A from 10-11 at the Kannapolis office.  If you want to learn from one of the highest producing agents in our company and in our local Realtor Association, make sure to be here!<br clear=\"all\"><div>- Lastly, Jenna Black &amp; Liz Hallman will be holding a meeting tomorrow morning, Tuesday 7/6 @ 935am.  We will be meeting at the Cannon Baller stadium in our Suite!  This meeting is going to be a Strategy, Marketing ideas and overall support meeting for agents of all types.  What a brilliant idea to help reinvigorate your business, gain some ideas that have worked for others and share ideas that have worked for you.  Make sure to enter into the stadium at Gate #1 (directly across from our Kannapolis office) and I&#39;ll be there to direct you where to go.  This should be fun!!!</div><div><br></div><div>If you have any questions or comments for Paula, Deana or myself please reach out to us.   </div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2021-Educational-Calendar.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/Charlotte-hotsheet-7.1.211-1.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> Charlotte-hotsheet-7.1.211-1.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/LRD-Roster_070421.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_070421.xlsx</a><br /></div>','Lantern - News &amp; Notes','','publish','closed','open','','lantern-news-notes-7','','','2021-07-05 12:16:55','2021-07-05 12:16:55','',0,'https://lantern-realty.com/?p=1962',0,'post','',0),(1929,1,'2021-06-24 11:40:13','2021-06-24 11:40:13','','Ryan Ivory','','publish','closed','closed','','ryan-ivory','','','2021-06-24 11:40:13','2021-06-24 11:40:13','',0,'https://lantern-realty.com/?post_type=houzez_partner&#038;p=1929',0,'houzez_partner','',0),(1930,1,'2021-06-24 11:39:17','2021-06-24 11:39:17','','Ryan Ivory_ARC_Home','','inherit','','closed','','ryan-ivory_arc_home','','','2021-06-24 11:39:17','2021-06-24 11:39:17','',1929,'https://lantern-realty.com/wp-content/uploads/2021/06/Ryan-Ivory_ARC_Home.jpg',0,'attachment','image/jpeg',0),(1931,1,'2021-06-24 11:40:13','2021-06-24 11:40:13','','Ryan Ivory','','inherit','closed','closed','','1929-revision-v1','','','2021-06-24 11:40:13','2021-06-24 11:40:13','',1929,'https://lantern-realty.com/?p=1931',0,'revision','',0),(1932,1,'2021-06-24 11:43:11','2021-06-24 11:43:11','<p>[vc_section full_width=\"stretch_row\" full_height=\"yes\" content_placement=\"middle\" css_animation=\"fadeIn\" css=\".vc_custom_1535990071877{padding-top: 10% !important;background-image: url(https://lantern-realty.com/wp-content/uploads/2018/08/Lantern_OpenHouse.png?id=56) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row css=\".vc_custom_1534901322962{margin-bottom: 250px !important;padding-right: 20px !important;padding-left: 20px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1534901068460{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 20px !important;padding-left: 20px !important;background-color: rgba(255,255,255,0.76) !important;*background-color: rgb(255,255,255) !important;}\"]</p>\n<h1>Property Search</h1>\n<p>[optima_express_quick_search style=\"twoline\" showPropertyType=\"false\"][/vc_column_text][/vc_column][/vc_row][/vc_section][vc_row content_placement=\"middle\" css=\".vc_custom_1535223457405{padding-top: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"top\" disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_btn title=\"Buy\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fhomes-for-sale-search%2F|title:Home%20Search||\"][vc_column_text css_animation=\"fadeIn\"]Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\'re one click away from discovering your next home![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Sell\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fvaluation-form%2F|title:Sell%20My%20Home||\"][vc_column_text css_animation=\"fadeIn\"]Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it\'s worth. Let us speak with you about selling your property and you\'ll learn why our previous clients love us. Click here to submit a home valuation request.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Contact\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:tel%3A9808582074|title:Call%20Lantern||\"][vc_column_text css_animation=\"fadeIn\"]Looking to speak with an agent now? Click here to contact an agent. We\'re available around the clock to provide you with the very best professional real estate representation.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner][text_with_icons columns=\"three_columns\" style=\"style_one\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-search\" title=\"Buy\" text=\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!\" read_more_text=\"Search Homes\" read_more_link=\"https://lantern-realty.com/homes-for-sale-search/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-home\" title=\"Sell\" text=\"Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.\" read_more_text=\"Submit a Valuation Request\" read_more_link=\"https://lantern-realty.com/valuation-form/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-phone\" title=\"Contact\" text=\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\" read_more_text=\"Contact an Agent\" read_more_link=\"tel:9808582074\"][/text_with_icons][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\"][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Listings</h1>\n<p>[optima_express_gallery_slider height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"pd\" maxResults=\"25\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<h1>Listed this Week</h1>\n<p>[optima_express_gallery_slider id=\"813462\" height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"ds\" maxResults=\"25\"][/vc_column_text][houzez-agents agents_type=\"Carousel\" agent_category=\"front-page\" agent_city=\"\" custom_title=\"Lantern Agents\" custom_subtitle=\"\" columns=\"3\" posts_limit=\"15\" offset=\"\" orderby=\"rand\" order=\"ASC\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\">See what clients are saying about Lantern Agents</h1>\n<p>[/vc_column_text][vc_single_image image=\"276\" img_size=\"medium\" alignment=\"center\" css_animation=\"bounceInLeft\"][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItbGlrZSUyMiUyMHN0eWxlJTNEJTIyYWxpZ24tY29udGVudCUzQSUyMGNlbnRlciUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLWxheW91dCUzRCUyMnN0YW5kYXJkJTIyJTIwZGF0YS1hY3Rpb24lM0QlMjJyZWNvbW1lbmQlMjIlMjBkYXRhLXNpemUlM0QlMjJzbWFsbCUyMiUyMGRhdGEtc2hvdy1mYWNlcyUzRCUyMmZhbHNlJTIyJTIwZGF0YS1zaGFyZSUzRCUyMmZhbHNlJTIyJTNFJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column_inner][vc_column_inner width=\"3/4\"][houzez-testimonials testimonials_type=\"slides\" posts_limit=\"10\" offset=\"\" orderby=\"rand\" order=\"ASC\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Find Homes for Sale in these Communities</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Kannapolis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DKannapolis%26propertyType%3DSFR%26status%3Dactive|title:Kannapolis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Concord\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DConcord%26propertyType%3DSFR%26status%3Dactive|title:Concord||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Landis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DLandis%26propertyType%3DSFR%26status%3Dactive|title:Landis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"China Grove\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DChina%20Grove%26propertyType%3DSFR%26status%3Dactive|title:China%20Grove||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Salisbury\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DSalisbury%26propertyType%3DSFR%26status%3Dactive|title:Salisbury||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Rockwell\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DRockwell%26propertyType%3DSFR%26status%3Dactive|title:Rockwell||\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Charlotte\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCharlotte%26propertyType%3DSFR%26status%3Dactive|title:Charlotte||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Huntersville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DHuntersville%26propertyType%3DSFR%26status%3Dactive|title:Huntersville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Cornelius\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCornelius%26propertyType%3DSFR%26status%3Dactive|title:Cornelius||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mooresville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMooresville%26propertyType%3DSFR%26status%3Dactive|title:Mooresville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mount Pleasant\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMount%20Pleasant%26propertyType%3DSFR%26status%3Dactive|title:Mount%20Pleasant||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Gold Hill\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DGold%20Hill%26propertyType%3DSFR%26status%3Dactive|title:Gold%20Hill||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner][hz-section-title hz_section_title=\"Follow Lantern on Facebook\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][/vc_column_inner][/vc_row_inner][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItcGFnZSUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLXRhYnMlM0QlMjJ0aW1lbGluZSUyMiUyMGRhdGEtd2lkdGglM0QlMjI1MDAlMjIlMjBkYXRhLWhlaWdodCUzRCUyMjEwMDAlMjIlMjBkYXRhLXNtYWxsLWhlYWRlciUzRCUyMnRydWUlMjIlMjBkYXRhLWFkYXB0LWNvbnRhaW5lci13aWR0aCUzRCUyMnRydWUlMjIlMjBkYXRhLWhpZGUtY292ZXIlM0QlMjJmYWxzZSUyMiUyMGRhdGEtc2hvdy1mYWNlcGlsZSUzRCUyMnRydWUlMjIlM0UlM0NibG9ja3F1b3RlJTIwY2l0ZSUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBjbGFzcyUzRCUyMmZiLXhmYm1sLXBhcnNlLWlnbm9yZSUyMiUzRSUzQ2ElMjBocmVmJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZmFjZWJvb2suY29tJTJGbGFudGVybnJlYWx0eSUyMiUzRUxhbnRlcm4lMjBSZWFsdHklMjAlMjZhbXAlM0IlMjBEZXZlbG9wbWVudCUyQyUyMExMQyUzQyUyRmElM0UlM0MlMkZibG9ja3F1b3RlJTNFJTNDJTJGZGl2JTNFJTBBJTBBJTBBJTNDJTIxLS0lMjBMb2FkJTIwRmFjZWJvb2slMjBTREslMjBmb3IlMjBKYXZhU2NyaXB0JTIwLS0lM0UlMEElM0NkaXYlMjBpZCUzRCUyMmZiLXJvb3QlMjIlM0UlM0MlMkZkaXYlM0UlMEElM0NzY3JpcHQlM0UlMjhmdW5jdGlvbiUyOGQlMkMlMjBzJTJDJTIwaWQlMjklMjAlN0IlMEElMjAlMjB2YXIlMjBqcyUyQyUyMGZqcyUyMCUzRCUyMGQuZ2V0RWxlbWVudHNCeVRhZ05hbWUlMjhzJTI5JTVCMCU1RCUzQiUwQSUyMCUyMGlmJTIwJTI4ZC5nZXRFbGVtZW50QnlJZCUyOGlkJTI5JTI5JTIwcmV0dXJuJTNCJTBBJTIwJTIwanMlMjAlM0QlMjBkLmNyZWF0ZUVsZW1lbnQlMjhzJTI5JTNCJTIwanMuaWQlMjAlM0QlMjBpZCUzQiUwQSUyMCUyMGpzLnNyYyUyMCUzRCUyMCUyN2h0dHBzJTNBJTJGJTJGY29ubmVjdC5mYWNlYm9vay5uZXQlMkZlbl9VUyUyRnNkayUyRnhmYm1sLmN1c3RvbWVyY2hhdC5qcyUyM3hmYm1sJTNEMSUyNnZlcnNpb24lM0R2Mi4xMiUyNmF1dG9Mb2dBcHBFdmVudHMlM0QxJTI3JTNCJTBBJTIwJTIwZmpzLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlJTI4anMlMkMlMjBmanMlMjklM0IlMEElN0QlMjhkb2N1bWVudCUyQyUyMCUyN3NjcmlwdCUyNyUyQyUyMCUyN2ZhY2Vib29rLWpzc2RrJTI3JTI5JTI5JTNCJTNDJTJGc2NyaXB0JTNFJTBBJTBBJTNDJTIxLS0lMjBZb3VyJTIwY3VzdG9tZXIlMjBjaGF0JTIwY29kZSUyMC0tJTNFJTBBJTNDZGl2JTIwY2xhc3MlM0QlMjJmYi1jdXN0b21lcmNoYXQlMjIlMEElMjAlMjBhdHRyaWJ1dGlvbiUzRHNldHVwX3Rvb2wlMEElMjAlMjBwYWdlX2lkJTNEJTIyMTgyMTczMTk1OTU1NjUzJTIyJTBBJTIwJTIwbG9nZ2VkX2luX2dyZWV0aW5nJTNEJTIySGklMjElMjBXb3VsZCUyMHlvdSUyMGxpa2UlMjB0byUyMGNvbm5lY3QlMjB3aXRoJTIwYSUyMExhbnRlcm4lMjBBZ2VudCUyMG5vdyUzRiUyMiUwQSUyMCUyMGxvZ2dlZF9vdXRfZ3JlZXRpbmclM0QlMjJIaSUyMSUyMFdvdWxkJTIweW91JTIwbGlrZSUyMHRvJTIwY29ubmVjdCUyMHdpdGglMjBhJTIwTGFudGVybiUyMEFnZW50JTIwbm93JTNGJTIyJTNFJTBBJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column][vc_column width=\"1/2\"][hz-section-title hz_section_title=\"Kannapolis Community News\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][vc_wp_rss items=\"7\" options=\"show_summary,show_date\" url=\"http://www.kannapolisnc.gov/Community/News\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Partners</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://www.hwahomewarranty.com/\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"1442\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://geico.widen.net/s/wteghfnoeo\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"1930\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://ryanivory.excellencebyarc.com/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n','Lantern Realty and Development - Home','','inherit','closed','closed','','2-revision-v1','','','2021-06-24 11:43:11','2021-06-24 11:43:11','',2,'https://lantern-realty.com/?p=1932',0,'revision','',0),(1933,1,'2021-06-24 11:45:49','2021-06-24 11:45:49','','Arc-WebBanner-Ryan_Ivory','','inherit','','closed','','arc-webbanner-ryan_ivory','','','2021-06-24 11:45:49','2021-06-24 11:45:49','',508,'https://lantern-realty.com/wp-content/uploads/2021/06/Arc-WebBanner-Ryan_Ivory.mp4',0,'attachment','video/mp4',0),(1934,1,'2021-06-24 11:47:15','2021-06-24 11:47:15','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"1933\" img_size=\"medium\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://ryanivory.excellencebyarc.com/\" title=\"Mortgage Lender\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" title=\"Mortgage Lender\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" title=\"Home Warranty\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" title=\"Real Estate Law\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h3><a href=\"https://geico.widen.net/s/wteghfnoeo\" target=\"_blank\" rel=\"noopener noreferrer\">Matthew Young - GEICO Insurance</a></h3>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-514 size-medium\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young-300x252.png\" alt=\"\" width=\"300\" height=\"252\" /></a></p>\n<p>Matthew Young, originally from Salisbury, has been in the insurance industry since 2001. Matthew’s dedication to the industry is embodied by the numerous affiliate awards from the Realtor Associations with which he partners.<br />\nOffering the services of an insurance broker with many carriers while backed by a national brand, Matthew can provide policies for virtually any residential property transactions in North Carolina, South Carolina, or Virginia.<br />\nExceptional service is the hallmark of his team, evidenced by agents being available every day until 10:00 pm. He is happy to help with any questions or solutions needed to make the real estate transaction as smooth as possible. He is married with two young sons. His hobbies include fishing, hiking, and anything outdoors.</p>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-515 size-full\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" alt=\"\" width=\"120\" height=\"29\" /></a>[/vc_column_text][/vc_column][/vc_row]</p>\n','Lantern Partners','','inherit','closed','closed','','508-revision-v1','','','2021-06-24 11:47:15','2021-06-24 11:47:15','',508,'https://lantern-realty.com/?p=1934',0,'revision','',0),(1935,1,'2021-06-24 11:50:40','2021-06-24 11:50:40','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"1930\" img_size=\"medium\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://ryanivory.excellencebyarc.com/\" title=\"Mortgage Lender\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" title=\"Mortgage Lender\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" title=\"Home Warranty\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" title=\"Real Estate Law\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h3><a href=\"https://geico.widen.net/s/wteghfnoeo\" target=\"_blank\" rel=\"noopener noreferrer\">Matthew Young - GEICO Insurance</a></h3>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-514 size-medium\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young-300x252.png\" alt=\"\" width=\"300\" height=\"252\" /></a></p>\n<p>Matthew Young, originally from Salisbury, has been in the insurance industry since 2001. Matthew’s dedication to the industry is embodied by the numerous affiliate awards from the Realtor Associations with which he partners.<br />\nOffering the services of an insurance broker with many carriers while backed by a national brand, Matthew can provide policies for virtually any residential property transactions in North Carolina, South Carolina, or Virginia.<br />\nExceptional service is the hallmark of his team, evidenced by agents being available every day until 10:00 pm. He is happy to help with any questions or solutions needed to make the real estate transaction as smooth as possible. He is married with two young sons. His hobbies include fishing, hiking, and anything outdoors.</p>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-515 size-full\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" alt=\"\" width=\"120\" height=\"29\" /></a>[/vc_column_text][/vc_column][/vc_row]</p>\n','Lantern Partners','','inherit','closed','closed','','508-revision-v1','','','2021-06-24 11:50:40','2021-06-24 11:50:40','',508,'https://lantern-realty.com/?p=1935',0,'revision','',0),(1936,1,'2021-06-24 11:58:11','2021-06-24 11:58:11','<p>[vc_section full_width=\"stretch_row\" full_height=\"yes\" content_placement=\"middle\" css_animation=\"fadeIn\" css=\".vc_custom_1535990071877{padding-top: 10% !important;background-image: url(https://lantern-realty.com/wp-content/uploads/2018/08/Lantern_OpenHouse.png?id=56) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row css=\".vc_custom_1534901322962{margin-bottom: 250px !important;padding-right: 20px !important;padding-left: 20px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1534901068460{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 20px !important;padding-left: 20px !important;background-color: rgba(255,255,255,0.76) !important;*background-color: rgb(255,255,255) !important;}\"]</p>\n<h1>Property Search</h1>\n<p>[optima_express_quick_search style=\"twoline\" showPropertyType=\"false\"][/vc_column_text][/vc_column][/vc_row][/vc_section][vc_row content_placement=\"middle\" css=\".vc_custom_1535223457405{padding-top: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"top\" disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_btn title=\"Buy\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fhomes-for-sale-search%2F|title:Home%20Search||\"][vc_column_text css_animation=\"fadeIn\"]Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\'re one click away from discovering your next home![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Sell\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fvaluation-form%2F|title:Sell%20My%20Home||\"][vc_column_text css_animation=\"fadeIn\"]Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it\'s worth. Let us speak with you about selling your property and you\'ll learn why our previous clients love us. Click here to submit a home valuation request.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Contact\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:tel%3A9808582074|title:Call%20Lantern||\"][vc_column_text css_animation=\"fadeIn\"]Looking to speak with an agent now? Click here to contact an agent. We\'re available around the clock to provide you with the very best professional real estate representation.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner][text_with_icons columns=\"three_columns\" style=\"style_one\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-search\" title=\"Buy\" text=\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!\" read_more_text=\"Search Homes\" read_more_link=\"https://lantern-realty.com/homes-for-sale-search/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-home\" title=\"Sell\" text=\"Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.\" read_more_text=\"Submit a Valuation Request\" read_more_link=\"https://lantern-realty.com/valuation-form/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-phone\" title=\"Contact\" text=\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\" read_more_text=\"Contact an Agent\" read_more_link=\"tel:9808582074\"][/text_with_icons][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\"][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Listings</h1>\n<p>[optima_express_gallery_slider height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"pd\" maxResults=\"25\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<h1>Listed this Week</h1>\n<p>[optima_express_gallery_slider id=\"813462\" height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"ds\" maxResults=\"25\"][/vc_column_text][houzez-agents agents_type=\"Carousel\" agent_category=\"front-page\" agent_city=\"\" custom_title=\"Lantern Agents\" custom_subtitle=\"\" columns=\"3\" posts_limit=\"15\" offset=\"\" orderby=\"rand\" order=\"ASC\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\">See what clients are saying about Lantern Agents</h1>\n<p>[/vc_column_text][vc_single_image image=\"276\" img_size=\"medium\" alignment=\"center\" css_animation=\"bounceInLeft\"][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItbGlrZSUyMiUyMHN0eWxlJTNEJTIyYWxpZ24tY29udGVudCUzQSUyMGNlbnRlciUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLWxheW91dCUzRCUyMnN0YW5kYXJkJTIyJTIwZGF0YS1hY3Rpb24lM0QlMjJyZWNvbW1lbmQlMjIlMjBkYXRhLXNpemUlM0QlMjJzbWFsbCUyMiUyMGRhdGEtc2hvdy1mYWNlcyUzRCUyMmZhbHNlJTIyJTIwZGF0YS1zaGFyZSUzRCUyMmZhbHNlJTIyJTNFJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column_inner][vc_column_inner width=\"3/4\"][houzez-testimonials testimonials_type=\"slides\" posts_limit=\"10\" offset=\"\" orderby=\"rand\" order=\"ASC\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Find Homes for Sale in these Communities</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Kannapolis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DKannapolis%26propertyType%3DSFR%26status%3Dactive|title:Kannapolis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Concord\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DConcord%26propertyType%3DSFR%26status%3Dactive|title:Concord||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Landis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DLandis%26propertyType%3DSFR%26status%3Dactive|title:Landis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"China Grove\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DChina%20Grove%26propertyType%3DSFR%26status%3Dactive|title:China%20Grove||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Salisbury\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DSalisbury%26propertyType%3DSFR%26status%3Dactive|title:Salisbury||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Rockwell\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DRockwell%26propertyType%3DSFR%26status%3Dactive|title:Rockwell||\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Charlotte\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCharlotte%26propertyType%3DSFR%26status%3Dactive|title:Charlotte||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Huntersville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DHuntersville%26propertyType%3DSFR%26status%3Dactive|title:Huntersville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Cornelius\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCornelius%26propertyType%3DSFR%26status%3Dactive|title:Cornelius||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mooresville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMooresville%26propertyType%3DSFR%26status%3Dactive|title:Mooresville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mount Pleasant\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMount%20Pleasant%26propertyType%3DSFR%26status%3Dactive|title:Mount%20Pleasant||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Gold Hill\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DGold%20Hill%26propertyType%3DSFR%26status%3Dactive|title:Gold%20Hill||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner][hz-section-title hz_section_title=\"Follow Lantern on Facebook\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][/vc_column_inner][/vc_row_inner][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItcGFnZSUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLXRhYnMlM0QlMjJ0aW1lbGluZSUyMiUyMGRhdGEtd2lkdGglM0QlMjI1MDAlMjIlMjBkYXRhLWhlaWdodCUzRCUyMjEwMDAlMjIlMjBkYXRhLXNtYWxsLWhlYWRlciUzRCUyMnRydWUlMjIlMjBkYXRhLWFkYXB0LWNvbnRhaW5lci13aWR0aCUzRCUyMnRydWUlMjIlMjBkYXRhLWhpZGUtY292ZXIlM0QlMjJmYWxzZSUyMiUyMGRhdGEtc2hvdy1mYWNlcGlsZSUzRCUyMnRydWUlMjIlM0UlM0NibG9ja3F1b3RlJTIwY2l0ZSUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBjbGFzcyUzRCUyMmZiLXhmYm1sLXBhcnNlLWlnbm9yZSUyMiUzRSUzQ2ElMjBocmVmJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZmFjZWJvb2suY29tJTJGbGFudGVybnJlYWx0eSUyMiUzRUxhbnRlcm4lMjBSZWFsdHklMjAlMjZhbXAlM0IlMjBEZXZlbG9wbWVudCUyQyUyMExMQyUzQyUyRmElM0UlM0MlMkZibG9ja3F1b3RlJTNFJTNDJTJGZGl2JTNFJTBBJTBBJTBBJTNDJTIxLS0lMjBMb2FkJTIwRmFjZWJvb2slMjBTREslMjBmb3IlMjBKYXZhU2NyaXB0JTIwLS0lM0UlMEElM0NkaXYlMjBpZCUzRCUyMmZiLXJvb3QlMjIlM0UlM0MlMkZkaXYlM0UlMEElM0NzY3JpcHQlM0UlMjhmdW5jdGlvbiUyOGQlMkMlMjBzJTJDJTIwaWQlMjklMjAlN0IlMEElMjAlMjB2YXIlMjBqcyUyQyUyMGZqcyUyMCUzRCUyMGQuZ2V0RWxlbWVudHNCeVRhZ05hbWUlMjhzJTI5JTVCMCU1RCUzQiUwQSUyMCUyMGlmJTIwJTI4ZC5nZXRFbGVtZW50QnlJZCUyOGlkJTI5JTI5JTIwcmV0dXJuJTNCJTBBJTIwJTIwanMlMjAlM0QlMjBkLmNyZWF0ZUVsZW1lbnQlMjhzJTI5JTNCJTIwanMuaWQlMjAlM0QlMjBpZCUzQiUwQSUyMCUyMGpzLnNyYyUyMCUzRCUyMCUyN2h0dHBzJTNBJTJGJTJGY29ubmVjdC5mYWNlYm9vay5uZXQlMkZlbl9VUyUyRnNkayUyRnhmYm1sLmN1c3RvbWVyY2hhdC5qcyUyM3hmYm1sJTNEMSUyNnZlcnNpb24lM0R2Mi4xMiUyNmF1dG9Mb2dBcHBFdmVudHMlM0QxJTI3JTNCJTBBJTIwJTIwZmpzLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlJTI4anMlMkMlMjBmanMlMjklM0IlMEElN0QlMjhkb2N1bWVudCUyQyUyMCUyN3NjcmlwdCUyNyUyQyUyMCUyN2ZhY2Vib29rLWpzc2RrJTI3JTI5JTI5JTNCJTNDJTJGc2NyaXB0JTNFJTBBJTBBJTNDJTIxLS0lMjBZb3VyJTIwY3VzdG9tZXIlMjBjaGF0JTIwY29kZSUyMC0tJTNFJTBBJTNDZGl2JTIwY2xhc3MlM0QlMjJmYi1jdXN0b21lcmNoYXQlMjIlMEElMjAlMjBhdHRyaWJ1dGlvbiUzRHNldHVwX3Rvb2wlMEElMjAlMjBwYWdlX2lkJTNEJTIyMTgyMTczMTk1OTU1NjUzJTIyJTBBJTIwJTIwbG9nZ2VkX2luX2dyZWV0aW5nJTNEJTIySGklMjElMjBXb3VsZCUyMHlvdSUyMGxpa2UlMjB0byUyMGNvbm5lY3QlMjB3aXRoJTIwYSUyMExhbnRlcm4lMjBBZ2VudCUyMG5vdyUzRiUyMiUwQSUyMCUyMGxvZ2dlZF9vdXRfZ3JlZXRpbmclM0QlMjJIaSUyMSUyMFdvdWxkJTIweW91JTIwbGlrZSUyMHRvJTIwY29ubmVjdCUyMHdpdGglMjBhJTIwTGFudGVybiUyMEFnZW50JTIwbm93JTNGJTIyJTNFJTBBJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column][vc_column width=\"1/2\"][hz-section-title hz_section_title=\"Kannapolis Community News\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][vc_wp_rss items=\"7\" options=\"show_summary,show_date\" url=\"http://www.kannapolisnc.gov/Community/News\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Partners</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://www.hwahomewarranty.com/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"1442\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://geico.widen.net/s/wteghfnoeo\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"http://www.terrywhitesell.com/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"1930\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://ryanivory.excellencebyarc.com/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n','Lantern Realty and Development - Home','','inherit','closed','closed','','2-revision-v1','','','2021-06-24 11:58:11','2021-06-24 11:58:11','',2,'https://lantern-realty.com/?p=1936',0,'revision','',0),(1937,0,'2021-06-25 02:44:27','2021-06-25 02:44:27','','Amber_Tsumas','','inherit','closed','closed','','headshot-3','','','2021-08-01 22:00:42','2021-08-01 22:00:42','',0,'https://lantern-realty.com/headshot-3/',0,'attachment','image/jpeg',0),(1938,0,'2021-06-28 15:16:26','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-06-28 15:16:26','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1938',0,'post','',0),(1939,6,'2021-07-01 15:36:40','2021-07-01 15:36:40','<div dir=\"ltr\">Its me again!  As you may have noticed, new docs for 2021 are now available in Dotloop.  I have attached new documents or docs that have changed to this email.  <div><br></div><div>These docs are available now in Dotloop.  I wanted to get them in front of you ASAP.  Remember, Nic Lovelace will be teaching a class next week on changes to the forms, I would HIGHLY recommend as many as possible attend.  Melissa will be sending out a Zoom invite closer to the date of the class.  We will also be meeting in person at the Kannapolis office if you prefer in person. <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2A4-T-FHA-VA-Financing-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 2A4-T-FHA-VA-Financing-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2A6-T-Loan-Assumption-Addendum-REV-7.2019-c.-7.2019-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 2A6-T-Loan-Assumption-Addendum-REV-7.2019-c.-7.2019-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2A7-T-Buyer-Possession-Before-Closing-Agreement-REV-7.2019c.-7.2019-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 2A7-T-Buyer-Possession-Before-Closing-Agreement-REV-7.2019c.-7.2019-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2A5-T-Seller-Financing-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 2A5-T-Seller-Financing-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2A3-T-New-Construction-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 2A3-T-New-Construction-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2A11-T-Additional-Provisions-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 2A11-T-Additional-Provisions-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2A8-T-Seller-Possession-After-Closing-Agreement-REV-7.2019c.-7.2019-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 2A8-T-Seller-Possession-After-Closing-Agreement-REV-7.2019c.-7.2019-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2A13-T-Vacation-Rental-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 2A13-T-Vacation-Rental-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/3-G-Guidelines-for-Completing-Additional-Signatures-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 3-G-Guidelines-for-Completing-Additional-Signatures-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/3-T-Additional-Signatures-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 3-T-Additional-Signatures-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2A14-T-Short-Sale-Addendum-REV-7.2015-c.-7.2019-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 2A14-T-Short-Sale-Addendum-REV-7.2015-c.-7.2019-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/310-T-Due-Diligence-Request-and-Agreement-REV-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 310-T-Due-Diligence-Request-and-Agreement-REV-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/310G-Guidelines-for-Completing-Due-Diligence-Request-and-Agreement-Form-REV-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 310G-Guidelines-for-Completing-Due-Diligence-Request-and-Agreement-Form-REV-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/340-T-Response-to-Buyers-Offer-REV-7.2019c.-7.2019-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 340-T-Response-to-Buyers-Offer-REV-7.2019c.-7.2019-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/581-T-Additional-Provisions-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 581-T-Additional-Provisions-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/587-T-Notice-of-Offer-Rejection-REV-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 587-T-Notice-of-Offer-Rejection-REV-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/583-T-Agreement-to-Amend-Contract-Notice-of-Assignment-REV-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 583-T-Agreement-to-Amend-Contract-Notice-of-Assignment-REV-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/588-T-Notice-of-Revocation-of-Offer-Adopted-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 588-T-Notice-of-Revocation-of-Offer-Adopted-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/586-T-Notice-of-Termination-of-Contract-REV-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 586-T-Notice-of-Termination-of-Contract-REV-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/580L-T-Agreement-for-Purchase-and-Sale-of-Land-Adopted-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 580L-T-Agreement-for-Purchase-and-Sale-of-Land-Adopted-7.2020-c.-7.2020-SAMPLE.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/MOG_rec425.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> MOG_rec425.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/corrected-580-T-Agreement-for-Purchase-and-Sale-of-Real-Property-REV-7.2020-c.-7.2020-SAMPLE.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> corrected-580-T-Agreement-for-Purchase-and-Sale-of-Real-Property-REV-7.2020-c.-7.2020-SAMPLE.pdf</a><br /></div>','New 2021/2022 docs from NCAR','','publish','closed','open','','new-2021-2022-docs-from-ncar','','','2021-07-01 15:36:40','2021-07-01 15:36:40','',0,'https://lantern-realty.com/?p=1939',0,'post','',0),(1940,6,'2021-07-01 15:36:29','2021-07-01 15:36:29','','2A4-T-FHA-VA-Financing-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf','','inherit','closed','closed','','2a4-t-fha-va-financing-addendum-rev-7-2019c-7-2019-sample','','','2021-07-01 15:36:29','2021-07-01 15:36:29','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/2A4-T-FHA-VA-Financing-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf',0,'attachment','application/pdf',0),(1941,6,'2021-07-01 15:36:29','2021-07-01 15:36:29','','2A6-T-Loan-Assumption-Addendum-REV-7.2019-c.-7.2019-SAMPLE.pdf','','inherit','closed','closed','','2a6-t-loan-assumption-addendum-rev-7-2019-c-7-2019-sample','','','2021-07-01 15:36:29','2021-07-01 15:36:29','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/2A6-T-Loan-Assumption-Addendum-REV-7.2019-c.-7.2019-SAMPLE.pdf',0,'attachment','application/pdf',0),(1942,6,'2021-07-01 15:36:31','2021-07-01 15:36:31','','2A7-T-Buyer-Possession-Before-Closing-Agreement-REV-7.2019c.-7.2019-SAMPLE.pdf','','inherit','closed','closed','','2a7-t-buyer-possession-before-closing-agreement-rev-7-2019c-7-2019-sample','','','2021-07-01 15:36:31','2021-07-01 15:36:31','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/2A7-T-Buyer-Possession-Before-Closing-Agreement-REV-7.2019c.-7.2019-SAMPLE.pdf',0,'attachment','application/pdf',0),(1943,6,'2021-07-01 15:36:31','2021-07-01 15:36:31','','2A5-T-Seller-Financing-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','2a5-t-seller-financing-addendum-rev-7-2020-c-7-2020-sample','','','2021-07-01 15:36:31','2021-07-01 15:36:31','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/2A5-T-Seller-Financing-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1944,6,'2021-07-01 15:36:31','2021-07-01 15:36:31','','2A3-T-New-Construction-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf','','inherit','closed','closed','','2a3-t-new-construction-addendum-rev-7-2019c-7-2019-sample','','','2021-07-01 15:36:31','2021-07-01 15:36:31','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/2A3-T-New-Construction-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf',0,'attachment','application/pdf',0),(1945,6,'2021-07-01 15:36:31','2021-07-01 15:36:31','','2A11-T-Additional-Provisions-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','2a11-t-additional-provisions-addendum-rev-7-2020-c-7-2020-sample','','','2021-07-01 15:36:31','2021-07-01 15:36:31','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/2A11-T-Additional-Provisions-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1946,6,'2021-07-01 15:36:31','2021-07-01 15:36:31','','2A8-T-Seller-Possession-After-Closing-Agreement-REV-7.2019c.-7.2019-SAMPLE.pdf','','inherit','closed','closed','','2a8-t-seller-possession-after-closing-agreement-rev-7-2019c-7-2019-sample','','','2021-07-01 15:36:31','2021-07-01 15:36:31','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/2A8-T-Seller-Possession-After-Closing-Agreement-REV-7.2019c.-7.2019-SAMPLE.pdf',0,'attachment','application/pdf',0),(1947,6,'2021-07-01 15:36:33','2021-07-01 15:36:33','','2A13-T-Vacation-Rental-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf','','inherit','closed','closed','','2a13-t-vacation-rental-addendum-rev-7-2019c-7-2019-sample','','','2021-07-01 15:36:33','2021-07-01 15:36:33','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/2A13-T-Vacation-Rental-Addendum-REV-7.2019c.-7.2019-SAMPLE.pdf',0,'attachment','application/pdf',0),(1948,6,'2021-07-01 15:36:33','2021-07-01 15:36:33','','3-G-Guidelines-for-Completing-Additional-Signatures-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','3-g-guidelines-for-completing-additional-signatures-addendum-rev-7-2020-c-7-2020-sample','','','2021-07-01 15:36:33','2021-07-01 15:36:33','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/3-G-Guidelines-for-Completing-Additional-Signatures-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1949,6,'2021-07-01 15:36:33','2021-07-01 15:36:33','','3-T-Additional-Signatures-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','3-t-additional-signatures-addendum-rev-7-2020-c-7-2020-sample','','','2021-07-01 15:36:33','2021-07-01 15:36:33','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/3-T-Additional-Signatures-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1950,6,'2021-07-01 15:36:33','2021-07-01 15:36:33','','2A14-T-Short-Sale-Addendum-REV-7.2015-c.-7.2019-SAMPLE.pdf','','inherit','closed','closed','','2a14-t-short-sale-addendum-rev-7-2015-c-7-2019-sample','','','2021-07-01 15:36:33','2021-07-01 15:36:33','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/2A14-T-Short-Sale-Addendum-REV-7.2015-c.-7.2019-SAMPLE.pdf',0,'attachment','application/pdf',0),(1951,6,'2021-07-01 15:36:33','2021-07-01 15:36:33','','310-T-Due-Diligence-Request-and-Agreement-REV-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','310-t-due-diligence-request-and-agreement-rev-7-2020-c-7-2020-sample','','','2021-07-01 15:36:33','2021-07-01 15:36:33','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/310-T-Due-Diligence-Request-and-Agreement-REV-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1952,6,'2021-07-01 15:36:36','2021-07-01 15:36:36','','310G-Guidelines-for-Completing-Due-Diligence-Request-and-Agreement-Form-REV-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','310g-guidelines-for-completing-due-diligence-request-and-agreement-form-rev-7-2020-c-7-2020-sample','','','2021-07-01 15:36:36','2021-07-01 15:36:36','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/310G-Guidelines-for-Completing-Due-Diligence-Request-and-Agreement-Form-REV-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1953,6,'2021-07-01 15:36:36','2021-07-01 15:36:36','','340-T-Response-to-Buyers-Offer-REV-7.2019c.-7.2019-SAMPLE.pdf','','inherit','closed','closed','','340-t-response-to-buyers-offer-rev-7-2019c-7-2019-sample','','','2021-07-01 15:36:36','2021-07-01 15:36:36','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/340-T-Response-to-Buyers-Offer-REV-7.2019c.-7.2019-SAMPLE.pdf',0,'attachment','application/pdf',0),(1954,6,'2021-07-01 15:36:36','2021-07-01 15:36:36','','581-T-Additional-Provisions-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','581-t-additional-provisions-addendum-rev-7-2020-c-7-2020-sample','','','2021-07-01 15:36:36','2021-07-01 15:36:36','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/581-T-Additional-Provisions-Addendum-REV-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1955,6,'2021-07-01 15:36:36','2021-07-01 15:36:36','','587-T-Notice-of-Offer-Rejection-REV-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','587-t-notice-of-offer-rejection-rev-7-2020-c-7-2020-sample','','','2021-07-01 15:36:36','2021-07-01 15:36:36','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/587-T-Notice-of-Offer-Rejection-REV-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1956,6,'2021-07-01 15:36:36','2021-07-01 15:36:36','','583-T-Agreement-to-Amend-Contract-Notice-of-Assignment-REV-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','583-t-agreement-to-amend-contract-notice-of-assignment-rev-7-2020-c-7-2020-sample','','','2021-07-01 15:36:36','2021-07-01 15:36:36','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/583-T-Agreement-to-Amend-Contract-Notice-of-Assignment-REV-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1957,6,'2021-07-01 15:36:38','2021-07-01 15:36:38','','588-T-Notice-of-Revocation-of-Offer-Adopted-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','588-t-notice-of-revocation-of-offer-adopted-7-2020-c-7-2020-sample','','','2021-07-01 15:36:38','2021-07-01 15:36:38','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/588-T-Notice-of-Revocation-of-Offer-Adopted-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1958,6,'2021-07-01 15:36:38','2021-07-01 15:36:38','','586-T-Notice-of-Termination-of-Contract-REV-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','586-t-notice-of-termination-of-contract-rev-7-2020-c-7-2020-sample','','','2021-07-01 15:36:38','2021-07-01 15:36:38','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/586-T-Notice-of-Termination-of-Contract-REV-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1959,6,'2021-07-01 15:36:38','2021-07-01 15:36:38','','580L-T-Agreement-for-Purchase-and-Sale-of-Land-Adopted-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','580l-t-agreement-for-purchase-and-sale-of-land-adopted-7-2020-c-7-2020-sample','','','2021-07-01 15:36:38','2021-07-01 15:36:38','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/580L-T-Agreement-for-Purchase-and-Sale-of-Land-Adopted-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1960,6,'2021-07-01 15:36:38','2021-07-01 15:36:38','','MOG_rec425.pdf','','inherit','closed','closed','','mog_rec425','','','2021-07-01 15:36:38','2021-07-01 15:36:38','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/MOG_rec425.pdf',0,'attachment','application/pdf',0),(1961,6,'2021-07-01 15:36:40','2021-07-01 15:36:40','','corrected-580-T-Agreement-for-Purchase-and-Sale-of-Real-Property-REV-7.2020-c.-7.2020-SAMPLE.pdf','','inherit','closed','closed','','corrected-580-t-agreement-for-purchase-and-sale-of-real-property-rev-7-2020-c-7-2020-sample','','','2021-07-01 15:36:40','2021-07-01 15:36:40','',1939,'https://lantern-realty.com/wp-content/uploads/2021/07/corrected-580-T-Agreement-for-Purchase-and-Sale-of-Real-Property-REV-7.2020-c.-7.2020-SAMPLE.pdf',0,'attachment','application/pdf',0),(1963,6,'2021-07-05 12:16:55','2021-07-05 12:16:55','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-9','','','2021-07-05 12:16:55','2021-07-05 12:16:55','',1962,'https://lantern-realty.com/wp-content/uploads/2021/07/2021-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1964,6,'2021-07-05 12:16:55','2021-07-05 12:16:55','','Charlotte-hotsheet-7.1.211-1.pdf','','inherit','closed','closed','','charlotte-hotsheet-7-1-211-1','','','2021-07-05 12:16:55','2021-07-05 12:16:55','',1962,'https://lantern-realty.com/wp-content/uploads/2021/07/Charlotte-hotsheet-7.1.211-1.pdf',0,'attachment','application/pdf',0),(1965,6,'2021-07-05 12:16:55','2021-07-05 12:16:55','','LRD-Roster_070421.xlsx','','inherit','closed','closed','','lrd-roster_070421','','','2021-07-05 12:16:55','2021-07-05 12:16:55','',1962,'https://lantern-realty.com/wp-content/uploads/2021/07/LRD-Roster_070421.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1966,6,'2021-07-06 15:45:57','2021-07-06 15:45:57','<div dir=\"ltr\">Hello Group!  Below is a link to the Lead Generation class held by Cathy Hager.  Enjoy!<div><br></div><div><a href=\"https://youtu.be/_hk65LEPLIY\">https://youtu.be/_hk65LEPLIY</a><br clear=\"all\"><div><br></div>','Lead Generation class','','publish','closed','open','','lead-generation-class','','','2021-07-06 15:45:57','2021-07-06 15:45:57','',0,'https://lantern-realty.com/?p=1966',0,'post','',0),(1967,0,'2021-07-06 23:25:01','2021-07-06 23:25:01','','Claire Sonnier','','inherit','closed','closed','','from-boomtown','','','2021-08-01 22:31:32','2021-08-01 22:31:32','',0,'https://lantern-realty.com/from-boomtown/',0,'attachment','image/jpeg',0),(1968,6,'2021-07-07 15:46:28','2021-07-07 15:46:28','<div dir=\"ltr\">Hey, today&#39;s zoom invite is posted on our closed Lantern Facebook group page.  Make sure you go there to get access. <br clear=\"all\"><div><br></div>','Todays Zoom Class for New Forms Change','','publish','closed','open','','todays-zoom-class-for-new-forms-change','','','2021-07-07 15:46:28','2021-07-07 15:46:28','',0,'https://lantern-realty.com/?p=1968',0,'post','',0),(1969,9,'2021-07-07 17:57:56','2021-07-07 17:57:56','<div><div><br></div><div dir=\"auto\"><font color=\"#313131\"><span style=\"word-spacing:1px\">Here is the Zoom link for today’s class from Nick at Knipp Law....</span></font><br><div style=\"color:rgb(49,49,49);word-spacing:1px\" dir=\"auto\"><br></div><div style=\"color:rgb(49,49,49);word-spacing:1px\" dir=\"auto\"><a href=\"https://zoom.us/j/97072861994?pwd=cWpaWmxITzZHUkN4MFlybW1KZk10Zz09\" style=\"font-size:1rem\" target=\"_blank\" rel=\"noopener\">https://zoom.us/j/97072861994?pwd=cWpaWmxITzZHUkN4MFlybW1KZk10Zz09</a><br></div></div></div><div><div dir=\"auto\"><div style=\"color:rgb(49,49,49);word-spacing:1px\" dir=\"auto\"><br></div><div style=\"color:rgb(49,49,49);word-spacing:1px\" dir=\"auto\"><br></div><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Jul 7, 2021 at 11:45 AM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\" target=\"_blank\" rel=\"noopener\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\">Hey, today&#39;s zoom invite is posted on our closed Lantern Facebook group page.  Make sure you go there to get access. </div><div dir=\"ltr\"><br clear=\"all\"><div><br></div>','Todays Zoom Class for New Forms Change','','publish','closed','open','','todays-zoom-class-for-new-forms-change-2','','','2021-07-07 17:57:56','2021-07-07 17:57:56','',0,'https://lantern-realty.com/?p=1969',0,'post','',0),(1970,8,'2021-07-07 17:57:56','2021-07-07 17:57:56','<div>  Will the class&nbsp;be recorded?&nbsp;<br><br><br><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><b style=\"word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">Paula G Severt</i></b>&nbsp;<img title=\"Emoji\" alt=\"Emoji\" class=\"yiv2427752816ydpc53d7409yahoo-emoji-wrapper\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding: 0px 2px; vertical-align: middle; word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><span style=\"word-wrap: break-word !important;\">Owner, Broker/ Realtor®</span><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><a href=\"http://lantern-realty.com/\" style=\"-webkit-tap-highlight-color: initial; word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">lantern-realty.com</a><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Lantern Realty and Development LLC</div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">\"Let Us Guide You Home\"</i></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Cell&nbsp;<a href=\"tel:704-232-3433\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/1\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">704-232-3433</a><br style=\"word-wrap: break-word !important;\">Office&nbsp;<a href=\"tel:704-298-0087\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/2\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">704-298-0087</a><br style=\"word-wrap: break-word !important;\">eMail Signature<br style=\"word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\">NOTE: BUYERS and SELLERS, NC real estate agents are required&nbsp;by law&nbsp;to provide&nbsp;the&nbsp;\"Working with Real Estate Agents Brochure\"&nbsp;Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure.&nbsp;<br style=\"word-wrap: break-word !important;\"><a href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"4\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a>&nbsp;<br style=\"word-wrap: break-word !important;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br><p class=\"yahoo-quoted-begin\" style=\"font-size: 15px; color: #715FFA; padding-top: 15px; margin-top: 0\">On Wednesday, July 7, 2021, 1:52 PM, Melissa Jackling &lt;<a href=\"mailto:onlymyrealtormelissa@gmail.com&gt\" >onlymyrealtormelissa@gmail.com&gt</a>; wrote:</p><blockquote class=\"iosymail\"><div id=\"yiv6776639810\"><div><div><div><br clear=\"none\"></div><div><span style=\"word-spacing:1px;\">Here is the Zoom link for today’s class from Nick at Knipp Law....</span><br clear=\"none\"><div style=\"color:rgb(49,49,49);word-spacing:1px;\"><br clear=\"none\"></div><div style=\"color:rgb(49,49,49);word-spacing:1px;\"><a shape=\"rect\" href=\"https://zoom.us/j/97072861994?pwd=cWpaWmxITzZHUkN4MFlybW1KZk10Zz09\" style=\"\" target=\"_blank\" rel=\"noreferrer noopener\">https://zoom.us/j/97072861994?pwd=cWpaWmxITzZHUkN4MFlybW1KZk10Zz09</a><br clear=\"none\"></div></div></div><div><div><div style=\"color:rgb(49,49,49);word-spacing:1px;\"><br clear=\"none\"></div><div style=\"color:rgb(49,49,49);word-spacing:1px;\"><br clear=\"none\"></div><div class=\"yiv6776639810yqt7710682175\" id=\"yiv6776639810yqt35534\"><div class=\"yiv6776639810gmail_quote\"><div class=\"yiv6776639810gmail_attr\" dir=\"ltr\">On Wed, Jul 7, 2021 at 11:45 AM Chris Puckett &lt;<a shape=\"rect\" ymailto=\"mailto:ch2realty@gmail.com\" href=\"mailto:<a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a>\" target=\"_blank\" rel=\"noreferrer noopener\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br clear=\"none\"></div><blockquote class=\"yiv6776639810gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;\"><div dir=\"ltr\">Hey, today\'s zoom invite is posted on our closed Lantern Facebook group page.&nbsp; Make sure you go there to get access.&nbsp;</div><div dir=\"ltr\"><br clear=\"all\"><div><br clear=\"none\"></div>','Todays Zoom Class for New Forms Change','','publish','closed','open','','todays-zoom-class-for-new-forms-change-3','','','2021-07-07 17:57:56','2021-07-07 17:57:56','',0,'https://lantern-realty.com/?p=1970',0,'post','',0),(1971,9,'2021-07-07 18:16:01','2021-07-07 18:16:01','<div dir=\"ltr\">Yes, It is supposed to be recorded.</div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Jul 7, 2021 at 1:54 PM Paula Severt &lt;<a href=\"mailto:paulasevert@yahoo.com\"><a href=\"mailto:paulasevert@yahoo.com\" >paulasevert@yahoo.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div> Will the class be recorded? <br><br><br><div dir=\"ltr\" style=\"font-size:16px;font-family:\"new times\",serif\"><b style=\"overflow-wrap: break-word;\"><i style=\"overflow-wrap: break-word;\">Paula G Severt</i></b> <img title=\"Emoji\" alt=\"Emoji\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding: 0px 2px; vertical-align: middle; overflow-wrap: break-word;\"><br style=\"overflow-wrap: break-word;\"></div><div dir=\"ltr\" style=\"font-size:16px;font-family:\"new times\",serif\"><span style=\"overflow-wrap: break-word;\">Owner, Broker/ Realtor®</span><br style=\"overflow-wrap: break-word;\"></div><div style=\"font-size:16px;font-family:\"new times\",serif\"><a href=\"http://lantern-realty.com/\" style=\"overflow-wrap: break-word;\" rel=\"noreferrer noopener\" target=\"_blank\">lantern-realty.com</a><br style=\"overflow-wrap: break-word;\"></div><div style=\"font-size:16px;font-family:\"new times\",serif\">Lantern Realty and Development LLC</div><div style=\"font-size:16px;font-family:\"new times\",serif\"><i style=\"overflow-wrap: break-word;\">\"Let Us Guide You Home\"</i></div><div style=\"font-size:16px;font-family:\"new times\",serif\">Cell <a href=\"tel:704-232-3433\" dir=\"ltr\" style=\"color:currentcolor;text-decoration-color:rgba(128,128,128,0.38)\" rel=\"noreferrer noopener\" target=\"_blank\">704-232-3433</a><br style=\"overflow-wrap: break-word;\">Office <a href=\"tel:704-298-0087\" dir=\"ltr\" style=\"color:currentcolor;text-decoration-color:rgba(128,128,128,0.38)\" rel=\"noreferrer noopener\" target=\"_blank\">704-298-0087</a><br style=\"overflow-wrap: break-word;\">eMail Signature<br style=\"overflow-wrap: break-word;\"><br style=\"overflow-wrap: break-word;\">NOTE: BUYERS and SELLERS, NC real estate agents are required by law to provide the \"Working with Real Estate Agents Brochure\" Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure. <br style=\"overflow-wrap: break-word;\"><a href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" dir=\"ltr\" style=\"color:currentcolor\" rel=\"noreferrer noopener\" target=\"_blank\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a> <br style=\"overflow-wrap: break-word;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br><p style=\"font-size:15px;color:rgb(113,95,250);padding-top:15px;margin-top:0px\">On Wednesday, July 7, 2021, 1:52 PM, Melissa Jackling &lt;<a href=\"mailto:onlymyrealtormelissa@gmail.com\" target=\"_blank\" rel=\"noopener\"><a href=\"mailto:onlymyrealtormelissa@gmail.com\" >onlymyrealtormelissa@gmail.com</a></a>&gt; wrote:</p><blockquote><div id=\"gmail-m_-3608282450207391088yiv6776639810\"><div><div><div><br clear=\"none\"></div><div><span style=\"word-spacing:1px\">Here is the Zoom link for today’s class from Nick at Knipp Law....</span><br clear=\"none\"><div style=\"color:rgb(49,49,49);word-spacing:1px\"><br clear=\"none\"></div><div style=\"color:rgb(49,49,49);word-spacing:1px\"><a shape=\"rect\" href=\"https://zoom.us/j/97072861994?pwd=cWpaWmxITzZHUkN4MFlybW1KZk10Zz09\" rel=\"noreferrer noopener\" target=\"_blank\">https://zoom.us/j/97072861994?pwd=cWpaWmxITzZHUkN4MFlybW1KZk10Zz09</a><br clear=\"none\"></div></div></div><div><div><div style=\"color:rgb(49,49,49);word-spacing:1px\"><br clear=\"none\"></div><div style=\"color:rgb(49,49,49);word-spacing:1px\"><br clear=\"none\"></div><div id=\"gmail-m_-3608282450207391088yiv6776639810yqt35534\"><div><div dir=\"ltr\">On Wed, Jul 7, 2021 at 11:45 AM Chris Puckett &lt;<a shape=\"rect\" href=\"mailto:ch2realty@gmail.com\" rel=\"noreferrer noopener\" target=\"_blank\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br clear=\"none\"></div><blockquote style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Hey, today&#39;s zoom invite is posted on our closed Lantern Facebook group page.  Make sure you go there to get access. </div><div dir=\"ltr\"><br clear=\"all\"><div><br clear=\"none\"></div>','Todays Zoom Class for New Forms Change','','publish','closed','open','','todays-zoom-class-for-new-forms-change-4','','','2021-07-07 18:16:01','2021-07-07 18:16:01','',0,'https://lantern-realty.com/?p=1971',0,'post','',0),(1972,6,'2021-07-08 18:56:10','2021-07-08 18:56:10','<div dir=\"ltr\">Good Afternoon All!  Hope your week is going well. Just a few tidbits fro you as we head into the weekend. <div><br></div><div>- Our team meeting on Wednesday 7/14 at 11am will be on Zoom, not in person.  Terry Whitesell will be presenting to us.  He will be discussing different loan types and their characteristics.  Melissa Jackling will be sending out an invite.  Be on the lookout for it!</div><div>-  Our Broker Q&amp;A this month will be prior to the team meeting at 10am.  It will also be Zoom only.  This month&#39;s broker Q &amp; A will be with Amanda Cody.  Amanda is one of the top agents in Stanly County and also one of Lantern&#39;s top producers.  Agents young and old should take advantage of Amanda&#39;s knowledge and experience.  </div><div>- Our Kannapolis office is still undergoing construction on a new conference room.  Until this is complete we will not be having in person meetings or classes. </div><div>- Thursday 7/15 the Salisbury Office will be holding a Lunch N Learn with Cedar Rock Environmental.  We will be discussing underground storage tanks.  This class WILL NOT be recorded.  We need a head count on who will be attending.  Please let Jessica Cloward know by Tuesday 7/13.  Lunch will be provided.  </div><div>- We will have the 2021 Forms Changes class posted on our YouTube channel as soon as possible.  I will send out the link as soon as we do.  Also, be on the lookout for info on an in person class as well.  </div><div><br></div><div>Thanks again for all you do! You&#39;ll never know how much Paula, Deana and I appreciate you.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/LRD-Roster_070821.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_070821.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2021-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-8','','','2021-07-08 18:56:10','2021-07-08 18:56:10','',0,'https://lantern-realty.com/?p=1972',0,'post','',0),(1973,6,'2021-07-08 18:56:10','2021-07-08 18:56:10','','LRD-Roster_070821.xlsx','','inherit','closed','closed','','lrd-roster_070821','','','2021-07-08 18:56:10','2021-07-08 18:56:10','',1972,'https://lantern-realty.com/wp-content/uploads/2021/07/LRD-Roster_070821.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1974,6,'2021-07-08 18:56:10','2021-07-08 18:56:10','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-1-6','','','2021-07-08 18:56:10','2021-07-08 18:56:10','',1972,'https://lantern-realty.com/wp-content/uploads/2021/07/2021-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1975,0,'2021-07-08 21:42:47','2021-07-08 21:42:47','','Me and baby','','inherit','','closed','','me-and-baby','','','2021-07-08 21:42:47','2021-07-08 21:42:47','',0,'https://lantern-realty.com/me-and-baby/',0,'attachment','image/jpeg',0),(1982,9,'2021-07-14 14:16:22','2021-07-14 14:16:22','<div dir=\"auto\">PLEASE NOTE AND RESPOND BY 1:30 pm TODAY IF YOU WILL BE ATTENDING THE FOLLOWING MEETING THURSDAY. THANK YOU </div><div dir=\"auto\"><br></div><div dir=\"auto\"><span style=\"color:rgb(49,49,49);word-spacing:1px\">“Thursday 7/15 the Salisbury Office will be holding a Lunch N Learn with Cedar Rock Environmental.  We will be discussing underground storage tanks.  This class WILL NOT be recorded.  We need a head count on who will be attending.  Please let Jessica Cloward know by Tuesday 7/13.  Lunch will be provided.”</span><br></div><div dir=\"auto\"><span style=\"color:rgb(49,49,49);word-spacing:1px\"><br></span></div><div dir=\"auto\"><span style=\"color:rgb(49,49,49);word-spacing:1px\"><br></span></div><div dir=\"auto\"><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Jul 8, 2021 at 2:50 PM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\">Good Afternoon All!  Hope your week is going well. Just a few tidbits fro you as we head into the weekend. <div><br></div><div>- Our team meeting on Wednesday 7/14 at 11am will be on Zoom, not in person.  Terry Whitesell will be presenting to us.  He will be discussing different loan types and their characteristics.  Melissa Jackling will be sending out an invite.  Be on the lookout for it!</div><div>-  Our Broker Q&amp;A this month will be prior to the team meeting at 10am.  It will also be Zoom only.  This month&#39;s broker Q &amp; A will be with Amanda Cody.  Amanda is one of the top agents in Stanly County and also one of Lantern&#39;s top producers.  Agents young and old should take advantage of Amanda&#39;s knowledge and experience.  </div><div>- Our Kannapolis office is still undergoing construction on a new conference room.  Until this is complete we will not be having in person meetings or classes. </div><div>- Thursday 7/15 the Salisbury Office will be holding a Lunch N Learn with Cedar Rock Environmental.  We will be discussing underground storage tanks.  This class WILL NOT be recorded.  We need a head count on who will be attending.  Please let Jessica Cloward know by Tuesday 7/13.  Lunch will be provided.  </div><div>- We will have the 2021 Forms Changes class posted on our YouTube channel as soon as possible.  I will send out the link as soon as we do.  Also, be on the lookout for info on an in person class as well.  </div><div><br></div><div>Thanks again for all you do! You&#39;ll never know how much Paula, Deana and I appreciate you.  </div></div><div dir=\"ltr\"><div><br clear=\"all\"><div><br></div>','RSVP REQUEST: Lantern News &amp; Notes','','publish','closed','open','','rsvp-request-lantern-news-notes','','','2021-07-14 14:16:22','2021-07-14 14:16:22','',0,'https://lantern-realty.com/?p=1982',0,'post','',0),(1983,0,'2021-07-14 18:00:08','2021-07-14 18:00:08','','Joshua_Gonyeau','','inherit','closed','closed','','joshua-pic2','','','2021-08-01 21:57:02','2021-08-01 21:57:02','',0,'https://lantern-realty.com/joshua-pic2/',0,'attachment','image/jpeg',0),(1984,9,'2021-07-14 22:45:57','2021-07-14 22:45:57','<div dir=\"auto\">Attention:  Salisbury’s Lunch n Learn for Thursday, July 14 has been postponed....we will let you know as soon as we have confirmation on a new date.</div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Jul 14, 2021 at 10:14 AM Melissa Jackling &lt;<a href=\"mailto:onlymyrealtormelissa@gmail.com\"><a href=\"mailto:onlymyrealtormelissa@gmail.com\" >onlymyrealtormelissa@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"auto\">PLEASE NOTE AND RESPOND BY 1:30 pm TODAY IF YOU WILL BE ATTENDING THE FOLLOWING MEETING THURSDAY. THANK YOU </div><div dir=\"auto\"><br></div><div dir=\"auto\"><span style=\"color:rgb(49,49,49);word-spacing:1px\">“Thursday 7/15 the Salisbury Office will be holding a Lunch N Learn with Cedar Rock Environmental.  We will be discussing underground storage tanks.  This class WILL NOT be recorded.  We need a head count on who will be attending.  Please let Jessica Cloward know by Tuesday 7/13.  Lunch will be provided.”</span><br></div><div dir=\"auto\"><span style=\"color:rgb(49,49,49);word-spacing:1px\"><br></span></div><div dir=\"auto\"><span style=\"color:rgb(49,49,49);word-spacing:1px\"><br></span></div><div dir=\"auto\"><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Thu, Jul 8, 2021 at 2:50 PM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\" target=\"_blank\" rel=\"noopener\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\">Good Afternoon All!  Hope your week is going well. Just a few tidbits fro you as we head into the weekend. <div><br></div><div>- Our team meeting on Wednesday 7/14 at 11am will be on Zoom, not in person.  Terry Whitesell will be presenting to us.  He will be discussing different loan types and their characteristics.  Melissa Jackling will be sending out an invite.  Be on the lookout for it!</div><div>-  Our Broker Q&amp;A this month will be prior to the team meeting at 10am.  It will also be Zoom only.  This month&#39;s broker Q &amp; A will be with Amanda Cody.  Amanda is one of the top agents in Stanly County and also one of Lantern&#39;s top producers.  Agents young and old should take advantage of Amanda&#39;s knowledge and experience.  </div><div>- Our Kannapolis office is still undergoing construction on a new conference room.  Until this is complete we will not be having in person meetings or classes. </div><div>- Thursday 7/15 the Salisbury Office will be holding a Lunch N Learn with Cedar Rock Environmental.  We will be discussing underground storage tanks.  This class WILL NOT be recorded.  We need a head count on who will be attending.  Please let Jessica Cloward know by Tuesday 7/13.  Lunch will be provided.  </div><div>- We will have the 2021 Forms Changes class posted on our YouTube channel as soon as possible.  I will send out the link as soon as we do.  Also, be on the lookout for info on an in person class as well.  </div><div><br></div><div>Thanks again for all you do! You&#39;ll never know how much Paula, Deana and I appreciate you.  </div></div><div dir=\"ltr\"><div><br clear=\"all\"><div><br></div>','Lunch n Learn Postponed: Lantern News &amp; Notes','','publish','closed','open','','lunch-n-learn-postponed-lantern-news-notes','','','2021-07-14 22:45:57','2021-07-14 22:45:57','',0,'https://lantern-realty.com/?p=1984',0,'post','',0),(2005,6,'2021-07-26 19:46:04','2021-07-26 19:46:04','<div dir=\"ltr\">Good Afternoon, here are a few notes for the beginning of your week!<div><br></div><div>- Make sure you have signed up for the<b> Middleton Coaching event</b> sponsored by Joe Ricci at Mortgage Right.  You have to sign up through this EventBrite link.  <a href=\"https://bit.ly/3wSNHJz\">https://bit.ly/3wSNHJz</a> This is not a recruiting event (or i wouldn&#39;t be promoting it!).  Just trying to help you all become better agents and enhance your business.</div><div>- I have attached a copy of the new <b>Education Calendar</b>.  Since my last email we have added, by popular demand, a Kim Drakulich \"<b>Tik Tok Content</b>\" class.  Kim has become widely popular with her Tik Tok videos, one getting over 3 million views!  This class/discussion will be in person only.  We will be discussing content to put on your Tik Tok account.  That means you must have an account!  This is not a beginner Tik Tok class, so you need the app downloaded and some familiarity with it before coming to this class.  Also, we will be having this at a local Brewery/Pub (yet to be determined) and have a more casual feel to it.  </div><div>- Don&#39;t forget our <b>NCAR Forms update class</b> that Nic Lovelace taught is on our YouTube channel.  </div><div>- Don&#39;t forget there is <b>Dotloop help</b> available.  If you need help, Melissa Jackling is available for 1 on 1 classes.  You can also search YouTube for Dotloop classes.  Dotloop has a lot of training online available at any time. </div><div>- Lastly, I have attached our <b>office roster</b>.  We have been blessed with new agents coming on board.  Our family continues to grow!  Remember, if you bring someone on board, you will get a $300 credit toward your next transaction. </div><div><br></div><div>Thanks again for all you do.  Keep Deana and her family in your prayers, her surgery is tomorrow.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2021-Educational-Calendar-3.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/LRD-Roster_072621.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_072621.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-20','','','2021-07-26 19:46:04','2021-07-26 19:46:04','',0,'https://lantern-realty.com/?p=2005',0,'post','',0),(1986,0,'2021-07-15 00:18:49','2021-07-15 00:18:49','','karie try 1','','inherit','','closed','','karie-try-1','','','2021-07-15 00:18:49','2021-07-15 00:18:49','',0,'https://lantern-realty.com/karie-try-1/',0,'attachment','image/jpeg',0),(1988,6,'2021-07-19 18:26:33','2021-07-19 18:26:33','<div dir=\"ltr\">Good Monday, All!  Hope you had a relaxing weekend.  I apologize in advance for the lengthy email, but we have a lot going on!<div><br></div><div>- Our new conference room in our Kannapolis office has been completed (Yay!).  Feel free to use it when meeting clients or whatever need may arise. </div><div> </div><div>- Our very <b>first Brian Buffini class</b> will be tomorrow at 11am at the Kannapolis office.  I can&#39;t wait to hear the feedback from this class!!!  Registration was required.  </div><div><br></div><div>- Your <b>Q3 invoices</b> were sent out last Thursday.  If you did not get one, let me know.  If you have given us draft authorization, your dues will be drafted out of your account on June 30th.  Nothing else to do.  If not, please send in your checks, money orders or cash to our Kannapolis office.  </div><div><br></div><div>- Our new <b>Tuesday morning \"Meet-up\"</b> that has been taking place in the suite at the Cannon Ballers stadium will be held tomorrow in our conference room.  If you have missed any, feel free to stop in.  We have had a great time sharing ideas from marketing to better utilizing Dotloop.  Its great to be around other agents and share experiences.  For me, it has been therapy (no snide comments, please).  The class tomorrow will be at 945am - 1030-ish.  </div><div><br></div><div>- There have been several Loops submitted recently with incomplete and unsigned agency agreements.  You MUST get these done before offering services to your clients.  It is ILLEGAL to enter into an offer to purchase contract on behalf of someone without an agency agreement.  That&#39;s an NCREC rule, not a Lantern rule.  Going back and getting signatures after the transaction has closed is not acceptable.  </div><div><br></div><div>- We have grown tremendously this year, especially over the last few weeks.  I have attached an updated roster.  Take some time to see who is new and say \"Hello!\".  We are blessed with a fantastic group of folks and I&#39;m thankful to see it growing.  </div><div><br></div><div>- Lastly, we have held off on classes over the past month to get through the summer vacation season.  We now have an <b>updated Education Calendar</b>.  See attached.  Here are a few highlights of what is to come. </div><div>  <div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/LRD-Roster_070821-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_070821.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/2021-Educational-Calendar-2.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-9','','','2021-07-19 18:26:33','2021-07-19 18:26:33','',0,'https://lantern-realty.com/?p=1988',0,'post','',0),(1989,6,'2021-07-19 18:26:33','2021-07-19 18:26:33','','LRD-Roster_070821.xlsx','','inherit','closed','closed','','lrd-roster_070821-1','','','2021-07-19 18:26:33','2021-07-19 18:26:33','',1988,'https://lantern-realty.com/wp-content/uploads/2021/07/LRD-Roster_070821-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1990,6,'2021-07-19 18:26:33','2021-07-19 18:26:33','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-2-5','','','2021-07-19 18:26:33','2021-07-19 18:26:33','',1988,'https://lantern-realty.com/wp-content/uploads/2021/07/2021-Educational-Calendar-2.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(1991,8,'2021-07-19 19:46:12','2021-07-19 19:46:12','<div>  Hey guys please remember to send me copies of deposits when you have a closing. &nbsp;I’m processing the commission payouts once Melissa Jackling has approved your loops and the checks have cleared the account.&nbsp;<br><br><br><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><b style=\"word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">Paula G Severt</i></b>&nbsp;<img title=\"Emoji\" alt=\"Emoji\" class=\"yiv2427752816ydpc53d7409yahoo-emoji-wrapper\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding: 0px 2px; vertical-align: middle; word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><span style=\"word-wrap: break-word !important;\">Owner, Broker/ Realtor®</span><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><a rel=\"nofollow noopener\" target=\"_blank\" href=\"http://lantern-realty.com/\" style=\"-webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">lantern-realty.com</a><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Lantern Realty and Development LLC</div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">\"Let Us Guide You Home\"</i></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Cell&nbsp;<a href=\"tel:704-232-3433\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/1\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-232-3433</a><br style=\"word-wrap: break-word !important;\">Office&nbsp;<a href=\"tel:704-298-0087\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/2\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-298-0087</a><br style=\"word-wrap: break-word !important;\">eMail Signature<br style=\"word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\">NOTE: BUYERS and SELLERS, NC real estate agents are required&nbsp;by law&nbsp;to provide&nbsp;the&nbsp;\"Working with Real Estate Agents Brochure\"&nbsp;Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure.&nbsp;<br style=\"word-wrap: break-word !important;\"><a href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"4\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a>&nbsp;<br style=\"word-wrap: break-word !important;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br><p class=\"yahoo-quoted-begin\" style=\"font-size: 15px; color: #715FFA; padding-top: 15px; margin-top: 0\">On Monday, July 19, 2021, 2:16 PM, Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com&gt\" >ch2realty@gmail.com&gt</a>; wrote:</p><blockquote class=\"iosymail\"><div id=\"yiv9232962400\"><div dir=\"ltr\">Good Monday, All!&nbsp; Hope you had a relaxing weekend.&nbsp; I apologize in advance for the lengthy email, but we have a lot going on!<div><br></div><div>- Our new conference room in our Kannapolis office has been completed (Yay!).&nbsp; Feel free to use it when meeting clients or whatever need may arise.&nbsp;</div><div>&nbsp;</div><div>- Our very <b>first Brian Buffini class</b> will be tomorrow at 11am at the Kannapolis office.&nbsp; I can\'t wait to hear the feedback from this class!!!&nbsp; Registration was required.&nbsp;&nbsp;</div><div><br></div><div>- Your <b>Q3 invoices</b> were sent out last Thursday.&nbsp; If you did not get one, let me know.&nbsp; If you have given us draft authorization, your dues will be drafted out of your account on June 30th.&nbsp; Nothing else to do.&nbsp; If not, please send in your checks, money orders or cash to our Kannapolis office.&nbsp;&nbsp;</div><div><br></div><div>- Our new <b>Tuesday morning \"Meet-up\"</b> that has been taking place in the suite at the Cannon Ballers stadium will be held tomorrow in our conference room.&nbsp; If you have missed any, feel free to stop in.&nbsp; We have had a great time sharing ideas from marketing to better utilizing Dotloop.&nbsp; Its great to be around other agents and share experiences.&nbsp; For me, it has been therapy (no snide comments, please).&nbsp; The class tomorrow will be at 945am - 1030-ish.&nbsp;&nbsp;</div><div><br></div><div>- There have been several Loops submitted recently with incomplete and unsigned agency agreements.&nbsp; You MUST get these done before offering services to your clients.&nbsp; It is ILLEGAL to enter into an offer to purchase contract on behalf of someone without an agency agreement.&nbsp; That\'s an NCREC rule, not a Lantern rule.&nbsp; Going back and getting signatures after the transaction has closed is not acceptable.&nbsp;&nbsp;</div><div><br></div><div>- We have grown tremendously this year, especially over the last few weeks.&nbsp; I have attached an updated roster.&nbsp; Take some time to see who is new and say \"Hello!\".&nbsp; We are blessed with a fantastic&nbsp;group of folks and I\'m thankful to see it growing.&nbsp;&nbsp;</div><div><br></div><div>- Lastly, we have held off on classes over the past month to get through the summer vacation season.&nbsp; We now have an <b>updated Education Calendar</b>.&nbsp; See attached.&nbsp; Here are a few highlights of what is to come.&nbsp;</div><div>&nbsp; ','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-10','','','2021-07-19 19:46:12','2021-07-19 19:46:12','',0,'https://lantern-realty.com/?p=1991',0,'post','',0),(1992,6,'2021-07-20 12:06:52','2021-07-20 12:06:52','<div dir=\"ltr\">Good Morning!  If you need extra training on Dotloop, below is a link that offers online training for Dotloop users.  Different classes for different levels and purposes.  Hope this helps!<div><br></div><div><a href=\"https://www.dotloop.com/resource-center/training/?utm_campaign=Training%20Webinars&amp;utm_source=email&amp;utm_medium=email#webinars\">https://www.dotloop.com/resource-center/training/?utm_campaign=Training%20Webinars&amp;utm_source=email&amp;utm_medium=email#webinars</a><br clear=\"all\"><div><br></div>','Dotloop Training Opportunities','','publish','closed','open','','dotloop-training-opportunities','','','2021-07-20 12:06:52','2021-07-20 12:06:52','',0,'https://lantern-realty.com/?p=1992',0,'post','',0),(1993,6,'2021-07-21 13:45:55','2021-07-21 13:45:55','<div dir=\"ltr\">If you usually send a venmo to Deana for your quarterly dues, we need you to do it by THIS FRIDAY 8/23/21.  We don&#39;t want to bother Deana or her family while she is out.  <div><br></div><div>Again, please venmo Deana your dues by THIS FRIDAY 8/23/21.  </div><div><br></div><div>If you want to wait until 8/1 and pay by check, that is fine as well.  </div><div><br></div><div>If you have your dues drafted out of your account, the draft will be done on JULY 30th.  </div><div><br></div><div>If you have questions, please let me know. <br clear=\"all\"><div><br></div>','ANNOUNCEMENT - Sending Dues payments by Venmo.','','publish','closed','open','','announcement-sending-dues-payments-by-venmo','','','2021-07-21 13:45:55','2021-07-21 13:45:55','',0,'https://lantern-realty.com/?p=1993',0,'post','',0),(1996,8,'2021-07-21 17:36:01','2021-07-21 17:36:01','<div>  Who deposited a check for $7197.00 yesterday?<div>If I do not receive notice when deposits are made you will not receive payment. &nbsp;<br><br><br><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><b style=\"word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">Paula G Severt</i></b>&nbsp;<img title=\"Emoji\" alt=\"Emoji\" class=\"yiv2427752816ydpc53d7409yahoo-emoji-wrapper\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding: 0px 2px; vertical-align: middle; word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><span style=\"word-wrap: break-word !important;\">Owner, Broker/ Realtor®</span><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><a rel=\"nofollow noopener\" target=\"_blank\" href=\"http://lantern-realty.com/\" style=\"-webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">lantern-realty.com</a><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Lantern Realty and Development LLC</div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">\"Let Us Guide You Home\"</i></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Cell&nbsp;<a href=\"tel:704-232-3433\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/1\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-232-3433</a><br style=\"word-wrap: break-word !important;\">Office&nbsp;<a href=\"tel:704-298-0087\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/2\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-298-0087</a><br style=\"word-wrap: break-word !important;\">eMail Signature<br style=\"word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\">NOTE: BUYERS and SELLERS, NC real estate agents are required&nbsp;by law&nbsp;to provide&nbsp;the&nbsp;\"Working with Real Estate Agents Brochure\"&nbsp;Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure.&nbsp;<br style=\"word-wrap: break-word !important;\"><a href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"4\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a>&nbsp;<br style=\"word-wrap: break-word !important;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br><p class=\"yahoo-quoted-begin\" style=\"font-size: 15px; color: #715FFA; padding-top: 15px; margin-top: 0\">On Wednesday, July 21, 2021, 9:44 AM, Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com&gt\" >ch2realty@gmail.com&gt</a>; wrote:</p><blockquote class=\"iosymail\"><div id=\"yiv7593133164\"><div dir=\"ltr\">If you usually send a venmo to Deana for your quarterly dues, we need you to do it by THIS FRIDAY 8/23/21.&nbsp; We don\'t&nbsp;want to bother Deana or her family while she is out.&nbsp;&nbsp;<div><br></div><div>Again, please venmo Deana your dues by THIS FRIDAY 8/23/21.&nbsp;&nbsp;</div><div><br></div><div>If you want to wait until 8/1 and pay by check, that is fine as well.&nbsp;&nbsp;</div><div><br></div><div>If you have your dues drafted out of your account, the draft will be done on JULY 30th.&nbsp;&nbsp;</div><div><br></div><div>If you have questions, please let me know.&nbsp;<br clear=\"all\"><div><br></div>','ANNOUNCEMENT - Sending Dues payments by Venmo.','','publish','closed','open','','announcement-sending-dues-payments-by-venmo-2','','','2021-07-21 17:36:01','2021-07-21 17:36:01','',0,'https://lantern-realty.com/?p=1996',0,'post','',0),(1995,0,'2021-07-21 15:10:02','2021-07-21 15:10:02','','David_G_Cannon','','inherit','closed','closed','','me-and-baby-2','','','2021-08-01 21:42:34','2021-08-01 21:42:34','',0,'https://lantern-realty.com/me-and-baby-2/',0,'attachment','image/jpeg',0),(1997,0,'2021-07-21 17:56:07','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-07-21 17:56:07','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=1997',0,'post','',0),(1998,6,'2021-07-22 12:55:56','2021-07-22 12:55:56','<div dir=\"ltr\">Good Morning, just wanted to remind you, if you typically pay your dues by Venmo, make sure you have those payments in by TOMORROW.  You can still pay by check, cash or money order.  Also, your dues will be drafted if you signed up for autodraft.  <div><br></div><div>Thanks!<br clear=\"all\"><div><br></div>','Venmo/quarterly dues','','publish','closed','open','','venmo-quarterly-dues','','','2021-07-22 12:55:56','2021-07-22 12:55:56','',0,'https://lantern-realty.com/?p=1998',0,'post','',0),(1999,6,'2021-07-22 18:16:53','2021-07-22 18:16:53','<div dir=\"ltr\">Hello, attached is an upcoming coaching event.  It is sponsored by Joe Ricci at Mortgage Right and hosted by Middleton Coaching.  Zach Bonczek is the featured speaker. Zach is a highly successful agent in our area and a great speaker.  This is NOT a recruiting event and I would highly recommend it.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/07/Winning-In-A-Tight-Market-Flyer.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> Winning-In-A-Tight-Market-Flyer.pdf</a><br /></div>','Coaching Event','','publish','closed','open','','coaching-event','','','2021-07-22 18:16:53','2021-07-22 18:16:53','',0,'https://lantern-realty.com/?p=1999',0,'post','',0),(2000,6,'2021-07-22 18:16:53','2021-07-22 18:16:53','','Winning-In-A-Tight-Market-Flyer.pdf','','inherit','closed','closed','','winning-in-a-tight-market-flyer','','','2021-07-22 18:16:53','2021-07-22 18:16:53','',1999,'https://lantern-realty.com/wp-content/uploads/2021/07/Winning-In-A-Tight-Market-Flyer.pdf',0,'attachment','application/pdf',0),(2001,0,'2021-07-22 18:37:41','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-07-22 18:37:41','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2001',0,'post','',0),(2002,6,'2021-07-23 18:26:17','2021-07-23 18:26:17','<div dir=\"ltr\">Hello All, below is the link to the NCAR documents change taught by Nic Lovelace.  Hope you all have a great weekend. <div><br></div><div><a href=\"https://youtu.be/jCGcNwKbU3Y\">https://youtu.be/jCGcNwKbU3Y</a><br clear=\"all\"><div><br></div>','2021/2022 NCAR Doc Changes Class link','','publish','closed','open','','2021-2022-ncar-doc-changes-class-link','','','2021-07-23 18:26:17','2021-07-23 18:26:17','',0,'https://lantern-realty.com/?p=2002',0,'post','',0),(2003,8,'2021-07-25 13:46:14','2021-07-25 13:46:14','<div>  <!','Venmo/quarterly dues','','publish','closed','open','','venmo-quarterly-dues-2','','','2021-07-25 13:46:14','2021-07-25 13:46:14','',0,'https://lantern-realty.com/?p=2003',0,'post','',0),(2004,0,'2021-07-25 14:56:03','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-07-25 14:56:03','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2004',0,'post','',0),(2006,6,'2021-07-26 19:46:04','2021-07-26 19:46:04','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-3-2','','','2021-07-26 19:46:04','2021-07-26 19:46:04','',2005,'https://lantern-realty.com/wp-content/uploads/2021/07/2021-Educational-Calendar-3.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2007,6,'2021-07-26 19:46:04','2021-07-26 19:46:04','','LRD-Roster_072621.xlsx','','inherit','closed','closed','','lrd-roster_072621','','','2021-07-26 19:46:04','2021-07-26 19:46:04','',2005,'https://lantern-realty.com/wp-content/uploads/2021/07/LRD-Roster_072621.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2008,0,'2021-07-27 01:08:58','2021-07-27 01:08:58','','FullSizeR002','','inherit','','closed','','fullsizer002','','','2021-07-27 01:08:58','2021-07-27 01:08:58','',0,'https://lantern-realty.com/fullsizer002/',0,'attachment','image/jpeg',0),(2009,8,'2021-07-30 17:36:07','2021-07-30 17:36:07','<div>  Ok who deposited $11,400 this week? If it’s not claimed we are going to have one heck of a party! 🤣<br><br><br><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><b style=\"word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">Paula G Severt</i></b>&nbsp;<img title=\"Emoji\" alt=\"Emoji\" class=\"yiv2427752816ydpc53d7409yahoo-emoji-wrapper\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding: 0px 2px; vertical-align: middle; word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><span style=\"word-wrap: break-word !important;\">Owner, Broker/ Realtor®</span><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><a rel=\"nofollow noopener\" target=\"_blank\" href=\"http://lantern-realty.com/\" style=\"-webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">lantern-realty.com</a><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Lantern Realty and Development LLC</div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">\"Let Us Guide You Home\"</i></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Cell&nbsp;<a href=\"tel:704-232-3433\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/1\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-232-3433</a><br style=\"word-wrap: break-word !important;\">Office&nbsp;<a href=\"tel:704-298-0087\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/2\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-298-0087</a><br style=\"word-wrap: break-word !important;\">eMail Signature<br style=\"word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\">NOTE: BUYERS and SELLERS, NC real estate agents are required&nbsp;by law&nbsp;to provide&nbsp;the&nbsp;\"Working with Real Estate Agents Brochure\"&nbsp;Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure.&nbsp;<br style=\"word-wrap: break-word !important;\"><a href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"4\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a>&nbsp;<br style=\"word-wrap: break-word !important;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br><p class=\"yahoo-quoted-begin\" style=\"font-size: 15px; color: #715FFA; padding-top: 15px; margin-top: 0\">On Monday, July 19, 2021, 2:16 PM, Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com&gt\" >ch2realty@gmail.com&gt</a>; wrote:</p><blockquote class=\"iosymail\"><div id=\"yiv2892961167\"><div dir=\"ltr\">Good Monday, All!&nbsp; Hope you had a relaxing weekend.&nbsp; I apologize in advance for the lengthy email, but we have a lot going on!<div><br></div><div>- Our new conference room in our Kannapolis office has been completed (Yay!).&nbsp; Feel free to use it when meeting clients or whatever need may arise.&nbsp;</div><div>&nbsp;</div><div>- Our very <b>first Brian Buffini class</b> will be tomorrow at 11am at the Kannapolis office.&nbsp; I can\'t wait to hear the feedback from this class!!!&nbsp; Registration was required.&nbsp;&nbsp;</div><div><br></div><div>- Your <b>Q3 invoices</b> were sent out last Thursday.&nbsp; If you did not get one, let me know.&nbsp; If you have given us draft authorization, your dues will be drafted out of your account on June 30th.&nbsp; Nothing else to do.&nbsp; If not, please send in your checks, money orders or cash to our Kannapolis office.&nbsp;&nbsp;</div><div><br></div><div>- Our new <b>Tuesday morning \"Meet-up\"</b> that has been taking place in the suite at the Cannon Ballers stadium will be held tomorrow in our conference room.&nbsp; If you have missed any, feel free to stop in.&nbsp; We have had a great time sharing ideas from marketing to better utilizing Dotloop.&nbsp; Its great to be around other agents and share experiences.&nbsp; For me, it has been therapy (no snide comments, please).&nbsp; The class tomorrow will be at 945am - 1030-ish.&nbsp;&nbsp;</div><div><br></div><div>- There have been several Loops submitted recently with incomplete and unsigned agency agreements.&nbsp; You MUST get these done before offering services to your clients.&nbsp; It is ILLEGAL to enter into an offer to purchase contract on behalf of someone without an agency agreement.&nbsp; That\'s an NCREC rule, not a Lantern rule.&nbsp; Going back and getting signatures after the transaction has closed is not acceptable.&nbsp;&nbsp;</div><div><br></div><div>- We have grown tremendously this year, especially over the last few weeks.&nbsp; I have attached an updated roster.&nbsp; Take some time to see who is new and say \"Hello!\".&nbsp; We are blessed with a fantastic&nbsp;group of folks and I\'m thankful to see it growing.&nbsp;&nbsp;</div><div><br></div><div>- Lastly, we have held off on classes over the past month to get through the summer vacation season.&nbsp; We now have an <b>updated Education Calendar</b>.&nbsp; See attached.&nbsp; Here are a few highlights of what is to come.&nbsp;</div><div>&nbsp; ','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-11','','','2021-07-30 17:36:07','2021-07-30 17:36:07','',0,'https://lantern-realty.com/?p=2009',0,'post','',0),(2010,0,'2021-07-30 17:36:07','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-07-30 17:36:07','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2010',0,'post','',0),(2011,0,'2021-07-30 20:46:11','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-07-30 20:46:11','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2011',0,'post','',0),(2012,8,'2021-07-30 20:46:12','2021-07-30 20:46:12','<div>  Ok the check has been claimed. &nbsp;I think we take a vote! If a check is deposited and it remains in the business account for 2 weeks we use the money for a party! 🤣🤣<br><br><br><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><b style=\"word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">Paula G Severt</i></b>&nbsp;<img title=\"Emoji\" alt=\"Emoji\" class=\"yiv2427752816ydpc53d7409yahoo-emoji-wrapper\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding: 0px 2px; vertical-align: middle; word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><span style=\"word-wrap: break-word !important;\">Owner, Broker/ Realtor®</span><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><a href=\"http://lantern-realty.com/\" style=\"-webkit-tap-highlight-color: initial; word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">lantern-realty.com</a><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Lantern Realty and Development LLC</div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">\"Let Us Guide You Home\"</i></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Cell&nbsp;<a href=\"tel:704-232-3433\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/1\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">704-232-3433</a><br style=\"word-wrap: break-word !important;\">Office&nbsp;<a href=\"tel:704-298-0087\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/2\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">704-298-0087</a><br style=\"word-wrap: break-word !important;\">eMail Signature<br style=\"word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\">NOTE: BUYERS and SELLERS, NC real estate agents are required&nbsp;by law&nbsp;to provide&nbsp;the&nbsp;\"Working with Real Estate Agents Brochure\"&nbsp;Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure.&nbsp;<br style=\"word-wrap: break-word !important;\"><a href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"4\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a>&nbsp;<br style=\"word-wrap: break-word !important;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br><p class=\"yahoo-quoted-begin\" style=\"font-size: 15px; color: #715FFA; padding-top: 15px; margin-top: 0\">On Friday, July 30, 2021, 4:43 PM, Robert Bendig &lt;<a href=\"mailto:rbendig89@yahoo.com&gt\" >rbendig89@yahoo.com&gt</a>; wrote:</p><blockquote class=\"iosymail\"><div id=\"yiv3218888450\"><div>I feel like at this point it would be selfish to claim it. 😂<br clear=\"none\"><br clear=\"none\"><div dir=\"ltr\">Sent from my iPhone</div><div dir=\"ltr\"><div class=\"yiv3218888450yqt7360032673\" id=\"yiv3218888450yqtfd01802\"><br clear=\"none\"><blockquote type=\"cite\">On Jul 30, 2021, at 1:35 PM, Jenna Cook &lt;<a href=\"mailto:4jennacook@gmail.com&gt\" >4jennacook@gmail.com&gt</a>; wrote:<br clear=\"none\"><br clear=\"none\"></blockquote></div></div><div class=\"yiv3218888450yqt7360032673\" id=\"yiv3218888450yqtfd32684\"><blockquote type=\"cite\"><div dir=\"ltr\"><div>Partaaaaay</div><div><br clear=\"none\"><div class=\"yiv3218888450gmail_quote\"><div class=\"yiv3218888450gmail_attr\" dir=\"ltr\">On Fri, Jul 30, 2021 at 1:27 PM Paula Severt &lt;<a shape=\"rect\" ymailto=\"mailto:paulasevert@yahoo.com\" href=\"mailto:<a href=\"mailto:paulasevert@yahoo.com\" >paulasevert@yahoo.com</a>\" target=\"_blank\" rel=\"noreferrer noopener\"><a href=\"mailto:paulasevert@yahoo.com\" >paulasevert@yahoo.com</a></a>&gt; wrote:<br clear=\"none\"></div><blockquote class=\"yiv3218888450gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;padding-left:1ex;border-left-color:rgb(204,204,204);\"><div>  Ok who deposited $11,400 this week? If it’s not claimed we are going to have one heck of a party! 🤣</div><div><br clear=\"none\"><br clear=\"none\"><br clear=\"none\"><div dir=\"ltr\" style=\"font-size:16px;font-family:serif;word-wrap:break-word!important;\"><b style=\"font-family:serif;word-wrap:break-word!important;\"><i style=\"font-family:serif;word-wrap:break-word!important;\">Paula G Severt</i></b>&nbsp;<img title=\"Emoji\" alt=\"Emoji\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding:0px 2px;vertical-align:middle;font-family:serif;word-wrap:break-word !important;\"><br clear=\"none\" style=\"word-wrap:break-word!important;\"></div><div dir=\"ltr\" style=\"font-size:16px;font-family:serif;word-wrap:break-word!important;\"><span style=\"font-family:serif;word-wrap:break-word!important;\">Owner, Broker/ Realtor®</span><br clear=\"none\" style=\"word-wrap:break-word!important;\"></div><div style=\"font-size:16px;font-family:serif;word-wrap:break-word!important;\"><a shape=\"rect\" href=\"http://lantern-realty.com/\" style=\"font-family:serif;word-wrap:break-word!important;\" target=\"_blank\" rel=\"noreferrer noopener\">lantern-realty.com</a><br clear=\"none\" style=\"word-wrap:break-word!important;\"></div><div style=\"font-size:16px;font-family:serif;word-wrap:break-word!important;\">Lantern Realty and Development LLC</div><div style=\"font-size:16px;font-family:serif;word-wrap:break-word!important;\"><i style=\"font-family:serif;word-wrap:break-word!important;\">\"Let Us Guide You Home\"</i></div><div style=\"font-size:16px;font-family:serif;word-wrap:break-word!important;\">Cell&nbsp;<a shape=\"rect\" dir=\"ltr\" style=\"text-decoration-color:rgba(128,128,128,0.38);font-family:serif;word-wrap:break-word!important;color:currentcolor;\" target=\"_blank\" rel=\"noreferrer noopener\">704-232-3433</a><br clear=\"none\" style=\"word-wrap:break-word!important;\">Office&nbsp;<a shape=\"rect\" dir=\"ltr\" style=\"text-decoration-color:rgba(128,128,128,0.38);font-family:serif;word-wrap:break-word!important;color:currentcolor;\" target=\"_blank\" rel=\"noreferrer noopener\">704-298-0087</a><br clear=\"none\" style=\"word-wrap:break-word!important;\">eMail Signature<br clear=\"none\" style=\"word-wrap:break-word!important;\"><br clear=\"none\" style=\"word-wrap:break-word!important;\">NOTE: BUYERS and SELLERS, NC real estate agents are required&nbsp;by law&nbsp;to provide&nbsp;the&nbsp;\"Working with Real Estate Agents Brochure\"&nbsp;Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure.&nbsp;<br clear=\"none\" style=\"word-wrap:break-word!important;\"><a shape=\"rect\" dir=\"ltr\" href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" style=\"font-family:serif;word-wrap:break-word!important;color:currentcolor;\" target=\"_blank\" rel=\"noreferrer noopener\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a>&nbsp;<br clear=\"none\" style=\"word-wrap:break-word!important;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br clear=\"none\"><p style=\"font-size:15px;padding-top:15px;margin-top:0px;color:rgb(113,95,250);\">On Monday, July 19, 2021, 2:16 PM, Chris Puckett &lt;<a shape=\"rect\" ymailto=\"mailto:ch2realty@gmail.com\" href=\"mailto:<a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a>\" target=\"_blank\" rel=\"noreferrer noopener\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:</p><blockquote><div id=\"yiv3218888450m_456653408055801828yiv2892961167\"><div dir=\"ltr\">Good Monday, All!&nbsp; Hope you had a relaxing weekend.&nbsp; I apologize in advance for the lengthy email, but we have a lot going on!<div><br clear=\"none\"></div><div>- Our new conference room in our Kannapolis office has been completed (Yay!).&nbsp; Feel free to use it when meeting clients or whatever need may arise.&nbsp;</div><div>&nbsp;</div><div>- Our very <b>first Brian Buffini class</b> will be tomorrow at 11am at the Kannapolis office.&nbsp; I can\'t wait to hear the feedback from this class!!!&nbsp; Registration was required.&nbsp;&nbsp;</div><div><br clear=\"none\"></div><div>- Your <b>Q3 invoices</b> were sent out last Thursday.&nbsp; If you did not get one, let me know.&nbsp; If you have given us draft authorization, your dues will be drafted out of your account on June 30th.&nbsp; Nothing else to do.&nbsp; If not, please send in your checks, money orders or cash to our Kannapolis office.&nbsp;&nbsp;</div><div><br clear=\"none\"></div><div>- Our new <b>Tuesday morning \"Meet-up\"</b> that has been taking place in the suite at the Cannon Ballers stadium will be held tomorrow in our conference room.&nbsp; If you have missed any, feel free to stop in.&nbsp; We have had a great time sharing ideas from marketing to better utilizing Dotloop.&nbsp; Its great to be around other agents and share experiences.&nbsp; For me, it has been therapy (no snide comments, please).&nbsp; The class tomorrow will be at 945am - 1030-ish.&nbsp;&nbsp;</div><div><br clear=\"none\"></div><div>- There have been several Loops submitted recently with incomplete and unsigned agency agreements.&nbsp; You MUST get these done before offering services to your clients.&nbsp; It is ILLEGAL to enter into an offer to purchase contract on behalf of someone without an agency agreement.&nbsp; That\'s an NCREC rule, not a Lantern rule.&nbsp; Going back and getting signatures after the transaction has closed is not acceptable.&nbsp;&nbsp;</div><div><br clear=\"none\"></div><div>- We have grown tremendously this year, especially over the last few weeks.&nbsp; I have attached an updated roster.&nbsp; Take some time to see who is new and say \"Hello!\".&nbsp; We are blessed with a fantastic&nbsp;group of folks and I\'m thankful to see it growing.&nbsp;&nbsp;</div><div><br clear=\"none\"></div><div>- Lastly, we have held off on classes over the past month to get through the summer vacation season.&nbsp; We now have an <b>updated Education Calendar</b>.&nbsp; See attached.&nbsp; Here are a few highlights of what is to come.&nbsp;</div><div>&nbsp; ','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-12','','','2021-07-30 20:46:12','2021-07-30 20:46:12','',0,'https://lantern-realty.com/?p=2012',0,'post','',0),(2013,0,'2021-07-30 21:05:55','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-07-30 21:05:55','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2013',0,'post','',0),(2014,0,'2021-07-30 22:16:07','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-07-30 22:16:07','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2014',0,'post','',0),(2015,0,'2021-07-30 22:45:59','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-07-30 22:45:59','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2015',0,'post','',0),(2050,6,'2021-08-10 12:05:57','2021-08-10 12:05:57','<div dir=\"ltr\">Hey Pam, I use Scott Gregg w/ Gregg Home Solutions.  Ive used him for several projects at my house.  704-322-1647</div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Aug 9, 2021 at 6:01 PM Pam Lambert &lt;<a href=\"mailto:pamlambert.ncrealtor@gmail.com\"><a href=\"mailto:pamlambert.ncrealtor@gmail.com\" >pamlambert.ncrealtor@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div dir=\"ltr\"><div class=\"gmail_default\" style=\"font-family:georgia,serif;color:rgb(0,0,0)\">Hi there everyone,</div><div class=\"gmail_default\" style=\"font-family:georgia,serif;color:rgb(0,0,0)\">Please share if you know of a great handyman and contractors you may know.  I need someone for a deck and also for porch railing.  My\" go to\" contractor has retired.  Thanks so very much!  </div><div><div dir=\"ltr\"><div dir=\"ltr\"><font face=\"georgia, serif\" color=\"#000000\"><br></font><div><div><br></div><div><font face=\"georgia,serif\" color=\"#000000\"><br></font></div><div><font face=\"georgia,serif\" size=\"4\" color=\"#000000\">Best regards,</font></div><div><font face=\"georgia,serif\" size=\"4\" color=\"#000000\"><br></font></div><div><font face=\"georgia,serif\" size=\"4\" color=\"#000000\">Pam Lambert</font></div><div><font face=\"georgia,serif\" size=\"4\" color=\"#000000\"><br></font></div><div><span style=\"color:rgb(0,0,0);font-family:georgia,serif;background-color:rgb(245,245,245)\">Lantern </span><span style=\"color:rgb(0,0,0);font-family:georgia,serif\">Realty and Development</span></div><div><span style=\"color:rgb(0,0,0);font-family:georgia,serif;background-color:rgb(245,245,245)\">NC Real Estate Broker/ Realtor</span><br></div><div><font face=\"georgia, serif\" color=\"#000000\"><span style=\"background-color:rgb(245,245,245)\">Accredited Luxury Home Specialist, ALHS </span></font></div><div><font face=\"georgia, serif\" color=\"#000000\"><span style=\"background-color:rgb(245,245,245)\">Certified Military Residential Specialist, CMRS</span></font></div><div><font face=\"georgia, serif\" color=\"#000000\"><span style=\"background-color:rgb(245,245,245)\">Relocation Specialist</span></font></div><div><br></div><div><a href=\"mailto:Pam.Lambert@allentate.com\" target=\"_blank\" rel=\"noopener\"><font face=\"georgia, serif\" color=\"#000000\"><a href=\"mailto:PamLambert.NCRealtor@gmail.com\" >PamLambert.NCRealtor@gmail.com</a></font></a></div><div><font size=\"4\" face=\"georgia, serif\" color=\"#000000\">704-791-1074</font></div><div><span style=\"color:rgb(0,0,0);font-family:georgia,serif\"><br></span></div><div><span style=\"color:rgb(51,51,51);font-family:georgia,serif\">Dedicated to Professional Real Estate Performance Since 1998!</span><br></div><div><br></div><div><br><div style=\"color:rgb(34,34,34)\"><font face=\"georgia,serif\"></font><br></div></div></div></div></div></div></div><div class=\"gmail_quote\"><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\"><div><br></div><div><div dir=\"ltr\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div></div><div><br></div><br><br></div><div dir=\"ltr\"><br></div></div></div></div></div></div></div></div></div></div></div></div></div></div> </blockquote></div></div> </blockquote></div><br clear=\"all\"><div><br></div>','Contractor and Handy man','','publish','closed','open','','contractor-and-handy-man','','','2021-08-10 12:05:57','2021-08-10 12:05:57','',0,'https://lantern-realty.com/?p=2050',0,'post','',0),(2017,1,'2021-08-01 21:16:10','2021-08-01 21:16:10','<!-- wp:paragraph -->\n<p>A native of Asheville, I have enjoyed a career in Accounting and Tax preparation. Following graduation at Western Carolina University I commenced my professional career and became a franchise owner with H&amp;R Block. For the last 20 years I have worked with physicians and tax departments of Healthcare Business Consultants and Doctors Management. Due to the fact that I enjoy real estate and investing myself, I obtained my NC brokerage license in the 80’s and worked referrals for many of my accounting and tax clients. I am currently pursuing a more active real estate career while staying abreast of the tax laws. This enables me to help guide you through those issues that pertain to both the real estate market and your financial future for those investments. I love to help client’s find homes and investments in the Asheville, Hendersonville and surrounding areas. Let me go to work to find you the perfect mountain home for your family, whether it be a mountain top home with expansive views of the valleys below or a small West Asheville abode within walking distance of renowned restaurants, entertainment and business. I can and will work diligently to market and promote your current property for the highest and best value. I know Western NC and real estate, let me go to work for you.</p>\n<!-- /wp:paragraph -->','Micheal Farlow','','inherit','closed','closed','','1640-revision-v1','','','2021-08-01 21:16:10','2021-08-01 21:16:10','',1640,'https://lantern-realty.com/?p=2017',0,'revision','',0),(2019,1,'2021-08-01 21:33:53','2021-08-01 21:33:53','<!-- wp:paragraph -->\n<p>I grew up as a Rowan County resident and moved to Richfield when my husband and I bought our first home 3 years ago. After going through the extensive process of buying and remodeling I decided that I wanted to help other families or first time home buyers do the same thing and help make their transitions as easy as possible! I left my previous full time job and came into the market when is was HOT and I absolutely love it and haven\'t looked back since. I spend all of my spare time enjoying the outdoors with my husband and dogs, fishing, boating, camping and trail riding ATVs.</p>\n<!-- /wp:paragraph -->','Chelsea Trexler','','inherit','closed','closed','','1898-revision-v1','','','2021-08-01 21:33:53','2021-08-01 21:33:53','',1898,'https://lantern-realty.com/?p=2019',0,'revision','',0),(2021,1,'2021-08-01 21:43:09','2021-08-01 21:43:09','<!-- wp:paragraph -->\n<p>With over 25 years buying and selling real estate, we can assist you with all of your marketing and home buying needs. Please give me a call to discuses how our team can help you meet your real estate goals.</p>\n<!-- /wp:paragraph -->','David G Cannon','','publish','closed','closed','','david-g-cannon','','','2021-08-01 21:43:14','2021-08-01 21:43:14','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2021',25,'houzez_agent','',0),(2022,1,'2021-08-01 21:43:09','2021-08-01 21:43:09','<!-- wp:paragraph -->\n<p>With over 25 years buying and selling real estate, we can assist you with all of your marketing and home buying needs. Please give me a call to discuses how our team can help you meet your real estate goals.</p>\n<!-- /wp:paragraph -->','David G Cannon','','inherit','closed','closed','','2021-revision-v1','','','2021-08-01 21:43:09','2021-08-01 21:43:09','',2021,'https://lantern-realty.com/?p=2022',0,'revision','',0),(2023,1,'2021-08-01 21:54:49','2021-08-01 21:54:49','<!-- wp:paragraph -->\n<p>Thank you for checking out my profile! I moved to NC in 1996 and never looked back. I love the Concord area and all that it has to offer. I worked in non-profit for over 16 years and then decided to pursue my dream of Real Estate in 2017. I work with both buyers and sellers and have alot of experience with first time home buyers. Buying or selling a home can be stressful, but I am here to make the transaction as smooth as possible for you. Whether you\'re getting the keys to your new home or handing over the keys to the new owners, I will guide you through the entire process and get you to the closing table. I look forward to the opportunity to work with you!</p>\n<!-- /wp:paragraph -->','Karie Arem','','publish','closed','closed','','karie-sturdevant','','','2021-09-04 01:51:08','2021-09-04 01:51:08','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2023',7,'houzez_agent','',0),(2024,1,'2021-08-01 21:54:49','2021-08-01 21:54:49','<!-- wp:paragraph -->\n<p>Thank you for checking out my profile! I moved to NC in 1996 and never looked back. I love the Concord area and all that it has to offer. I worked in non-profit for over 16 years and then decided to pursue my dream of Real Estate in 2017. I work with both buyers and sellers and have alot of experience with first time home buyers. Buying or selling a home can be stressful, but I am here to make the transaction as smooth as possible for you. Whether you\'re getting the keys to your new home or handing over the keys to the new owners, I will guide you through the entire process and get you to the closing table. I look forward to the opportunity to work with you!</p>\n<!-- /wp:paragraph -->','Karie Sturdevant','','inherit','closed','closed','','2023-revision-v1','','','2021-08-01 21:54:49','2021-08-01 21:54:49','',2023,'https://lantern-realty.com/?p=2024',0,'revision','',0),(2025,1,'2021-08-01 21:58:06','2021-08-01 21:58:06','<!-- wp:paragraph -->\n<p>Welcome to Western North Carolina! Lets Get started…Why choose Joshua as your Realtor? For one, he really listens to you and your needs and will work tirelessly on your behalf. For two, he thinks he’s funny. You may also find him funny or just feel sorry for him for finding himself so funny, but either way he will elicit an emotional response that you will not get from the average Realtor. Joshua is originally from a small town in upstate New York not unlike Asheville. He grew up on a horse farm and developed a love for mountains and the outdoors from a young age. In 2015, with the help of a PowerPoint presentation (seriously) and a little nudge from a wise woman, he moved to Asheville, reminiscent of the mountain setting he loved so much growing up. After 20 years of managing restaurants, he finally decided to listen to that entrepreneurial voice in the back of his head and move into real estate. From his many years in hospitality he learned much about customer service, what it means to exceed expectations, and how to turn regulars into genuine friends. That experience translates into everything he does in real estate, by not only earning your business, but more importantly a long term connection. Joshua believes that a restaurant without regulars is not truly successful, and this is true in real estate as well. Joshua currently lives in Asheville with the aforementioned wise woman. When he is not working he enjoys hiking, running, camping, and volunteering for a local animal shelter. The environment, green housing, and green living are all important in his life and are a focus in his real estate career. So whether you are looking for a mountain-top retreat, or 100 acres to start a commune, or you need to sell your house to pay for your ex-husbands alimony, or you have come to the realization that you are going to need about five more rooms for all of the animals you can’t stop adopting, or you just need a small West Asheville bungalow to home-brew full-time…let him be the one to help you fulfil your dreams. Please feel free to contact us if you’d like to find out more about our wonderful town. If you are looking for a home or thinking about selling I am sure that we can exceed your expectations and build a lasting relationship.</p>\n<!-- /wp:paragraph -->','Joshua Gonyeau','','draft','closed','closed','','joshua-gonyeau','','','2021-11-22 00:35:54','2021-11-22 00:35:54','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2025',30,'houzez_agent','',0),(2026,1,'2021-08-01 21:58:06','2021-08-01 21:58:06','<!-- wp:paragraph -->\n<p>Welcome to Western North Carolina! Lets Get started…Why choose Joshua as your Realtor? For one, he really listens to you and your needs and will work tirelessly on your behalf. For two, he thinks he’s funny. You may also find him funny or just feel sorry for him for finding himself so funny, but either way he will elicit an emotional response that you will not get from the average Realtor. Joshua is originally from a small town in upstate New York not unlike Asheville. He grew up on a horse farm and developed a love for mountains and the outdoors from a young age. In 2015, with the help of a PowerPoint presentation (seriously) and a little nudge from a wise woman, he moved to Asheville, reminiscent of the mountain setting he loved so much growing up. After 20 years of managing restaurants, he finally decided to listen to that entrepreneurial voice in the back of his head and move into real estate. From his many years in hospitality he learned much about customer service, what it means to exceed expectations, and how to turn regulars into genuine friends. That experience translates into everything he does in real estate, by not only earning your business, but more importantly a long term connection. Joshua believes that a restaurant without regulars is not truly successful, and this is true in real estate as well. Joshua currently lives in Asheville with the aforementioned wise woman. When he is not working he enjoys hiking, running, camping, and volunteering for a local animal shelter. The environment, green housing, and green living are all important in his life and are a focus in his real estate career. So whether you are looking for a mountain-top retreat, or 100 acres to start a commune, or you need to sell your house to pay for your ex-husbands alimony, or you have come to the realization that you are going to need about five more rooms for all of the animals you can’t stop adopting, or you just need a small West Asheville bungalow to home-brew full-time…let him be the one to help you fulfil your dreams. Please feel free to contact us if you’d like to find out more about our wonderful town. If you are looking for a home or thinking about selling I am sure that we can exceed your expectations and build a lasting relationship.</p>\n<!-- /wp:paragraph -->','Joshua Gonyeau','','inherit','closed','closed','','2025-revision-v1','','','2021-08-01 21:58:06','2021-08-01 21:58:06','',2025,'https://lantern-realty.com/?p=2026',0,'revision','',0),(2027,1,'2021-08-01 22:01:39','2021-08-01 22:01:39','<!-- wp:paragraph -->\n<p>The Metro Charlotte area is a great place to live and work, which is why Amber has called it home for over 20 years. She and her husband John, a native Charlottean, are raising 2 boys here and couldn\'t be happier. Amber is eager to help clients in all aspects of real estate. She is committed to listening to her clients needs and finding their perfect home. You can always count on her professionalism and dedication to each transaction. Amber feels incredibly blessed to work with amazing clients and build special relationships with each one.</p>\n<!-- /wp:paragraph -->','Amber Tsumas','','publish','closed','closed','','amber-tsumas','','','2021-08-01 22:01:45','2021-08-01 22:01:45','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2027',120,'houzez_agent','',0),(2028,1,'2021-08-01 22:01:39','2021-08-01 22:01:39','<!-- wp:paragraph -->\n<p>The Metro Charlotte area is a great place to live and work, which is why Amber has called it home for over 20 years. She and her husband John, a native Charlottean, are raising 2 boys here and couldn\'t be happier. Amber is eager to help clients in all aspects of real estate. She is committed to listening to her clients needs and finding their perfect home. You can always count on her professionalism and dedication to each transaction. Amber feels incredibly blessed to work with amazing clients and build special relationships with each one.</p>\n<!-- /wp:paragraph -->','Amber Tsumas','','inherit','closed','closed','','2027-revision-v1','','','2021-08-01 22:01:39','2021-08-01 22:01:39','',2027,'https://lantern-realty.com/?p=2028',0,'revision','',0),(2029,1,'2021-08-01 22:21:25','2021-08-01 22:21:25','<!-- wp:paragraph -->\n<p>I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the mountains, milder winters and the vibe. There was such a strong pull to move here that could not be denied. The friendliness and welcoming feel from the people as well as the wonderful diverse food and activities certainly played into our decision as well. My passion is creating a home. For me that means a place that feeds my soul through entertaining and enjoying time with family and friends. In Buffalo I owned a successful interior design firm where I took pride in providing great customer service and making homes more beautiful, one room at a time. Now, I have the privilege to provide that same customer service connecting clients with buyers and finding new homes for others that meet their needs including their lifestyle, budget and taste. My greatest reward is seeing the look on my client’s faces after a successful transaction is completed and knowing the joy and sense of well-being they feel. In my free time I love reading, walking, doing pilates, hiking, traveling, dining out and spending as much time as I can outdoors.</p>\n<!-- /wp:paragraph -->','Doreen Shaughnessy','','publish','closed','closed','','doreen-shaughnessy','','','2021-08-01 22:21:30','2021-08-01 22:21:30','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2029',80,'houzez_agent','',0),(2030,1,'2021-08-01 22:21:25','2021-08-01 22:21:25','<!-- wp:paragraph -->\n<p>I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the mountains, milder winters and the vibe. There was such a strong pull to move here that could not be denied. The friendliness and welcoming feel from the people as well as the wonderful diverse food and activities certainly played into our decision as well. My passion is creating a home. For me that means a place that feeds my soul through entertaining and enjoying time with family and friends. In Buffalo I owned a successful interior design firm where I took pride in providing great customer service and making homes more beautiful, one room at a time. Now, I have the privilege to provide that same customer service connecting clients with buyers and finding new homes for others that meet their needs including their lifestyle, budget and taste. My greatest reward is seeing the look on my client’s faces after a successful transaction is completed and knowing the joy and sense of well-being they feel. In my free time I love reading, walking, doing pilates, hiking, traveling, dining out and spending as much time as I can outdoors.</p>\n<!-- /wp:paragraph -->','Doreen Shaughnessy','','inherit','closed','closed','','2029-revision-v1','','','2021-08-01 22:21:25','2021-08-01 22:21:25','',2029,'https://lantern-realty.com/?p=2030',0,'revision','',0),(2031,1,'2021-08-01 22:26:17','2021-08-01 22:26:17','','Kathy Gurney','','publish','closed','closed','','kathy-gurney','','','2021-08-01 22:26:21','2021-08-01 22:26:21','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2031',0,'houzez_agent','',0),(2032,1,'2021-08-01 22:26:17','2021-08-01 22:26:17','','Kathy Gurney','','inherit','closed','closed','','2031-revision-v1','','','2021-08-01 22:26:17','2021-08-01 22:26:17','',2031,'https://lantern-realty.com/?p=2032',0,'revision','',0),(2033,1,'2021-08-01 22:31:44','2021-08-01 22:31:44','<!-- wp:paragraph -->\n<p>Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because of our love of the outdoors and arts scene, I am a focused professional with over 20 years of experience in sales and marketing that I will put to work for you. I put my energy into building relationships with my clients to ensure that we make the process as enjoyable as possible while we find the home that fits their needs, and I pride myself on being able to close the deal. In addition, I have extensive experience in interior design, which allows me to help you better understand how to identify the home that fits your lifestyle and spatial needs. That is also a key asset in marketing properties for my clients who are selling. I look forward to hearing from you about any of your home buying and selling needs. Awards &amp; Designations Member of the Land of the Sky Association of REALTORS®</p>\n<!-- /wp:paragraph -->','Claire Sonnier','','publish','closed','closed','','claire-sonnier','','','2021-08-01 22:31:49','2021-08-01 22:31:49','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2033',80,'houzez_agent','',0),(2034,1,'2021-08-01 22:31:44','2021-08-01 22:31:44','<!-- wp:paragraph -->\n<p>Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because of our love of the outdoors and arts scene, I am a focused professional with over 20 years of experience in sales and marketing that I will put to work for you. I put my energy into building relationships with my clients to ensure that we make the process as enjoyable as possible while we find the home that fits their needs, and I pride myself on being able to close the deal. In addition, I have extensive experience in interior design, which allows me to help you better understand how to identify the home that fits your lifestyle and spatial needs. That is also a key asset in marketing properties for my clients who are selling. I look forward to hearing from you about any of your home buying and selling needs. Awards &amp; Designations Member of the Land of the Sky Association of REALTORS®</p>\n<!-- /wp:paragraph -->','Claire Sonnier','','inherit','closed','closed','','2033-revision-v1','','','2021-08-01 22:31:44','2021-08-01 22:31:44','',2033,'https://lantern-realty.com/?p=2034',0,'revision','',0),(2035,1,'2021-08-01 22:33:55','2021-08-01 22:33:55','<!-- wp:paragraph -->\n<p>I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant (DIPC), Dedicated to achieving results and providing exceptional service, I will put my expertise to work for you! I bring over 25 years of experience in business development and marketing strategy for retail, commercial, education and financial industries. Prior to being a Real Estate agent, I held leadership roles as Corporate Business Manager, Client Services Manager and Director of Business Development in the print advertising and direct mail industry. I bring vitality, professionalism, warmth, and a mindset of service as I work with homeowners, investors and buyers. As an advocate of best practices in the real estate industry, I am C2EX endorsed and have earned the ABR (Accredited Buyer Represtative), AHWD(At Home With Diversity), CIPS (Certified International Property Specialist), GRI (Graduate Real Estate Institute), PSA (Pricing Strategy Advisor), RENE (Real Estate Negotiation Expert), SFR (Short Sales and Foreclosure Resource), SRES (Senior Real Estate Specialist) and SRS (Sellers Representative Specialist) designations. With over 200 CE (Continued Education) hours, I have the skill set and training to serve help you with the sale and purchase of your home. It brings me such joy to work with the public and help them achieve their real estate dreams. I raised four children, two girls and two boys that are now grown and on their own. I am a happy NaNa of TWO grandsons! In my spare time I love to travel, cook and have a passion for music. Since COVID-19 I’ve dusted off my middle school band instrument, the flute and trying to relearn how to play it again. And I also enjoy playing the ukulele and I’ve even started to learn the keyboard. Now you know a little about me, contact me today and let me get to know you and how I can help you sell and/or find your next home or real estate investment.</p>\n<!-- /wp:paragraph -->','Dawn Fisher','','publish','closed','closed','','dawn-fisher','','','2022-06-24 00:44:34','2022-06-24 00:44:34','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2035',35,'houzez_agent','',0),(2036,1,'2021-08-01 22:33:55','2021-08-01 22:33:55','<!-- wp:paragraph -->\n<p>I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant (DIPC), Dedicated to achieving results and providing exceptional service, I will put my expertise to work for you! I bring over 25 years of experience in business development and marketing strategy for retail, commercial, education and financial industries. Prior to being a Real Estate agent, I held leadership roles as Corporate Business Manager, Client Services Manager and Director of Business Development in the print advertising and direct mail industry. I bring vitality, professionalism, warmth, and a mindset of service as I work with homeowners, investors and buyers. As an advocate of best practices in the real estate industry, I am C2EX endorsed and have earned the ABR (Accredited Buyer Represtative), AHWD(At Home With Diversity), CIPS (Certified International Property Specialist), GRI (Graduate Real Estate Institute), PSA (Pricing Strategy Advisor), RENE (Real Estate Negotiation Expert), SFR (Short Sales and Foreclosure Resource), SRES (Senior Real Estate Specialist) and SRS (Sellers Representative Specialist) designations. With over 200 CE (Continued Education) hours, I have the skill set and training to serve help you with the sale and purchase of your home. It brings me such joy to work with the public and help them achieve their real estate dreams. I raised four children, two girls and two boys that are now grown and on their own. I am a happy NaNa of TWO grandsons! In my spare time I love to travel, cook and have a passion for music. Since COVID-19 I’ve dusted off my middle school band instrument, the flute and trying to relearn how to play it again. And I also enjoy playing the ukulele and I’ve even started to learn the keyboard. Now you know a little about me, contact me today and let me get to know you and how I can help you sell and/or find your next home or real estate investment.</p>\n<!-- /wp:paragraph -->','Dawn Fisher','','inherit','closed','closed','','2035-revision-v1','','','2021-08-01 22:33:55','2021-08-01 22:33:55','',2035,'https://lantern-realty.com/?p=2036',0,'revision','',0),(2037,6,'2021-08-02 18:06:34','2021-08-02 18:06:34','<div dir=\"ltr\">Good Afternoon All, here are a few notes to begin your week...<div><br></div><div>- Wanted to remind everyone of our Tuesday Meetings at the Kannapolis office.  We have been having them for brainstorming sessions, advertising ideas, potholes to avoid, etc.  Just being around a variety of agents with different experience levels is a great thing.  Come by the Kannapolis office at 945 every Tuesday morning. </div><div><br></div><div>- I have attached an updated Education calendar.  Our class this week includes the following...</div><div> <div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/08/2021-Educational-Calendar.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/08/LRD-Roster_072621.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_072621.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-21','','','2021-08-02 18:06:34','2021-08-02 18:06:34','',0,'https://lantern-realty.com/?p=2037',0,'post','',0),(2038,6,'2021-08-02 18:06:34','2021-08-02 18:06:34','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-10','','','2021-08-02 18:06:34','2021-08-02 18:06:34','',2037,'https://lantern-realty.com/wp-content/uploads/2021/08/2021-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2039,6,'2021-08-02 18:06:34','2021-08-02 18:06:34','','LRD-Roster_072621.xlsx','','inherit','closed','closed','','lrd-roster_072621-2','','','2021-08-02 18:06:34','2021-08-02 18:06:34','',2037,'https://lantern-realty.com/wp-content/uploads/2021/08/LRD-Roster_072621.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2040,9,'2021-08-03 17:16:10','2021-08-03 17:16:10','<div dir=\"ltr\"><div><br></div><div>Hey Everyone!</div><div><br></div><div>I hope you have been having a fantastic summer so far.  Please note Wednesday&#39;s meeting is via <b>ZOOM ONLY</b> (yes, it will be recorded) and the start time will be at <b>11:30 a.m</b>. this time.  </div><div><br></div><div>We have a great guest speaker tomorrow, licensed geologist Robert Payne of Cedar Rock Environmental, he will have a wealth of information promising to make us more educated on the subject of residential heating storage tanks, what we need to look for and what we need to know. Please make sure you join us, if you haven&#39;t already had a transaction with storage tanks involved, you will. It&#39;s only a matter of time.  </div><div><br></div><div>Zoom link is below, I hope to see you all there!</div><div><br></div><div><br><b><font color=\"#0000ff\">Topic: Lantern Realty Team Meeting<br>Time: Aug 4, 2021 <span style=\"background-color:rgb(255,255,0)\">11:30 AM</span> Eastern Time (US and Canada)<br></font></b><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/87367750552?pwd=b3NJMktwRG1sUUpWSHhrY1dZbHVEUT09\">https://us02web.zoom.us/j/87367750552?pwd=b3NJMktwRG1sUUpWSHhrY1dZbHVEUT09</a><br><br>Meeting ID: 873 6775 0552<br>Passcode: 061722<br>One tap mobile<br>+19292056099,,87367750552#,,,,*061722# US (New York)<br>+13017158592,,87367750552#,,,,*061722# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 873 6775 0552<br>Passcode: 061722<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kBPkBo31I\">https://us02web.zoom.us/u/kBPkBo31I</a><br><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><br clear=\"all\"><div><br></div>','Lantern Realty Team Meeting Invite - Wednesday August 4 at 11:30 a.m.','','publish','closed','open','','lantern-realty-team-meeting-invite-wednesday-august-4-at-1130-a-m','','','2021-08-03 17:16:10','2021-08-03 17:16:10','',0,'https://lantern-realty.com/?p=2040',0,'post','',0),(2041,0,'2021-08-04 12:23:42','2021-08-04 12:23:42','','real estate pic','','inherit','','closed','','real-estate-pic','','','2021-08-04 12:23:42','2021-08-04 12:23:42','',0,'https://lantern-realty.com/real-estate-pic/',0,'attachment','image/jpeg',0),(2042,6,'2021-08-05 12:35:55','2021-08-05 12:35:55','<div dir=\"ltr\">I had a situation arise recently with a listing I have coming up.  The owner informed us that they are in forbearance because of Covid.  I wasn&#39;t sure if this would be considered a material fact so I emailed the NCREC.  Below is guidance from Steve Fussell, Chief Consumer Protection Officer with the NCREC if you come across the same situation.  <div><br></div><div>to Steve:</div><div><span style=\"color:rgb(0,0,0)\"><i>I have a client that is in forbearance with his lender.  Is this a material fact that should be disclosed to all parties?</i></span></div><div><font color=\"#000000\"><i><br></i></font></div><div><font color=\"#000000\">From Steve:</font></div><div><font color=\"#000000\"><br></font></div><div><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\"><i><span style=\"color:rgb(31,73,125)\">Your email has been forwarded to me for reply. If the sale of a property will not produce sufficient funds to pay off the mortgage and all other debts, then the seller’s inability to pay off all debt is a material fact which must be </span>disclose<span style=\"color:rgb(31,73,125)\"> to all interested parties in a timely manner (i.e. before a contract is formed).</span></i><br></p><p class=\"MsoNormal\" style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(31,73,125)\"><u></u> </span></p><div><br></div>','Is Forbearance a Material Fact?','','publish','closed','open','','is-forbearance-a-material-fact','','','2021-08-05 12:35:55','2021-08-05 12:35:55','',0,'https://lantern-realty.com/?p=2042',0,'post','',0),(2043,0,'2021-08-06 23:25:55','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-08-06 23:25:55','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2043',0,'post','',0),(2044,0,'2021-08-06 23:35:57','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-08-06 23:35:57','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2044',0,'post','',0),(2045,0,'2021-08-07 01:06:02','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-08-07 01:06:02','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2045',0,'post','',0),(2046,6,'2021-08-07 13:35:55','2021-08-07 13:35:55','<div dir=\"ltr\">Hello Folks, just a few notes for the weekend.  Hope you all had a great week.  <div><br></div><div>- Here is the link for the Team Meeting class we had last Wednesday with Cedar Rock Environmental.  The discussion was on underground storage tanks.  Very good information.  </div><div><br></div><div><a href=\"https://youtu.be/wZTIXKSok8w\">https://youtu.be/wZTIXKSok8w</a></div><div><br></div><div>- Lastly, in our Offer to Purchase Boot Camp on Thursday we ended our discussion on the topics of Brownfields.  Bit of a rabbit trail but good info nonetheless.  Here is a link to all of the registered brownfields in NC.  This is a material fact that must be disclosed to all parties in a transaction.  Good info to have moving forward.  </div><div><br></div><div><a href=\"https://ofmpub.epa.gov/apex/cimc/f?p=CIMC:73::::73:P71_WELSEARCH:%7CCity%7CNC%7C%7C%7Ctrue%7Cfalse%7Cfalse%7Cfalse%7Cfalse%7Cfalse%7C(BF_ASSESS_IND%3D%27Y%27)OR(BF_ASSESS_PILOT_IND%3D%27Y%27)OR(BF_CLEANUP_IND%3D%27Y%27)OR(BF_RLF_GRANT_IND%3D%27Y%27)OR(BF_RLF_PILOT_IND%3D%27Y%27)OR(BF_128A_IND%3D%27Y%27)OR(BF_TBA_IND%3D%27Y%27)%7C-1%7Csites%7CN%7Cbasic\">https://ofmpub.epa.gov/apex/cimc/f?p=CIMC:73::::73:P71_WELSEARCH:%7CCity%7CNC%7C%7C%7Ctrue%7Cfalse%7Cfalse%7Cfalse%7Cfalse%7Cfalse%7C(BF_ASSESS_IND%3D%27Y%27)OR(BF_ASSESS_PILOT_IND%3D%27Y%27)OR(BF_CLEANUP_IND%3D%27Y%27)OR(BF_RLF_GRANT_IND%3D%27Y%27)OR(BF_RLF_PILOT_IND%3D%27Y%27)OR(BF_128A_IND%3D%27Y%27)OR(BF_TBA_IND%3D%27Y%27)%7C-1%7Csites%7CN%7Cbasic</a><br clear=\"all\"><div><br></div><div>- Lastly, a few of us were pleasantly surprised on Friday to see Deana walk in our office!  The fight in this girl is enormous.  Such an inspiration.  She is doing well and thankful for all of the continued prayers.  </div><div><br></div>','News &amp; Notes for the Weekend!','','publish','closed','open','','news-notes-for-the-weekend','','','2021-08-07 13:35:55','2021-08-07 13:35:55','',0,'https://lantern-realty.com/?p=2046',0,'post','',0),(2047,8,'2021-08-09 17:46:13','2021-08-09 17:46:13','<div>  A deposit was made in the amount of&nbsp;$7110.00 on August 4th -Who’s is it??<br><br><br><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><b style=\"word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">Paula G Severt</i></b>&nbsp;<img title=\"Emoji\" alt=\"Emoji\" class=\"yiv2427752816ydpc53d7409yahoo-emoji-wrapper\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding: 0px 2px; vertical-align: middle; word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><span style=\"word-wrap: break-word !important;\">Owner, Broker/ Realtor®</span><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><a rel=\"nofollow noopener\" target=\"_blank\" href=\"http://lantern-realty.com/\" style=\"-webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">lantern-realty.com</a><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Lantern Realty and Development LLC</div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">\"Let Us Guide You Home\"</i></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Cell&nbsp;<a href=\"tel:704-232-3433\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/1\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-232-3433</a><br style=\"word-wrap: break-word !important;\">Office&nbsp;<a href=\"tel:704-298-0087\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/2\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-298-0087</a><br style=\"word-wrap: break-word !important;\">eMail Signature<br style=\"word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\">NOTE: BUYERS and SELLERS, NC real estate agents are required&nbsp;by law&nbsp;to provide&nbsp;the&nbsp;\"Working with Real Estate Agents Brochure\"&nbsp;Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure.&nbsp;<br style=\"word-wrap: break-word !important;\"><a href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"4\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a>&nbsp;<br style=\"word-wrap: break-word !important;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br><p class=\"yahoo-quoted-begin\" style=\"font-size: 15px; color: #715FFA; padding-top: 15px; margin-top: 0\">On Saturday, August 7, 2021, 9:32 AM, Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com&gt\" >ch2realty@gmail.com&gt</a>; wrote:</p><blockquote class=\"iosymail\"><div id=\"yiv8457154798\"><div dir=\"ltr\">Hello Folks, just a few notes for the weekend.&nbsp; Hope you all had a great week.&nbsp;&nbsp;<div><br></div><div>- Here is the link for the Team Meeting class we had last Wednesday with Cedar Rock Environmental.&nbsp; The discussion was on underground storage tanks.&nbsp; Very good information.&nbsp;&nbsp;</div><div><br></div><div><a rel=\"nofollow noopener noreferrer\" target=\"_blank\" href=\"https://youtu.be/wZTIXKSok8w\">https://youtu.be/wZTIXKSok8w</a></div><div><br></div><div>- Lastly, in our Offer to Purchase Boot Camp on Thursday we ended our discussion on the topics of Brownfields.&nbsp; Bit of a rabbit trail but good info nonetheless.&nbsp; Here is a link to all of the registered brownfields in NC.&nbsp; This is a material fact that must be disclosed to all parties in a transaction.&nbsp; Good info to have moving forward.&nbsp;&nbsp;</div><div><br></div><div><a rel=\"nofollow noopener noreferrer\" target=\"_blank\" href=\"https://ofmpub.epa.gov/apex/cimc/f?p=CIMC:73::::73:P71_WELSEARCH:%7CCity%7CNC%7C%7C%7Ctrue%7Cfalse%7Cfalse%7Cfalse%7Cfalse%7Cfalse%7C(BF_ASSESS_IND%3D%27Y%27)OR(BF_ASSESS_PILOT_IND%3D%27Y%27)OR(BF_CLEANUP_IND%3D%27Y%27)OR(BF_RLF_GRANT_IND%3D%27Y%27)OR(BF_RLF_PILOT_IND%3D%27Y%27)OR(BF_128A_IND%3D%27Y%27)OR(BF_TBA_IND%3D%27Y%27)%7C-1%7Csites%7CN%7Cbasic\">https://ofmpub.epa.gov/apex/cimc/f?p=CIMC:73::::73:P71_WELSEARCH:%7CCity%7CNC%7C%7C%7Ctrue%7Cfalse%7Cfalse%7Cfalse%7Cfalse%7Cfalse%7C(BF_ASSESS_IND%3D%27Y%27)OR(BF_ASSESS_PILOT_IND%3D%27Y%27)OR(BF_CLEANUP_IND%3D%27Y%27)OR(BF_RLF_GRANT_IND%3D%27Y%27)OR(BF_RLF_PILOT_IND%3D%27Y%27)OR(BF_128A_IND%3D%27Y%27)OR(BF_TBA_IND%3D%27Y%27)%7C-1%7Csites%7CN%7Cbasic</a><br clear=\"all\"><div><br></div><div>- Lastly, a few of us were pleasantly surprised on Friday to see Deana walk in our office!&nbsp; The fight in this girl is enormous.&nbsp; Such an inspiration.&nbsp; She is doing well and thankful for all of the continued prayers.&nbsp;&nbsp;</div><div><br></div>','News &amp; Notes for the Weekend!','','publish','closed','open','','news-notes-for-the-weekend-2','','','2021-08-09 17:46:13','2021-08-09 17:46:13','',0,'https://lantern-realty.com/?p=2047',0,'post','',0),(2048,0,'2021-08-09 22:06:02','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-08-09 22:06:02','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2048',0,'post','',0),(2049,0,'2021-08-09 22:16:08','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-08-09 22:16:08','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2049',0,'post','',0),(2051,0,'2021-08-10 18:02:55','2021-08-10 18:02:55','','IMG_4816','','inherit','','closed','','img_4816','','','2021-08-10 18:02:55','2021-08-10 18:02:55','',0,'https://lantern-realty.com/img_4816/',0,'attachment','image/jpeg',0),(2053,0,'2021-08-10 19:06:22','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-08-10 19:06:22','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2053',0,'post','',0),(2054,0,'2021-08-11 12:57:38','2021-08-11 12:57:38','','pic c','','inherit','','closed','','pic-c','','','2021-08-11 12:57:38','2021-08-11 12:57:38','',0,'https://lantern-realty.com/pic-c/',0,'attachment','image/jpeg',0),(2055,0,'2021-08-13 12:38:56','2021-08-13 12:38:56','','me 10.21','','inherit','','closed','','me-10-21','','','2021-08-13 12:38:56','2021-08-13 12:38:56','',0,'https://lantern-realty.com/me-10-21/',0,'attachment','image/jpeg',0),(2056,0,'2021-08-16 16:09:49','2021-08-16 16:09:49','','real estate pic','','inherit','','closed','','real-estate-pic-2','','','2021-08-16 16:09:49','2021-08-16 16:09:49','',0,'https://lantern-realty.com/real-estate-pic-2/',0,'attachment','image/jpeg',0),(2057,0,'2021-08-16 18:15:35','2021-08-16 18:15:35','','IMG_4816','','inherit','','closed','','img_4816-2','','','2021-08-16 18:15:35','2021-08-16 18:15:35','',0,'https://lantern-realty.com/img_4816-2/',0,'attachment','image/jpeg',0),(2058,6,'2021-08-16 19:16:30','2021-08-16 19:16:30','<div dir=\"ltr\">Good Afternoon, here are a few notes for you as we enter another productive week!!!<div><br></div><div>- Just an FYI, make sure you are accessing the team website if you have missed any of our announcements.  Go to the \"Team Portal\" tab at the bottom of the front page.  The password is lantern704.  </div><div><br></div><div>- As we tiptoe through Covid restrictions, I want to make sure we are all as diligent as possible when being around others.  If you have any symptoms at all, or aren&#39;t feeling well please be respectful of others and stay at home.  One of the great aspects of Lantern is that we have plenty of tools at your disposal.  Reach out to someone in the office if you aren&#39;t feeling well.  We will be glad to help!</div><div><br></div><div>- Dont forget we have our Tuesday brainstorming session tomorrow morning at 945 in the Kannapolis office.  This is a great way to network with fellow agents and pick up ideas that will help all of us grow.  </div><div><br></div><div>- Good news!  For those that are looking to up your Tik Tok game, we finally have nailed down details for Kim Drakulich&#39;s Tik Tok Content class.  The class will be on Thursday, September 2nd from 4-6pm at 26 Acres brewing in Concord.  This class will be a discussion on content to add to your Tik Tok account.  IT IS NOT A BEGINNER CLASS.  If you havent downloaded the app and played around with it, no need to show up.  Also, it will not be recorded.  Terry Whitesell has set us up with some drink tickets for those that come as well. </div><div><br></div><div>- Speaking of classes, we are working with the NCREC on presenting a class to our office in the near future.  More details to come.  </div><div><br></div><div>- The next team meeting will be via Zoom on Sept. 1stat 11am.  Rudy King w/ Fairway Mortgage will be presenting a class on reverse mortgages.  Rudy is one of the best minds on this subject.  I encourage as many of you to attend as possible. </div><div><br></div><div>- Lastly, we have been a little behind on social media.  If you have come on board in recent months and we havent made a social media announcement surrounding your onboarding, please send Paula Severt your photo and a short bio.  Over the next few weeks we will be getting out as much as possible.  This can be a great way to advertise on social media.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/08/2021-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/08/LRD-Roster_080621.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_080621.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-22','','','2021-08-16 19:16:30','2021-08-16 19:16:30','',0,'https://lantern-realty.com/?p=2058',0,'post','',0),(2059,6,'2021-08-16 19:16:30','2021-08-16 19:16:30','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-1-7','','','2021-08-16 19:16:30','2021-08-16 19:16:30','',2058,'https://lantern-realty.com/wp-content/uploads/2021/08/2021-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2060,6,'2021-08-16 19:16:30','2021-08-16 19:16:30','','LRD-Roster_080621.xlsx','','inherit','closed','closed','','lrd-roster_080621','','','2021-08-16 19:16:30','2021-08-16 19:16:30','',2058,'https://lantern-realty.com/wp-content/uploads/2021/08/LRD-Roster_080621.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2061,6,'2021-08-24 22:16:33','2021-08-24 22:16:33','<div dir=\"ltr\">Good Evening, just a few notes for your mid week review.<div><br></div><div>- I have attached an updated Education schedule.  </div><div><br></div><div>- Please remember to say a prayer or send good thoughts out to your fell Lantern agents.  This year has been rough.  We have agents going through some pretty taxing physical and mental situations.  We&#39;ve also had the severe floods near our Asheville office as well as the increased Covid risks.  If there is anything Paula, Deana or myself can do please reach out to us.  This career is tough enough on us but you dont have to travel that road alone. </div><div><br></div><div>- Those CCAR members on this email, i hope you saw your email fro Morgan regarding FREE CE and GenUp classes coming in September.  Make sure you sign up now.  They will be via Zoom.  Go to the CCAR web page for more details.</div><div><br></div><div>- To our Harrisburg team members, make sure you are on our team call tomorrow.  Big news!!!!!</div><div><br></div><div>- Lastly, those that can, I encourage you to come to our Tuesday morning \"therapy sessions\" at the Kannapolis office at 945.  There is no agenda, we just share wins for the previous week and see how we can support and help each other going into the next week.</div><div><br></div><div>Thanks again for all you folks do.  You will never know how much you all mean to us.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/08/2021-Educational-Calendar-2.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-23','','','2021-08-24 22:16:33','2021-08-24 22:16:33','',0,'https://lantern-realty.com/?p=2061',0,'post','',0),(2062,6,'2021-08-24 22:16:33','2021-08-24 22:16:33','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-2-6','','','2021-08-24 22:16:33','2021-08-24 22:16:33','',2061,'https://lantern-realty.com/wp-content/uploads/2021/08/2021-Educational-Calendar-2.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2063,0,'2021-08-25 12:49:32','2021-08-25 12:49:32','','me 10.21','','inherit','closed','closed','','me-10-21-2','','','2021-09-04 02:07:20','2021-09-04 02:07:20','',0,'https://lantern-realty.com/me-10-21-2/',0,'attachment','image/jpeg',0),(2064,6,'2021-08-30 12:56:13','2021-08-30 12:56:13','<div dir=\"ltr\">Good Morning All, hope you had a blessed weekend.  Here are a few notes to start your week.<div><br></div><div>-  Our team meeting will be this Wednesday @ 11am.  It will be Zoom only.  Rudy King with Fairway Mortgage will be with us to explain reverse mortgages and HECM loans.  This should be very valuable.  Don&#39;t miss it!  We will be recording in case you do. </div><div><br></div><div>- We will be moving our Harrisburg office.  As of Wednesday September 1st our new Harrisburg Address will be 4350 Main Street Suite 215, Harrisburg, NC 28075.  This is part of the Harrisburg Town Center complex and a major upgrade for our Harrisburg office.  </div><div><br></div><div>- I have attached our Education Calendar.  Our much anticipated \"Tik Tok Content Class\" is coming up this Thursday!  It will be held at 26 Acres Brewing  in Concord.  Drink tickets will be available.  This class will be for those with a modest understanding of Tik Tok.  It is NOT a beginner class.  </div><div><br></div><div>- As  the Delta Variant continues to spread we ask that you keep others in mind.  Make sure you are abiding by all local protocols.  If you feel ill or think you may have been exposed, please stay home.  We have plenty of support in every office to help you if you have to quarantine.  </div><div><br></div><div>Thank you as always for your hard work!  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/08/2021-Educational-Calendar-3.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/08/LRD-Roster_080621-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_080621.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-24','','','2021-08-30 12:56:13','2021-08-30 12:56:13','',0,'https://lantern-realty.com/?p=2064',0,'post','',0),(2065,6,'2021-08-30 12:56:13','2021-08-30 12:56:13','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-3-3','','','2021-08-30 12:56:13','2021-08-30 12:56:13','',2064,'https://lantern-realty.com/wp-content/uploads/2021/08/2021-Educational-Calendar-3.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2066,6,'2021-08-30 12:56:13','2021-08-30 12:56:13','','LRD-Roster_080621.xlsx','','inherit','closed','closed','','lrd-roster_080621-1','','','2021-08-30 12:56:13','2021-08-30 12:56:13','',2064,'https://lantern-realty.com/wp-content/uploads/2021/08/LRD-Roster_080621-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2067,0,'2021-08-30 18:30:38','2021-08-30 18:30:38','','Cecilia Profile Picture','','inherit','','closed','','cecilia-profile-picture','','','2021-08-30 18:30:38','2021-08-30 18:30:38','',0,'https://lantern-realty.com/cecilia-profile-picture/',0,'attachment','image/jpeg',0),(2068,0,'2021-08-31 14:12:52','2021-08-31 14:12:52','','WEB-3','','inherit','','closed','','web-3','','','2021-08-31 14:12:52','2021-08-31 14:12:52','',0,'https://lantern-realty.com/web-3/',0,'attachment','image/jpeg',0),(2069,9,'2021-08-31 16:16:12','2021-08-31 16:16:12','<div dir=\"ltr\"><div>Hey All,</div><div><br></div><div>See Zoom link below for a team meeting you don&#39;t want to miss.  We have a special guest, Rudy King with Fairway Mortgage, discussing reverse mortgages and how they can help your clients and in turn help you. Here is yet another avenue to be informed and help your clients succeed...<br><b>Topic: Kannapolis Team Meeting w/ Rudy King Reverse Mortgage<br>Time: Sep 1, 2021 11:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/88570923048?pwd=UVoyUWFsRDRFOUowWUEwQWpnanpHdz09\">https://us02web.zoom.us/j/88570923048?pwd=UVoyUWFsRDRFOUowWUEwQWpnanpHdz09</a><br><br>Meeting ID: 885 7092 3048<br>Passcode: 607364<br>One tap mobile<br>+13017158592,,88570923048#,,,,*607364# US (Washington DC)<br>+13126266799,,88570923048#,,,,*607364# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 885 7092 3048<br>Passcode: 607364<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kcx4Zqkap4\">https://us02web.zoom.us/u/kcx4Zqkap4</a><br><br></div><div><br></div><div><br></div><br clear=\"all\"><div><br></div>','Lantern Realty Team Meeting w/Rudy King - Fairway Mortgage Reverse Mortgage','','publish','closed','open','','lantern-realty-team-meeting-w-rudy-king-fairway-mortgage-reverse-mortgage','','','2021-08-31 16:16:12','2021-08-31 16:16:12','',0,'https://lantern-realty.com/?p=2069',0,'post','',0),(2070,0,'2021-09-01 13:43:09','2021-09-01 13:43:09','','thumbnail-1','','inherit','','closed','','thumbnail-1','','','2021-09-01 13:43:09','2021-09-01 13:43:09','',0,'https://lantern-realty.com/thumbnail-1/',0,'attachment','image/jpeg',0),(2072,1,'2021-09-04 00:10:15','2021-09-04 00:10:15','','Karie_Arem','','inherit','','closed','','karie_arem','','','2021-09-04 00:10:15','2021-09-04 00:10:15','',2023,'https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem.jpg',0,'attachment','image/jpeg',0),(2073,1,'2021-09-04 01:48:34','2021-09-04 01:48:34','','Helen Matthews','','inherit','closed','closed','','481-revision-v1','','','2021-09-04 01:48:34','2021-09-04 01:48:34','',481,'https://lantern-realty.com/?p=2073',0,'revision','',0),(2076,1,'2021-09-04 01:50:46','2021-09-04 01:50:46','<!-- wp:paragraph -->\n<p>Thank you for checking out my profile! I moved to NC in 1996 and never looked back. I love the Concord area and all that it has to offer. I worked in non-profit for over 16 years and then decided to pursue my dream of Real Estate in 2017. I work with both buyers and sellers and have alot of experience with first time home buyers. Buying or selling a home can be stressful, but I am here to make the transaction as smooth as possible for you. Whether you\'re getting the keys to your new home or handing over the keys to the new owners, I will guide you through the entire process and get you to the closing table. I look forward to the opportunity to work with you!</p>\n<!-- /wp:paragraph -->','Karie Arem','','inherit','closed','closed','','2023-revision-v1','','','2021-09-04 01:50:46','2021-09-04 01:50:46','',2023,'https://lantern-realty.com/?p=2076',0,'revision','',0),(2075,1,'2021-09-04 01:48:49','2021-09-04 01:48:49','','Helen Robb','','inherit','closed','closed','','481-revision-v1','','','2021-09-04 01:48:49','2021-09-04 01:48:49','',481,'https://lantern-realty.com/?p=2075',0,'revision','',0),(2077,1,'2021-09-04 01:59:06','2021-09-04 01:59:06','<!-- wp:paragraph -->\n<p>I\'ve been in all aspects of real estate for well over 20 years. I love working with buyers, sellers and investors. I have worked in the Western North Carolina market for most of those years and always look forward to seeing what the next day brings. I have taught, motivated highly successful agents and teams throughout my tenure. I feel I have found the perfect fit at Lantern. Small town family feel with all the technical benefits. They listen and respond and make our experience one of the best ever. And that is passed on to the agents who do the same for their buyers and sellers. Please feel free to reach out at anytime. I promise you will not be disappointed !</p>\n<!-- /wp:paragraph -->','IIona Kenrick','','publish','closed','closed','','iiona-kenrick','','','2021-09-04 01:59:11','2021-09-04 01:59:11','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2077',40,'houzez_agent','',0),(2078,1,'2021-09-04 01:59:06','2021-09-04 01:59:06','<!-- wp:paragraph -->\n<p>I\'ve been in all aspects of real estate for well over 20 years. I love working with buyers, sellers and investors. I have worked in the Western North Carolina market for most of those years and always look forward to seeing what the next day brings. I have taught, motivated highly successful agents and teams throughout my tenure. I feel I have found the perfect fit at Lantern. Small town family feel with all the technical benefits. They listen and respond and make our experience one of the best ever. And that is passed on to the agents who do the same for their buyers and sellers. Please feel free to reach out at anytime. I promise you will not be disappointed !</p>\n<!-- /wp:paragraph -->','IIona Kenrick','','inherit','closed','closed','','2077-revision-v1','','','2021-09-04 01:59:06','2021-09-04 01:59:06','',2077,'https://lantern-realty.com/?p=2078',0,'revision','',0),(2079,1,'2021-09-04 02:02:02','2021-09-04 02:02:02','<!-- wp:paragraph -->\n<p>Casey is a North Carolina native and has been living in the amazing Asheville area for 11 years. Western North Carolina is home and Casey knows how captivating the community, lifestyle and beauty of this area which drives families to make it home. Whether you are selling property or looking to buy, let Casey help you make that transition feel as easy as coming home.</p>\n<!-- /wp:paragraph -->','Casey Paige Maness','','publish','closed','closed','','casey-paige-maness','','','2021-09-04 02:02:10','2021-09-04 02:02:10','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2079',75,'houzez_agent','',0),(2080,1,'2021-09-04 02:02:02','2021-09-04 02:02:02','<!-- wp:paragraph -->\n<p>Casey is a North Carolina native and has been living in the amazing Asheville area for 11 years. Western North Carolina is home and Casey knows how captivating the community, lifestyle and beauty of this area which drives families to make it home. Whether you are selling property or looking to buy, let Casey help you make that transition feel as easy as coming home.</p>\n<!-- /wp:paragraph -->','Casey Paige Maness','','inherit','closed','closed','','2079-revision-v1','','','2021-09-04 02:02:02','2021-09-04 02:02:02','',2079,'https://lantern-realty.com/?p=2080',0,'revision','',0),(2092,9,'2021-09-15 17:26:12','2021-09-15 17:26:12','<div dir=\"ltr\">Hey Guys,<div><br></div><div>It will be a <u style=\"font-weight:bold\">Zoom and in-person class at the Kannapolis office.</u>  September 16 from 10-12.  Below is the link to our first class in the Kindle series.  If you are a new agent or a \"seasoned\" agent, these are great classes to help you kick off your real estate business or help you break out of that rut and get that fire roaring again.</div><div><br></div><div>Join us either via Zoom or in-person at the Kannapolis office as our own Laura Overcash leads our first Kindle class....</div><div><br><b>Topic: KINDLE - Lead Generation/Database<br>Time: Sep 16, 2021 10:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/81585048179?pwd=bFFSbEg2S05QaGNrRC9GQjBWOVFQZz09\">https://us02web.zoom.us/j/81585048179?pwd=bFFSbEg2S05QaGNrRC9GQjBWOVFQZz09</a><br><br>Meeting ID: 815 8504 8179<br>Passcode: 070262<br>One tap mobile<br>+13126266799,,81585048179#,,,,*070262# US (Chicago)<br>+19292056099,,81585048179#,,,,*070262# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 815 8504 8179<br>Passcode: 070262<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kbgW4o206Y\">https://us02web.zoom.us/u/kbgW4o206Y</a><br><br><div><br></div>','KINDLE Class - Lead Generation Zoom &amp; In person Thursday Septemeber 16 at 10 AM','','publish','closed','open','','kindle-class-lead-generation-zoom-in-person-thursday-septemeber-16-at-10-am','','','2021-09-15 17:26:12','2021-09-15 17:26:12','',0,'https://lantern-realty.com/?p=2092',0,'post','',0),(2082,1,'2021-09-04 02:04:11','2021-09-04 02:04:11','<!-- wp:paragraph -->\n<p>I am a native of New Jersey, but I have resided in the Charlotte area since 1996. My husband and I have 2 daughters. When I am not working, I enjoy spending time with my family, getting involved in my community by sponsoring various events throughout the year, reading, playing golf, and traveling. I graduated from Allen Tate real estate school with a Broker’s license in 2004. I have experience in new construction (both professionally and personally), residential sales, nationwide relocation, and investments. Over the years, I have continued my real estate education and have earned several designations such as my ABR (Accredited Buyer\'s Representative) SRS (Seller\'s Representative Specialist) SPS (Strategic Pricing Specialist) &amp;amp; MRP (Military Relocation Professional). I am energetic, detail oriented and driven to succeed. I get great satisfaction out of being able to put my energy into helping people make their best real estate decisions. I work diligently and professionally to coordinate your real estate transaction from start to finish. Whether you are new to the market or an experienced investor, I have the expertise, proven track record, and resources to help you achieve your real estate goals. I promise to give you the professional service you and your family deserve.</p>\n<!-- /wp:paragraph -->','Cecilia Maria Ferrari','','publish','closed','closed','','cecilia-maria-ferrari','','','2021-09-04 02:04:15','2021-09-04 02:04:15','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2082',35,'houzez_agent','',0),(2083,1,'2021-09-04 02:04:11','2021-09-04 02:04:11','<!-- wp:paragraph -->\n<p>I am a native of New Jersey, but I have resided in the Charlotte area since 1996. My husband and I have 2 daughters. When I am not working, I enjoy spending time with my family, getting involved in my community by sponsoring various events throughout the year, reading, playing golf, and traveling. I graduated from Allen Tate real estate school with a Broker’s license in 2004. I have experience in new construction (both professionally and personally), residential sales, nationwide relocation, and investments. Over the years, I have continued my real estate education and have earned several designations such as my ABR (Accredited Buyer\'s Representative) SRS (Seller\'s Representative Specialist) SPS (Strategic Pricing Specialist) &amp;amp; MRP (Military Relocation Professional). I am energetic, detail oriented and driven to succeed. I get great satisfaction out of being able to put my energy into helping people make their best real estate decisions. I work diligently and professionally to coordinate your real estate transaction from start to finish. Whether you are new to the market or an experienced investor, I have the expertise, proven track record, and resources to help you achieve your real estate goals. I promise to give you the professional service you and your family deserve.</p>\n<!-- /wp:paragraph -->','Cecilia Maria Ferrari','','inherit','closed','closed','','2082-revision-v1','','','2021-09-04 02:04:11','2021-09-04 02:04:11','',2082,'https://lantern-realty.com/?p=2083',0,'revision','',0),(2084,1,'2021-09-04 02:07:35','2021-09-04 02:07:35','<!-- wp:paragraph -->\n<p>Love Where You Live...For me this has always been the most important factor when buying a home. I\'ve lived in many states and always found the journey of finding a new home to be an exciting one. Originally from Michigan, after spending several years in Florida my husband and I wanted to find that perfect place where we could raise a family and get involved in a community diverse and moved to Asheville. Recently making a move to Hickory with our two daughters, I know have the pleasure of working in both areas. Whether buying or selling, I\'d love to bring the knowledge I have and passion for the industry to help you make the right decision for your future.</p>\n<!-- /wp:paragraph -->','Jenna Stoll','','publish','closed','closed','','jenna-stoll','','','2021-09-04 02:07:40','2021-09-04 02:07:40','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2084',100,'houzez_agent','',0),(2085,1,'2021-09-04 02:07:35','2021-09-04 02:07:35','<!-- wp:paragraph -->\n<p>Love Where You Live...For me this has always been the most important factor when buying a home. I\'ve lived in many states and always found the journey of finding a new home to be an exciting one. Originally from Michigan, after spending several years in Florida my husband and I wanted to find that perfect place where we could raise a family and get involved in a community diverse and moved to Asheville. Recently making a move to Hickory with our two daughters, I know have the pleasure of working in both areas. Whether buying or selling, I\'d love to bring the knowledge I have and passion for the industry to help you make the right decision for your future.</p>\n<!-- /wp:paragraph -->','Jenna Stoll','','inherit','closed','closed','','2084-revision-v1','','','2021-09-04 02:07:35','2021-09-04 02:07:35','',2084,'https://lantern-realty.com/?p=2085',0,'revision','',0),(2086,1,'2021-09-04 02:10:35','2021-09-04 02:10:35','','Misty Lynn Moss','','publish','closed','closed','','misty-lynn-moss','','','2021-09-04 02:10:41','2021-09-04 02:10:41','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2086',60,'houzez_agent','',0),(2087,1,'2021-09-04 02:10:35','2021-09-04 02:10:35','','Misty Lynn Moss','','inherit','closed','closed','','2086-revision-v1','','','2021-09-04 02:10:35','2021-09-04 02:10:35','',2086,'https://lantern-realty.com/?p=2087',0,'revision','',0),(2088,6,'2021-09-08 20:15:59','2021-09-08 20:15:59','<div dir=\"ltr\"><div style=\"color:rgb(0,0,0)\">Good Afternoon, just a few news &amp; notes for the remainder of the week.</div><div style=\"color:rgb(0,0,0)\"><br></div><div style=\"color:rgb(0,0,0)\">- A few of you have mentioned that having some form of agent recognition would be a nice touch.  We are in the process of working with our vendor partners to be able to provide social media recognition on a monthly/quarterly basis.  More to come!  Thanks so much for the great ideas.  Keep them coming.</div><div style=\"color:rgb(0,0,0)\"><br></div><div style=\"color:rgb(0,0,0)\">- If we are having to write a referral check to an outside agency we are going to start adding a $25 charge to your commission.  You may want to see if the closing attorney can cut the check separately.  This would reduce the workload on our office and speed up payment to the referring firm.</div><div style=\"color:rgb(0,0,0)\"><br></div><div style=\"color:rgb(0,0,0)\">- a few dates for you to write on your calendar!!!! </div><div style=\"color:rgb(0,0,0)\">  <div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/09/2021-Educational-Calendar.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/09/LRD-Roster_083021.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_083021.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-25','','','2021-09-08 20:15:59','2021-09-08 20:15:59','',0,'https://lantern-realty.com/?p=2088',0,'post','',0),(2089,6,'2021-09-08 20:15:59','2021-09-08 20:15:59','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-11','','','2021-09-08 20:15:59','2021-09-08 20:15:59','',2088,'https://lantern-realty.com/wp-content/uploads/2021/09/2021-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2090,6,'2021-09-08 20:15:59','2021-09-08 20:15:59','','LRD-Roster_083021.xlsx','','inherit','closed','closed','','lrd-roster_083021','','','2021-09-08 20:15:59','2021-09-08 20:15:59','',2088,'https://lantern-realty.com/wp-content/uploads/2021/09/LRD-Roster_083021.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2091,0,'2021-09-09 17:46:01','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-09-09 17:46:01','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2091',0,'post','',0),(2093,0,'2021-09-17 15:16:40','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-09-17 15:16:40','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2093',0,'post','',0),(2094,6,'2021-09-17 21:06:11','2021-09-17 21:06:11','<div dir=\"ltr\">Good Afternoon, just a few notes as we enter the weekend.  Hope you all had a productive week.<div><br></div><div>- Melissa Jackling will be out of the office for the next two weeks so Paula will be handling compliance.  PLEASE be patient as she goes through the loops and gets folks paid.  Make sure you are submitting files as they are completed NOT after the transaction closes.  This will speed up the payment process tremendously. </div><div><br></div><div>- Make sure you are listing the types of properties you are familiar with.  Meaning, if you have never listed a lake home, get a mentor.  If you have never listed a commercial property, get a mentor.  Dont list properties outside of your service area.  Listing properties for which you have no familiarity are a disservice to your client and can be a violation of license law.  If you have questions, call your BIC or call me.  We have plenty of experience on our roster to help everyone out. </div><div><br></div><div>- We are planning on an Open House for our new Harrisburg location from 4-6 on Sept 29th.  Mark your calendars and stop by for some good food.  More details to come. </div><div><br></div><div>- Lastly, if you are looking for a real estate transaction coordinator, let me know.  We have some folks on our roster that are offering their services.  Could be a good way to better manage your time.  </div><div><br></div><div>Have a wonderful weekend!<br clear=\"all\"><div><br></div>','News &amp; Notes','','publish','closed','open','','news-notes-26','','','2021-09-17 21:06:11','2021-09-17 21:06:11','',0,'https://lantern-realty.com/?p=2094',0,'post','',0),(2095,0,'2021-09-21 15:37:18','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-09-21 15:37:18','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2095',0,'post','',0),(2096,0,'2021-09-21 22:16:40','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-09-21 22:16:40','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2096',0,'post','',0),(2097,6,'2021-09-22 14:36:16','2021-09-22 14:36:16','<div dir=\"ltr\">Good Morning, here are a few notes for you.<div><br></div><div>- Dont forget about our New Harrisburg office open house.  It will be Wednesday September 29th from 4p-6p.  Come by and have some food and fun.  Invite other agents outside of Lantern as well.  </div><div><br></div><div>- Nic&#39;s class \"How to Read a Closing Disclosure\" will be rescheduled for a future date. </div><div><br></div><div>- Dont forget tomorrow&#39;s Kindle class, \"Marketing Your Business\".  You should have recently received a Zoom invite.  It will be Zoom only.  </div><div><br></div><div>- I have attached the latest Education Calendar and Agent Roster.  </div><div><br></div><div>- Here is an invite to ALL agents for a great Outreach Opportunity!</div><div><br></div><div><div style=\"font-family:inherit\"><div dir=\"auto\" style=\"font-family:inherit\"><div id=\"gmail-m_3152188199445590328gmail-jsc_c_br\" style=\"padding:4px 16px 16px;font-family:inherit\"><div style=\"display:flex;font-family:inherit\"><div style=\"margin-top:5px;margin-bottom:5px;font-family:inherit\"><span dir=\"auto\" style=\"line-height:1.3333;display:block;max-width:100%;min-width:0px;font-size:0.9375rem;font-family:inherit;word-break:break-word\"><div style=\"margin:0.5em 0px 0px;white-space:pre-wrap;font-family:inherit\"><div dir=\"auto\" style=\"font-family:inherit\">Salisbury Blockworks - Tuesday, Oct 19th and  Saturday, Oct 23, 2021.<span style=\"margin:0px 1px;height:16px;width:16px;display:inline-flex;vertical-align:middle;font-family:inherit\"><img height=\"16\" width=\"16\" alt=\"👷‍♀️\" src=\"https://static.xx.fbcdn.net/images/emoji.php/v9/t5a/1/16/1f477_200d_2640.png\" class=\"gmail-CToWUd\" style=\"border: 0px;\"></span><span style=\"margin:0px 1px;height:16px;width:16px;display:inline-flex;vertical-align:middle;font-family:inherit\"><img height=\"16\" width=\"16\" alt=\"👷‍♂️\" src=\"https://static.xx.fbcdn.net/images/emoji.php/v9/t5c/1/16/1f477_200d_2642.png\" class=\"gmail-CToWUd\" style=\"border: 0px;\"></span>- hands on volunteering!</div></div><div style=\"margin:0.5em 0px 0px;white-space:pre-wrap;font-family:inherit\"><div dir=\"auto\" style=\"font-family:inherit\">It’s that time of year again…BlockWork! We know you don’t need an explanation of what a wonderful program it is, so here’s the basics for this year:</div></div><div style=\"margin:0.5em 0px 0px;white-space:pre-wrap;font-family:inherit\"><div dir=\"auto\" style=\"font-family:inherit\">Thanks to Lowe’s generous $100,000 grant through their 100 Hometowns program, we are able to expand the event to 2 blocks: 600 and 700 S. Ellis Street, and 2 days: Tuesday, October 19 for Lowes “Red Vest Day” and Saturday, October 23 for the regular “Make a Difference Day.” This year’s set-up will be similar to last year, with proper distancing and masking (masks provided by Lowes), and boxed breakfast and lunch.</div></div><div style=\"margin:0.5em 0px 0px;white-space:pre-wrap;font-family:inherit\"><div dir=\"auto\" style=\"font-family:inherit\">Last year Lantern Agents volunteered as well as <span style=\"font-family:inherit\"><a href=\"https://www.facebook.com/groups/405041850252667/user/722563899/?__cft__[0]=AZWnTcit8tyDGwpGbPudiRo7FWoy0qW-cY8cmY1g36KdoqQGuzPB0lw-QxIopsekDlfj3mnq-3tS6QYHtU8zZztALTOJTeYnJ9bEZx5eJH0erjT9VDl6tQ_aZC7XsOH5uH9t2ktkLBFJTgQqrKK2ofvB0zQNZezW84QfqVqLfR-sKWSBZr6eUp4eLnAvEDrTdr0&amp;__tn__=-]K-R\" role=\"link\" target=\"_blank\" style=\"text-decoration-line:none;outline:none;list-style:none;border-width:0px;border-style:initial;border-color:initial;padding:0px;margin:0px;background-color:transparent;text-align:inherit;display:inline;box-sizing:border-box;font-family:inherit\" rel=\"noopener\"><span style=\"font-family:inherit\"><span style=\"font-family:inherit\">Larry Laughter</span></span></a></span> capturing some amazing drone footage!  Use the link below to sign up.  If you could also let me know so I can keep you informed with updates!!  Last year several agents worked Saturday morning, if you&#39;re curious when others may be there. However, the opportunity is available all day!!</div></div><div style=\"margin:0.5em 0px 0px;white-space:pre-wrap;font-family:inherit\"><div dir=\"auto\" style=\"font-family:inherit\">   <span style=\"font-family:inherit\"><a href=\"https://form.jotform.com/81194406543961?fbclid=IwAR1atqANA33ugdn4oSVugdp8p8ppBnJv09715dSvWu14jemooxNWILJSIdU\" rel=\"nofollow noopener\" role=\"link\" target=\"_blank\" style=\"text-decoration-line:none;outline:none;list-style:none;border-width:0px;border-style:initial;border-color:initial;padding:0px;margin:0px;background-color:transparent;text-align:inherit;display:inline;box-sizing:border-box;font-family:inherit\">https://form.jotform.com/81194406543961</a></span></div><div dir=\"auto\" style=\"font-family:inherit\"><a href=\"https://www.facebook.com/photo/?fbid=10220710655700407&amp;set=gm.1026458171444362&amp;__cft__[0]=AZWnTcit8tyDGwpGbPudiRo7FWoy0qW-cY8cmY1g36KdoqQGuzPB0lw-QxIopsekDlfj3mnq-3tS6QYHtU8zZztALTOJTeYnJ9bEZx5eJH0erjT9VDl6tQ_aZC7XsOH5uH9t2ktkLBFJTgQqrKK2ofvB0zQNZezW84QfqVqLfR-sKWSBZr6eUp4eLnAvEDrTdr0&amp;__tn__=EH-R\" role=\"link\" target=\"_blank\" style=\"color:rgb(56,88,152);font-family:inherit;background-color:transparent;font-size:small;text-decoration-line:none;outline:none;list-style:none;border-width:0px;border-style:solid;padding:0px;margin:0px;min-width:0px;text-align:inherit;box-sizing:border-box;min-height:0px;display:inline\" rel=\"noopener\"><div style=\"background-color:rgb(254,254,254);width:500px;overflow:hidden;font-family:inherit;display:inline\"><div style=\"font-family:inherit;max-width:100%;min-width:500px;display:inline\"><div style=\"height:0px;overflow:hidden;font-family:inherit;padding-top:643.271px;display:inline\"><div style=\"font-family:inherit;height:643.271px;width:500px;display:inline\"><img height=\"431\" width=\"335\" alt=\"May be an image of one or more people and text\" src=\"https://scontent-atl3-2.xx.fbcdn.net/v/t1.6435-9/242557410_10220710655740408_7782720321274051556_n.jpg?_nc_cat=105&amp;_nc_rgb565=1&amp;ccb=1-5&amp;_nc_sid=825194&amp;_nc_ohc=hrNQ_kZYNAMAX_0T4Sr&amp;tn=nxnS806d-r1uQzLz&amp;_nc_ht=scontent-atl3-2.xx&amp;oh=65f314e2907200214ac7b64aa319cc03&amp;oe=616F042F\" class=\"gmail-CToWUd\" style=\"border: 0px; object-fit: cover; height: 643.271px; width: 500px;\"></div></div></div></div></a></div></div></span></div></div></div></div></div><div><br style=\"color:rgb(0,0,0)\"></div></div><div><br></div><div>Hope you are all doing well.  Let me know if you have any questions.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/09/LRD-Roster_083021-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_083021.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/09/2021-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-27','','','2021-09-22 14:36:16','2021-09-22 14:36:16','',0,'https://lantern-realty.com/?p=2097',0,'post','',0),(2098,6,'2021-09-22 14:36:16','2021-09-22 14:36:16','','LRD-Roster_083021.xlsx','','inherit','closed','closed','','lrd-roster_083021-1','','','2021-09-22 14:36:16','2021-09-22 14:36:16','',2097,'https://lantern-realty.com/wp-content/uploads/2021/09/LRD-Roster_083021-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2099,6,'2021-09-22 14:36:16','2021-09-22 14:36:16','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-1-8','','','2021-09-22 14:36:16','2021-09-22 14:36:16','',2097,'https://lantern-realty.com/wp-content/uploads/2021/09/2021-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2100,6,'2021-09-23 13:05:56','2021-09-23 13:05:56','<div dir=\"ltr\">Just a quick reminder of today&#39;s class.  Starts in 1 HOUR!!!!!!<div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: KINDLE - Marketing Your Business<br>Time: Sep 23, 2021 10:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/88570069031?pwd=QlBWeFdYS2t5MXI2WGJOVk95ZGRVdz09\">https://us02web.zoom.us/j/88570069031?pwd=QlBWeFdYS2t5MXI2WGJOVk95ZGRVdz09</a><br><br>Meeting ID: 885 7006 9031<br>Passcode: 114255<br>One tap mobile<br>+13126266799,,88570069031#,,,,*114255# US (Chicago)<br>+19292056099,,88570069031#,,,,*114255# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 885 7006 9031<br>Passcode: 114255<br>Find your local number: <a href=\"https://us02web.zoom.us/u/ktDhCsGl9\">https://us02web.zoom.us/u/ktDhCsGl9</a><br><br><div><br></div>','Kindle Class - Marketing Your Business','','publish','closed','open','','kindle-class-marketing-your-business','','','2021-09-23 13:05:56','2021-09-23 13:05:56','',0,'https://lantern-realty.com/?p=2100',0,'post','',0),(2101,6,'2021-09-28 13:46:21','2021-09-28 13:46:21','<div dir=\"ltr\">Good Morning, a few notes for your week.<div><br></div><div>- Another of our Kindle classes is coming this Thursday.  It will be at 10am via Zoom.  Sarah Romesburg will be teaching \"Pricing &amp; CMA&#39;s\".  This class is for everyone, not just newer agents.  I have also attached the educational calendar for other upcoming events. </div><div><br></div><div>- I will get out class videos posted to our YouTube channel ASAP.  We are experiencing some technical difficulties.</div><div><br></div><div>- Dont forget our Open House this Wednesday at our new Harrisburg office.  It will be from 4p-6p.  Our new Harrisburg office address is 4350 Main St., suite 215 Harrisburg, NC 28075.  Come by and check it out and meet everyone!<br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/09/LRD-Roster_092321.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_092321.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/09/2021-Educational-Calendar-2.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-28','','','2021-09-28 13:46:21','2021-09-28 13:46:21','',0,'https://lantern-realty.com/?p=2101',0,'post','',0),(2102,6,'2021-09-28 13:46:21','2021-09-28 13:46:21','','LRD-Roster_092321.xlsx','','inherit','closed','closed','','lrd-roster_092321','','','2021-09-28 13:46:21','2021-09-28 13:46:21','',2101,'https://lantern-realty.com/wp-content/uploads/2021/09/LRD-Roster_092321.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2103,6,'2021-09-28 13:46:21','2021-09-28 13:46:21','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-2-7','','','2021-09-28 13:46:21','2021-09-28 13:46:21','',2101,'https://lantern-realty.com/wp-content/uploads/2021/09/2021-Educational-Calendar-2.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2104,0,'2021-09-28 17:56:07','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-09-28 17:56:07','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2104',0,'post','',0),(2105,6,'2021-09-28 20:46:05','2021-09-28 20:46:05','<div dir=\"ltr\">HALLELUJAH!!!!!  Our YouTube issue has been fixed.  Below is a link to our class last week by Sarah Romesburg on MARKETING YOUR BUSINESS.<div><br></div><div><a href=\"https://youtu.be/FjeLZgtTH4w\">https://youtu.be/FjeLZgtTH4w</a><br clear=\"all\"><div><br></div>','KINDLE Class - Marketing Your Business','','publish','closed','open','','kindle-class-marketing-your-business-2','','','2021-09-28 20:46:05','2021-09-28 20:46:05','',0,'https://lantern-realty.com/?p=2105',0,'post','',0),(2106,6,'2021-09-28 20:56:44','2021-09-28 20:56:44','<div dir=\"ltr\"><div>Here is the link to the class Rudy King w/ Fairway Mortgages had regarding Reverse Mortgages.  Enjoy!</div><div><br></div><div><br></div><a href=\"https://youtu.be/w6RYYSyZsF0\">https://youtu.be/w6RYYSyZsF0</a><br clear=\"all\"><div><br></div>','October 2021 Team Meeting - Rudy King/Fairway Mortgage - Reverse Mortgages','','publish','closed','open','','october-2021-team-meeting-rudy-king-fairway-mortgage-reverse-mortgages','','','2021-09-28 20:56:44','2021-09-28 20:56:44','',0,'https://lantern-realty.com/?p=2106',0,'post','',0),(2107,0,'2021-09-29 01:46:01','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-09-29 01:46:01','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2107',0,'post','',0),(2108,0,'2021-09-30 20:42:23','2021-09-30 20:42:23','','Stephanie E Morgan','','inherit','closed','closed','','_dsc2804-79','','','2021-11-22 00:45:37','2021-11-22 00:45:37','',0,'https://lantern-realty.com/_dsc2804-79/',0,'attachment','image/jpeg',0),(2109,0,'2021-10-01 01:23:54','2021-10-01 01:23:54','','head shot','','inherit','','closed','','head-shot-3','','','2021-10-01 01:23:54','2021-10-01 01:23:54','',0,'https://lantern-realty.com/head-shot-3/',0,'attachment','image/jpeg',0),(2110,6,'2021-10-04 15:56:08','2021-10-04 15:56:08','<div dir=\"ltr\">Good Morning All, hope you had a productive weekend.  Here are a few notes as we start another week.<div><br></div><div>- Kim Drakulich and I will be holding a class this Tuesday fro 4p-6p at the Kannapolis office entitled \"2022 Goal Setting\".  Its that time of the year to prepare your business for 2022.  Getting off on the right foot is important for the best year you have ever had.  This class will be in person only.  </div><div><br></div><div>- Our next KINDLE class will be this Thursday at 10am.  It will be held in Kannapolis and on Zoom.  This class will be taught by Cathy Hager and will be \"How to Work w/ Buyers\".  </div><div><br></div><div>- The team meeting for this month has been cancelled.  We will plan on having an in -person meeting in November.  More to come on that!</div><div><br></div><div>If you have any further questions or comments please let me know.  </div><div><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/10/LRD-Roster_092321.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_092321.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/10/2021-Educational-Calendar.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; notes','','publish','closed','open','','news-notes-29','','','2021-10-04 15:56:08','2021-10-04 15:56:08','',0,'https://lantern-realty.com/?p=2110',0,'post','',0),(2111,6,'2021-10-04 15:56:08','2021-10-04 15:56:08','','LRD-Roster_092321.xlsx','','inherit','closed','closed','','lrd-roster_092321-2','','','2021-10-04 15:56:08','2021-10-04 15:56:08','',2110,'https://lantern-realty.com/wp-content/uploads/2021/10/LRD-Roster_092321.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2112,6,'2021-10-04 15:56:08','2021-10-04 15:56:08','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-12','','','2021-10-04 15:56:08','2021-10-04 15:56:08','',2110,'https://lantern-realty.com/wp-content/uploads/2021/10/2021-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2113,0,'2021-10-04 16:58:26','2021-10-04 16:58:26','','kim_drakulich','','inherit','closed','closed','','new-profile-pic','','','2021-11-22 00:25:11','2021-11-22 00:25:11','',0,'https://lantern-realty.com/new-profile-pic/',0,'attachment','image/jpeg',0),(2114,6,'2021-10-04 18:46:56','2021-10-04 18:46:56','<div dir=\"ltr\">Good Afternoon, here is everything I forgot in this morning&#39;s email!<div><br></div><div>- We have an office open in our Kannapolis location.  If you are interested in renting it please let me know. </div><div><br></div><div>- Here is the YouTube link for Laura Overcash&#39;s KINDLE class \"Lead Generation &amp; Database\". <a href=\"https://youtu.be/2xaEX-nOLzA\">https://youtu.be/2xaEX-nOLzA</a></div><div><br></div><div>- Lastly, dont forget tomorrow morning at 945 we will be having our Support group/therapy/counseling/accountability group in our Kannapolis office.  Last week was very encouraging to me.  I&#39;m looking forward to tomorrow.  I hope to see as many of you as possible.  <br clear=\"all\"><div><br></div>','News &amp; Notes part 2','','publish','closed','open','','news-notes-part-2','','','2021-10-04 18:46:56','2021-10-04 18:46:56','',0,'https://lantern-realty.com/?p=2114',0,'post','',0),(2115,9,'2021-10-06 21:26:34','2021-10-06 21:26:34','<div dir=\"ltr\">Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br><b><font size=\"4\">Topic: KINDLE - Working w/Buyers<br>Time: Oct 7, 2021 10:00 AM Eastern Time (US and Canada)</font></b><br><br>Via Zoom and In-Person at the Kannapolis Office<div><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89211928160?pwd=Ui9hbG5SWXRMOFpiVHZCaDc3dFBodz09\">https://us02web.zoom.us/j/89211928160?pwd=Ui9hbG5SWXRMOFpiVHZCaDc3dFBodz09</a><br><br>Meeting ID: 892 1192 8160<br>Passcode: 569030<br>One tap mobile<br>+13126266799,,89211928160#,,,,*569030# US (Chicago)<br>+19292056099,,89211928160#,,,,*569030# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 892 1192 8160<br>Passcode: 569030<br>Find your local number: <a href=\"https://us02web.zoom.us/u/klTzne6Np\">https://us02web.zoom.us/u/klTzne6Np</a><br><br><div><br></div>','Zoom Meeting Invite for KINDLE Working with Buyers - Oct 7 at 10 a.m.','','publish','closed','open','','zoom-meeting-invite-for-kindle-working-with-buyers-oct-7-at-10-a-m','','','2021-10-06 21:26:34','2021-10-06 21:26:34','',0,'https://lantern-realty.com/?p=2115',0,'post','',0),(2116,6,'2021-10-07 20:06:47','2021-10-07 20:06:47','<div dir=\"ltr\">Here is the class video from today.<div><br></div><div><a href=\"https://youtu.be/Q0zScVKI2hE\">https://youtu.be/Q0zScVKI2hE</a><br clear=\"all\"><div><br></div>','KINDLE - Working w/ Buyers w/ Cathy Hager','','publish','closed','open','','kindle-working-w-buyers-w-cathy-hager','','','2021-10-07 20:06:47','2021-10-07 20:06:47','',0,'https://lantern-realty.com/?p=2116',0,'post','',0),(2117,6,'2021-10-07 21:25:56','2021-10-07 21:25:56','<div dir=\"ltr\">Hello Folks, here is my attempt at doing \"on demand\" classes.  We did not record this class when it was held on Tuesday 10/5.  Hope you enjoy!<div><br></div><div><a href=\"https://youtu.be/fSh7cGiZ7xI\">https://youtu.be/fSh7cGiZ7xI</a><div><div><br></div>','2022 Goal Planning class','','publish','closed','open','','2022-goal-planning-class','','','2021-10-07 21:25:56','2021-10-07 21:25:56','',0,'https://lantern-realty.com/?p=2117',0,'post','',0),(2118,6,'2021-10-11 12:46:22','2021-10-11 12:46:22','<div dir=\"ltr\">Good morning All! Hope you had a great weekend.  Here are a few notes as we start another week. <div><br></div><div>- Attached is the latest Educational calendar.  We have two classes this week. Here are a few highlights to look out for....</div><div>** This week, we have Nic Lovelace presenting  \"How to Read a CLosing Disclosure\".  This will be done in the Kannapolis office.  </div><div>** Thursday will be the next KINDLE class \"Working w/ Sellers\".</div><div>** I have added two classes on Real Estate Investing.  This has been a hot topic recently among agents.  I will be breaking down how to work w/ investors and how to invest yourself. </div><div>** Lastly, our 2022 Goal Planning class was a resounding success.  I have posted a video version that is public and can be viewed on our YouTube channel.  If you would like to join us, we have a kick off class on 1/4/2022.</div><div><br></div><div>Don&#39;t forget our Tuesday accountability/therapy class.  The last two have been fantastic.  We are going to be incorporating some script practice and some accountability.  No pressure at all, but having some accountability helps tremendously.  It will make you a better agent. </div><div><br></div><div>Lastly, Friday I will be sending out Q4 invoices that are due on November 1st.  If you are on automatic draft your account will be drafted on November 1st or 2nd.  If you pay via Venmo, check or cash please have your payments into our office by November 1st.</div><div><br></div><div>Thanks as always! </div><div><br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2021/10/2021-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2021-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-30','','','2021-10-11 12:46:22','2021-10-11 12:46:22','',0,'https://lantern-realty.com/?p=2118',0,'post','',0),(2119,6,'2021-10-11 12:46:22','2021-10-11 12:46:22','','2021-Educational-Calendar.xlsx','','inherit','closed','closed','','2021-educational-calendar-1-9','','','2021-10-11 12:46:22','2021-10-11 12:46:22','',2118,'https://lantern-realty.com/wp-content/uploads/2021/10/2021-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2120,9,'2021-10-13 15:05:57','2021-10-13 15:05:57','<div><br></div><div>Don’t miss it from 3-4:30pm today, October 13! Our very own Nick Lovelace from Knipp Law with go over “How to Read a Closing Disclosure” in person only at our Kannapolis office! Check out the education calendar &amp; mark our classes</div><div dir=\"auto\"><br></div><div dir=\"auto\"><br><div class=\"gmail_quote\" dir=\"auto\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Oct 11, 2021 at 8:42 AM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\">Good morning All! Hope you had a great weekend.  Here are a few notes as we start another week. <div><br></div><div>- Attached is the latest Educational calendar.  We have two classes this week. Here are a few highlights to look out for....</div><div>** This week, we have Nic Lovelace presenting  \"How to Read a CLosing Disclosure\".  This will be done in the Kannapolis office.  </div><div>** Thursday will be the next KINDLE class \"Working w/ Sellers\".</div><div>** I have added two classes on Real Estate Investing.  This has been a hot topic recently among agents.  I will be breaking down how to work w/ investors and how to invest yourself. </div><div>** Lastly, our 2022 Goal Planning class was a resounding success.  I have posted a video version that is public and can be viewed on our YouTube channel.  If you would like to join us, we have a kick off class on 1/4/2022.</div><div><br></div><div>Don&#39;t forget our Tuesday accountability/therapy class.  The last two have been fantastic.  We are going to be incorporating some script practice and some accountability.  No pressure at all, but having some accountability helps tremendously.  It will make you a better agent. </div><div><br></div><div>Lastly, Friday I will be sending out Q4 invoices that are due on November 1st.  If you are on automatic draft your account will be drafted on November 1st or 2nd.  If you pay via Venmo, check or cash please have your payments into our office by November 1st.</div><div><br></div><div>Thanks as always! </div></div><div dir=\"ltr\"><div><br clear=\"all\"><div><br></div>','News &amp; Notes','','publish','closed','open','','news-notes-31','','','2021-10-13 15:05:57','2021-10-13 15:05:57','',0,'https://lantern-realty.com/?p=2120',0,'post','',0),(2121,9,'2021-10-13 19:16:20','2021-10-13 19:16:20','<div dir=\"ltr\">Chris Puckett is inviting you to a scheduled Zoom meeting. Join us by Zoom or in person at the Kannapolis office!<br><br><b><font size=\"4\">Topic: KINDLE - How to Work with Sellers w/ Chris Puckett<br>Time: Oct 14, 2021 10:00 AM Eastern Time (US and Canada)</font></b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/82201866711?pwd=c0U1MG1kL3E1M3lZNWhHdHAwb3RFUT09\">https://us02web.zoom.us/j/82201866711?pwd=c0U1MG1kL3E1M3lZNWhHdHAwb3RFUT09</a><br><br>Meeting ID: 822 0186 6711<br>Passcode: 237651<br>One tap mobile<br>+13017158592,,82201866711#,,,,*237651# US (Washington DC)<br>+13126266799,,82201866711#,,,,*237651# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 822 0186 6711<br>Passcode: 237651<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kgGv6pSPj\">https://us02web.zoom.us/u/kgGv6pSPj</a><br><br><div><br></div>','Zoom Invite for KINDLE \"How to Work with Sellers\" Thursday, October 14 at 10 a.m','','publish','closed','open','','zoom-invite-for-kindle-how-to-work-with-sellers-thursday-october-14-at-10-a-m','','','2021-10-13 19:16:20','2021-10-13 19:16:20','',0,'https://lantern-realty.com/?p=2121',0,'post','',0),(2122,0,'2021-10-13 19:33:53','2021-10-13 19:33:53','','Evelin Hernandez','','inherit','closed','closed','','file1662','','','2021-11-22 00:49:48','2021-11-22 00:49:48','',0,'https://lantern-realty.com/file1662/',0,'attachment','image/jpeg',0),(2123,0,'2021-10-13 20:45:07','2021-10-13 20:45:07','','Lezli Rae Leath','','inherit','closed','closed','','head-shot-4','','','2021-11-22 00:51:41','2021-11-22 00:51:41','',0,'https://lantern-realty.com/head-shot-4/',0,'attachment','image/jpeg',0),(2124,6,'2021-10-14 18:16:20','2021-10-14 18:16:20','<div dir=\"ltr\">Here is the link to the class from this morning. <div><br></div><div><a href=\"https://youtu.be/ZUtJTTvnNVg\">https://youtu.be/ZUtJTTvnNVg</a><br clear=\"all\"><div><br></div>','KINDLE Class - How to Work w/ Sellers','','publish','closed','open','','kindle-class-how-to-work-w-sellers','','','2021-10-14 18:16:20','2021-10-14 18:16:20','',0,'https://lantern-realty.com/?p=2124',0,'post','',0),(2125,0,'2021-10-18 23:26:15','2021-10-18 23:26:15','','87ABBC44-7835-4A60-A044-F18C0469CA0D','','inherit','','closed','','87abbc44-7835-4a60-a044-f18c0469ca0d','','','2021-10-18 23:26:15','2021-10-18 23:26:15','',0,'https://lantern-realty.com/87abbc44-7835-4a60-a044-f18c0469ca0d/',0,'attachment','image/jpeg',0),(2126,0,'2021-10-18 23:45:59','2021-10-18 23:45:59','','Tan Crawford','','inherit','closed','closed','','3e99a0e8-6277-4155-8911-0005466bba00','','','2021-11-22 00:54:02','2021-11-22 00:54:02','',0,'https://lantern-realty.com/3e99a0e8-6277-4155-8911-0005466bba00/',0,'attachment','image/jpeg',0),(2127,9,'2021-10-20 16:16:14','2021-10-20 16:16:14','<div dir=\"ltr\"><div>Chris Puckett is inviting you to a scheduled Zoom meeting.  Don&#39;t miss this class.  Our very own Larry Laughter will be showing you via Zoom only how to market online!!<br><br><b><font size=\"4\">Topic: Marketing Online w/Larry Laughter<br>Time: Oct 21, 2021 10:00 AM Eastern Time (US and Canada)</font></b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89272354189?pwd=VER5WEdsc2dXN21JQy92MEZpWlRwQT09\">https://us02web.zoom.us/j/89272354189?pwd=VER5WEdsc2dXN21JQy92MEZpWlRwQT09</a><br><br>Meeting ID: 892 7235 4189<br>Passcode: 935999<br>One tap mobile<br>+19292056099,,89272354189#,,,,*935999# US (New York)<br>+13017158592,,89272354189#,,,,*935999# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 892 7235 4189<br>Passcode: 935999<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kd7o7Nmk6F\">https://us02web.zoom.us/u/kd7o7Nmk6F</a><br><br></div><div><br></div><br clear=\"all\"><div><br></div>','Marketing Online w/ Larry Laughter Zoom ONLY - Oct 21 at 10:00 AM','','publish','closed','open','','marketing-online-w-larry-laughter-zoom-only-oct-21-at-1000-am','','','2021-10-20 16:16:14','2021-10-20 16:16:14','',0,'https://lantern-realty.com/?p=2127',0,'post','',0),(2128,6,'2021-10-21 20:06:30','2021-10-21 20:06:30','<div dir=\"ltr\">Good Afternoon, Here is the link for Larry&#39;s Social Media class today.  Hopefully more of these to come!<div><br></div><div><a href=\"https://youtu.be/h0CjVFK8MU4\">https://youtu.be/h0CjVFK8MU4</a><br clear=\"all\"><div><br></div>','You Tube video - Social media Class w/ Larry Laughter','','publish','closed','open','','you-tube-video-social-media-class-w-larry-laughter','','','2021-10-21 20:06:30','2021-10-21 20:06:30','',0,'https://lantern-realty.com/?p=2128',0,'post','',0),(2129,0,'2021-10-22 15:57:18','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-10-22 15:57:18','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2129',0,'post','',0),(2130,6,'2021-10-25 13:46:48','2021-10-25 13:46:48','<div dir=\"ltr\"><img src=\"https://lantern-realty.com/wp-content/uploads/2021/10/1.jpg\" alt=\"1.jpg\" width=\"419\" height=\"542\"><br><div><img src=\"https://lantern-realty.com/wp-content/uploads/2021/10/2.jpg\" alt=\"2.jpg\" width=\"419\" height=\"542\"><br></div>','News &amp; Notes','','publish','closed','open','','news-notes-32','','','2021-10-25 13:46:48','2021-10-25 13:46:48','',0,'https://lantern-realty.com/?p=2130',0,'post','',0),(2131,6,'2021-10-25 13:46:02','2021-10-25 13:46:02','','1.jpg','','inherit','closed','closed','','1','','','2021-10-25 13:46:27','2021-10-25 13:46:27','',2130,'https://lantern-realty.com/wp-content/uploads/2021/10/1.jpg',0,'attachment','image/jpeg',0),(2132,6,'2021-10-25 13:46:27','2021-10-25 13:46:27','','2.jpg','','inherit','closed','closed','','2','','','2021-10-25 13:46:48','2021-10-25 13:46:48','',2130,'https://lantern-realty.com/wp-content/uploads/2021/10/2.jpg',0,'attachment','image/jpeg',0),(2133,6,'2021-10-28 20:17:28','2021-10-28 20:17:28','<div dir=\"ltr\">Good Afternoon, this coming Tuesday we will be having a meeting to talk about getting a Ninja Selling Course hosted by Lantern Realty.  We are trying to get folks together that can help with the planning and execution of this 4 day event.  <div><br></div><div>We are planning on meeting at 1130 this coming Tuesday in the Kannapolis office.  We wanted to hold it right after our usual Tuesday Morning meetings that start at 945.  Both meetings will be in the Kannapolis office.  </div><div><br></div><div>If you would like to help, please let me know.  <br clear=\"all\"><div><br></div>','Ninja Selling Course','','publish','closed','open','','ninja-selling-course','','','2021-10-28 20:17:28','2021-10-28 20:17:28','',0,'https://lantern-realty.com/?p=2133',0,'post','',0),(2134,0,'2021-10-28 22:51:56','2021-10-28 22:51:56','','Jamie medium pic','','inherit','','closed','','jamie-medium-pic','','','2021-10-28 22:51:56','2021-10-28 22:51:56','',0,'https://lantern-realty.com/jamie-medium-pic/',0,'attachment','image/jpeg',0),(2135,0,'2021-11-01 12:28:33','2021-11-01 12:28:33','','Erin Hyman','','inherit','closed','closed','','3f16ec84-96cd-4cbf-8074-153e48832c84','','','2021-11-22 00:56:49','2021-11-22 00:56:49','',0,'https://lantern-realty.com/3f16ec84-96cd-4cbf-8074-153e48832c84/',0,'attachment','image/jpeg',0),(2136,6,'2021-11-01 13:07:51','2021-11-01 13:07:51','<div dir=\"ltr\"><img src=\"https://lantern-realty.com/wp-content/uploads/2021/11/1.png\" alt=\"1.png\" width=\"349\" height=\"452\"><br><div><img src=\"https://lantern-realty.com/wp-content/uploads/2021/11/2.png\" alt=\"2.png\" width=\"349\" height=\"452\"><br></div>','News &amp; Notes','','publish','closed','open','','news-notes-33','','','2021-11-01 13:07:51','2021-11-01 13:07:51','',0,'https://lantern-realty.com/?p=2136',0,'post','',0),(2137,6,'2021-11-01 13:05:56','2021-11-01 13:05:56','','1.png','','inherit','closed','closed','','1-2','','','2021-11-01 13:06:51','2021-11-01 13:06:51','',2136,'https://lantern-realty.com/wp-content/uploads/2021/11/1.png',0,'attachment','image/png',0),(2138,6,'2021-11-01 13:06:52','2021-11-01 13:06:52','','2.png','','inherit','closed','closed','','2-2','','','2021-11-01 13:07:51','2021-11-01 13:07:51','',2136,'https://lantern-realty.com/wp-content/uploads/2021/11/2.png',0,'attachment','image/png',0),(2139,0,'2021-11-01 20:36:21','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-11-01 20:36:21','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2139',0,'post','',0),(2140,9,'2021-11-02 13:15:56','2021-11-02 13:15:56','<div dir=\"ltr\">Chris Puckett is inviting you to a scheduled Zoom only meeting.  A can&#39;t miss meeting for all agents of all experience levels.  We will have a special guest, Nick Smith from NCREC. He is graciously taking time to speak to us about an &#39;Agent&#39;s Duty to Disclose&#39; afterwards, he will open it up for discussion.  Bring your questions and don&#39;t miss this meeting....<br><br><b>Topic: Kannapolis Team Meeting - NCREC Agent&#39;s Duty to Disclose<br>Time: Nov 3, 2021 11:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/86020883036?pwd=Z2E5eW1JVHNOOTR6bUpzRWFLSitoZz09\">https://us02web.zoom.us/j/86020883036?pwd=Z2E5eW1JVHNOOTR6bUpzRWFLSitoZz09</a><br><br>Meeting ID: 860 2088 3036<br>Passcode: 591709<br>One tap mobile<br>+13126266799,,86020883036#,,,,*591709# US (Chicago)<br>+19292056099,,86020883036#,,,,*591709# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 860 2088 3036<br>Passcode: 591709<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kghngwQFp\">https://us02web.zoom.us/u/kghngwQFp</a><br><br><div><br></div>','Lantern Realty NCREC Guest Zoom Team Meeting, Wednesday November 3 at 11 am','','publish','closed','open','','lantern-realty-ncrec-guest-zoom-team-meeting-wednesday-november-3-at-11-am','','','2021-11-02 13:15:56','2021-11-02 13:15:56','',0,'https://lantern-realty.com/?p=2140',0,'post','',0),(2141,6,'2021-11-03 20:15:55','2021-11-03 20:15:55','<div dir=\"ltr\"><a href=\"https://youtu.be/DzcfqLLaeFk\">https://youtu.be/DzcfqLLaeFk</a><br clear=\"all\"><div><br></div>','Here is a link to todays NCREC class','','publish','closed','open','','here-is-a-link-to-todays-ncrec-class','','','2021-11-03 20:15:55','2021-11-03 20:15:55','',0,'https://lantern-realty.com/?p=2141',0,'post','',0),(2142,0,'2021-11-04 15:56:31','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-11-04 15:56:31','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2142',0,'post','',0),(2144,0,'2021-11-05 15:55:55','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-11-05 15:55:55','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2144',0,'post','',0),(2145,0,'2021-11-05 16:36:18','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2021-11-05 16:36:18','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2145',0,'post','',0),(2146,1,'2021-11-05 20:16:00','2021-11-05 20:16:00','[WPL]','Properties','','publish','closed','closed','','properties','','','2021-11-05 20:16:00','2021-11-05 20:16:00','',0,'https://lantern-realty.com/properties/',0,'page','',0),(2147,1,'2021-11-05 20:16:00','2021-11-05 20:16:00','[WPL sf_select_listing=\"9\"]','For Sale','','publish','closed','closed','','for-sale','','','2021-11-05 20:16:00','2021-11-05 20:16:00','',0,'https://lantern-realty.com/for-sale/',0,'page','',0),(2148,1,'2021-11-05 20:16:01','2021-11-05 20:16:01','[WPL sf_select_listing=\"10\"]','For Rent','','publish','closed','closed','','for-rent','','','2021-11-05 20:16:01','2021-11-05 20:16:01','',0,'https://lantern-realty.com/for-rent/',0,'page','',0),(2149,1,'2021-11-05 20:16:01','2021-11-05 20:16:01','[WPL sf_select_listing=\"12\"]','Vacation Rental','','publish','closed','closed','','vacation-rental','','','2021-11-05 20:16:01','2021-11-05 20:16:01','',0,'https://lantern-realty.com/vacation-rental/',0,'page','',0),(2150,6,'2021-11-08 13:48:24','2021-11-08 13:48:24','<div dir=\"ltr\"><img src=\"https://lantern-realty.com/wp-content/uploads/2021/11/1-1.png\" alt=\"1.png\" width=\"349\" height=\"452\"><br><div><img src=\"https://lantern-realty.com/wp-content/uploads/2021/11/2-1.png\" alt=\"2.png\" width=\"349\" height=\"452\"><br></div>','News &amp; Notes','','publish','closed','open','','news-notes-34','','','2021-11-08 13:48:24','2021-11-08 13:48:24','',0,'https://lantern-realty.com/?p=2150',0,'post','',0),(2151,6,'2021-11-08 13:46:05','2021-11-08 13:46:05','','1.png','','inherit','closed','closed','','1-1','','','2021-11-08 13:47:11','2021-11-08 13:47:11','',2150,'https://lantern-realty.com/wp-content/uploads/2021/11/1-1.png',0,'attachment','image/png',0),(2152,6,'2021-11-08 13:47:11','2021-11-08 13:47:11','','2.png','','inherit','closed','closed','','2-1','','','2021-11-08 13:48:24','2021-11-08 13:48:24','',2150,'https://lantern-realty.com/wp-content/uploads/2021/11/2-1.png',0,'attachment','image/png',0),(2153,9,'2021-11-08 21:00:59','2021-11-08 21:00:59','<div dir=\"ltr\"><div>Chris Puckett is inviting you to a scheduled Zoom meeting. Offered via Zoom and at the Kannapolis office on Nov 9, 2021 at 11:00 AM   Join Chris and Paula to find out a few things to help you stay away from \"real estate jail\".<br><br><b>Topic: Don&#39;t Do Stupid <a href=\"mailto:$%@!\" >$%@!</a><br>Time: Nov 9, 2021 11:00 AM Eastern Time (US and Canada)<br></b><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/84427265245?pwd=VnllYUs1QlVVd3Y3LytkNlZGTUNHdz09\">https://us02web.zoom.us/j/84427265245?pwd=VnllYUs1QlVVd3Y3LytkNlZGTUNHdz09</a><br><br>Meeting ID: 844 2726 5245<br>Passcode: 292883<br>One tap mobile<br>+19292056099,,84427265245#,,,,*292883# US (New York)<br>+13017158592,,84427265245#,,,,*292883# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 844 2726 5245<br>Passcode: 292883<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kqMyct1fF\">https://us02web.zoom.us/u/kqMyct1fF</a><br><br></div>','Zoom Invite to \"Don\'t Do Stupid $%@!\" Nov 9, 2021 11:00 AM','','publish','closed','open','','zoom-invite-to-dont-do-stupid-nov-9-2021-1100-am','','','2021-11-08 21:00:59','2021-11-08 21:00:59','',0,'https://lantern-realty.com/?p=2153',0,'post','',0),(2156,0,'2021-11-19 12:19:08','2021-11-19 12:19:08','','Carmady King Kruger','','inherit','closed','closed','','my-profile-photo-2','','','2021-11-22 00:59:24','2021-11-22 00:59:24','',0,'https://lantern-realty.com/my-profile-photo-2/',0,'attachment','image/jpeg',0),(2155,0,'2021-11-19 12:17:59','2021-11-19 12:17:59','','MY Profile Photo','','inherit','','closed','','my-profile-photo','','','2021-11-19 12:17:59','2021-11-19 12:17:59','',0,'https://lantern-realty.com/my-profile-photo/',0,'attachment','image/jpeg',0),(2182,6,'2021-11-30 13:36:27','2021-11-30 13:36:27','<div dir=\"ltr\">Here is a quick recap of this week&#39;s news....<div><br></div><div>- Team meeting this Wednesday at 11am on Zoom &amp; in the Kannapolis office.  We will have Will Smith, a licensed appraiser with us to discuss what he does and answer questions that have been submitted.</div><div>- I will be teaching \"How to Invest in Real Estate\" this Thursday from 4-6pm in the Kannapolis office only.  It will not be on Zoom.  <br clear=\"all\"><div>- Dont forget our Christmas party from 6-10pm on December 16th at the Laureate Center in Kannapolis.  We will have a buffet, karaoke, a live band and whatever games Paula can think up!  Look forward to seeing you all. </div><div>- Lastly, our Kannapolis Christmas Parade will be Saturday December 11th.  More details to follow.</div>','news &amp; notes','','publish','closed','open','','news-notes-36','','','2021-11-30 13:36:27','2021-11-30 13:36:27','',0,'https://lantern-realty.com/?p=2182',0,'post','',0),(2158,1,'2021-11-22 00:21:59','2021-11-22 00:21:59','','Kimberly Howell','','inherit','closed','closed','','473-revision-v1','','','2021-11-22 00:21:59','2021-11-22 00:21:59','',473,'https://lantern-realty.com/?p=2158',0,'revision','',0),(2159,1,'2021-11-22 00:25:42','2021-11-22 00:25:42','I have lived in the Concord area since 2003, and have enjoyed watching our area flourish. My family is deeply involved in the community with church, school, and sports. Being a working mother has given me the advantage of truly understanding the importance of time management and organization. I work hard and efficiently, and always keep my clients informed from the first meeting to the closing table and beyond. I have always said, a knowledgeable client is a happy client!When I am not meeting with clients, I am still working. Real Estate and Technology are ALWAYS changing. Taking classes, meeting with other professionals, and keeping up with current events help me stay a step ahead.First time home buyers are my passion – I embrace the time and wealth of information that goes into it, and strive to have that reflect in the relationships I share with my clients.','Kim Drakulich','','inherit','closed','closed','','383-revision-v1','','','2021-11-22 00:25:42','2021-11-22 00:25:42','',383,'https://lantern-realty.com/?p=2159',0,'revision','',0),(2160,1,'2021-11-22 00:28:43','2021-11-22 00:28:43','<!-- wp:paragraph -->\n<p>Asheville and Western North Carolina are great places to live and work, which is why Julie chose to call it home. With roots in Chappaqua, NY, a suburb of NYC, she moved to North Carolina in 1997, then to Asheville in 2005. Real estate is a passion for her and with her background as an Administrative Assistant with a BS in Business Administration/Marketing, and currently a multi-million dollar agent since 2017, it is easy to see why so many have called her for help with buying and selling. Julie has been a part of the Lantern family since May of 2021, but she isn’t just passionate about helping families find their next home. She has volunteered with Energy Savers Network and Habitat for Humanity and loves being a part of other community events. An avid hiker and music fan, when she isn’t in the office, or volunteering, you’ll usually find her at a concert, in the woods, or home enjoying time with her husband Bob and their cats and goats.</p>\n<!-- /wp:paragraph -->','Julie Arader','','inherit','closed','closed','','1895-revision-v1','','','2021-11-22 00:28:43','2021-11-22 00:28:43','',1895,'https://lantern-realty.com/?p=2160',0,'revision','',0),(2161,1,'2021-11-22 00:30:16','2021-11-22 00:30:16','<!-- wp:paragraph {\"hasCustomCSS\":true} -->\n<p>Asheville and Western North Carolina are great places to live and work, which is why Julie chose to call it home. With roots in Chappaqua, NY, a suburb of NYC, she moved to North Carolina in 1997, then to Asheville in 2005. Real estate is a passion for her and with her background as an Administrative Assistant with a BS in Business Administration/Marketing, and currently a multi-million dollar agent since 2017, it is easy to see why so many have called her for help with buying and selling. Julie has been a part of the Lantern family since May of 2021, but she isn’t just passionate about helping families find their next home. She has volunteered with Energy Savers Network and Habitat for Humanity and loves being a part of other community events. An avid hiker and music fan, when she isn’t in the office, or volunteering, you’ll usually find her at a concert, in the woods, or home enjoying time with her husband Bob and their cats and goats.</p>\n<!-- /wp:paragraph -->','Julie Arader','','inherit','closed','closed','','1895-autosave-v1','','','2021-11-22 00:30:16','2021-11-22 00:30:16','',1895,'https://lantern-realty.com/?p=2161',0,'revision','',0),(2162,1,'2021-11-22 00:35:21','2021-11-22 00:35:21','<!-- wp:paragraph -->\n<p>Thanks for checking out my profile! My name is Meredith Christy and the three most important things in my life are God, Family and Real Estate. Having always been in customer service industries, I finally found my forever career as a realtor. Real Estate is my passion, clients become family, and honestly I couldn\'t imagine doing anything else. In my off time, I enjoy volunteering at the food pantry, being spontaneous with my husband, Alex, and watching my children play, learn and grow. Feel free to reach out so we can discuss all of your real estate needs, or just to conversate! :-)</p>\n<!-- /wp:paragraph -->','Meredith Christy','','inherit','closed','closed','','795-revision-v1','','','2021-11-22 00:35:21','2021-11-22 00:35:21','',795,'https://lantern-realty.com/?p=2162',0,'revision','',0),(2163,1,'2021-11-22 00:46:28','2021-11-22 00:46:28','','Stephanie E Morgan','','publish','closed','closed','','stephanie-e-morgan','','','2021-11-22 00:46:31','2021-11-22 00:46:31','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2163',50,'houzez_agent','',0),(2164,1,'2021-11-22 00:46:28','2021-11-22 00:46:28','','Stephanie E Morgan','','inherit','closed','closed','','2163-revision-v1','','','2021-11-22 00:46:28','2021-11-22 00:46:28','',2163,'https://lantern-realty.com/?p=2164',0,'revision','',0),(2165,1,'2021-11-22 00:50:05','2021-11-22 00:50:05','<!-- wp:paragraph -->\n<p>Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago . Helping you to the next chapter in life. Whether it\'s buying or selling, it\'s my biggest pleasure.</p>\n<!-- /wp:paragraph -->','Evelin lisseth Hernandez','','publish','closed','closed','','evelin-lisseth-hernandez','','','2021-11-22 00:50:09','2021-11-22 00:50:09','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2165',40,'houzez_agent','',0),(2166,1,'2021-11-22 00:50:05','2021-11-22 00:50:05','<!-- wp:paragraph -->\n<p>Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago . Helping you to the next chapter in life. Whether it\'s buying or selling, it\'s my biggest pleasure.</p>\n<!-- /wp:paragraph -->','Evelin lisseth Hernandez','','inherit','closed','closed','','2165-revision-v1','','','2021-11-22 00:50:05','2021-11-22 00:50:05','',2165,'https://lantern-realty.com/?p=2166',0,'revision','',0),(2167,1,'2021-11-22 00:51:58','2021-11-22 00:51:58','<!-- wp:paragraph -->\n<p>I was born in Lexington, Kentucky, which might explain my love for horses and all animals. My Dad worked for IBM so I was no stranger to moving. We moved so much, one time I was in three different schools in one year.This experience taught me resiliance and the ability to put myself in my clients shoes while helping them navigate every step of the way. My goal is to make the process a smooth one while keeping stress levels as low as possible. I have spent my adult life in Cabarrus and Mecklenburg Counties. I have always had a passion for beautiful homes and helping people. I am a retired Charlotte Mecklenburg Police Officer where I learned to master very important skills that I use everyday in the Real Estate world. Being an Officer taught me great negotiating and conflict resolution skills and so many more. In my spare time, I love to camp, cook and spend time with my friends and family. I love working in Real Estate and strive to find my clients not just a house but their home. I promise to treat you like I would want someone to treat me or my family.</p>\n<!-- /wp:paragraph -->','Lezli Rae Leath','','publish','closed','closed','','lezli-rae-leath','','','2021-11-22 00:52:01','2021-11-22 00:52:01','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2167',45,'houzez_agent','',0),(2168,1,'2021-11-22 00:51:58','2021-11-22 00:51:58','<!-- wp:paragraph -->\n<p>I was born in Lexington, Kentucky, which might explain my love for horses and all animals. My Dad worked for IBM so I was no stranger to moving. We moved so much, one time I was in three different schools in one year.This experience taught me resiliance and the ability to put myself in my clients shoes while helping them navigate every step of the way. My goal is to make the process a smooth one while keeping stress levels as low as possible. I have spent my adult life in Cabarrus and Mecklenburg Counties. I have always had a passion for beautiful homes and helping people. I am a retired Charlotte Mecklenburg Police Officer where I learned to master very important skills that I use everyday in the Real Estate world. Being an Officer taught me great negotiating and conflict resolution skills and so many more. In my spare time, I love to camp, cook and spend time with my friends and family. I love working in Real Estate and strive to find my clients not just a house but their home. I promise to treat you like I would want someone to treat me or my family.</p>\n<!-- /wp:paragraph -->','Lezli Rae Leath','','inherit','closed','closed','','2167-revision-v1','','','2021-11-22 00:51:58','2021-11-22 00:51:58','',2167,'https://lantern-realty.com/?p=2168',0,'revision','',0),(2169,1,'2021-11-22 00:54:10','2021-11-22 00:54:10','','Tan Crawford','','publish','closed','closed','','tan-crawford','','','2021-11-22 00:54:13','2021-11-22 00:54:13','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2169',20,'houzez_agent','',0),(2170,1,'2021-11-22 00:54:10','2021-11-22 00:54:10','','Tan Crawford','','inherit','closed','closed','','2169-revision-v1','','','2021-11-22 00:54:10','2021-11-22 00:54:10','',2169,'https://lantern-realty.com/?p=2170',0,'revision','',0),(2171,1,'2021-11-22 00:57:05','2021-11-22 00:57:05','<!-- wp:paragraph -->\n<p>My name is Erin Hyman. I have lived in Kannapolis all my life, graduating from A.L. Brown and UNCC. With my knowledge of the area, I can help you find the right home for you and your family. I pride myself on being honest, responsive and hardworking. A little about me personally, my husband and I have have two amazing daughters and two sweet cats. I enjoy time with family and friends, workouts and travel. Whether buying a home or selling a home, I am here to help with your real estate goals!</p>\n<!-- /wp:paragraph -->','Erin Hyman','','publish','closed','closed','','erin-hyman','','','2021-11-22 00:57:09','2021-11-22 00:57:09','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2171',38,'houzez_agent','',0),(2172,1,'2021-11-22 00:57:05','2021-11-22 00:57:05','<!-- wp:paragraph -->\n<p>My name is Erin Hyman. I have lived in Kannapolis all my life, graduating from A.L. Brown and UNCC. With my knowledge of the area, I can help you find the right home for you and your family. I pride myself on being honest, responsive and hardworking. A little about me personally, my husband and I have have two amazing daughters and two sweet cats. I enjoy time with family and friends, workouts and travel. Whether buying a home or selling a home, I am here to help with your real estate goals!</p>\n<!-- /wp:paragraph -->','Erin Hyman','','inherit','closed','closed','','2171-revision-v1','','','2021-11-22 00:57:05','2021-11-22 00:57:05','',2171,'https://lantern-realty.com/?p=2172',0,'revision','',0),(2173,1,'2021-11-22 00:59:45','2021-11-22 00:59:45','<!-- wp:paragraph -->\n<p>Please visit my website at: <a rel=\"noreferrer noopener\" href=\"https://www.carmadykruger.com/\" target=\"_blank\">https://www.carmadykruger.com/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Buying or selling a home is an emotional event, there\'s no way around that. My job is to make it pleasant while negotiating for the best financial outcome for my clients. I love real estate because I truly love helping people. I consider it a great honor to be allowed to represent my clients during one of their most memorable life experiences, the purchase or sale of a home. The absolutely best part of my job isn\'t the paycheck, (although that\'s a necessary part), it\'s the look on my clients\' faces or the sound of their voices when I get to tell them their offer was accepted on the home they fell in love with, or that we have a great offer on the home they are selling. My role is to protect my clients\' interests, and to tirelessly advocate on their behalf. I put 120% of myself into my work! On a more personal note - I was born and raised in the Cotswold area of Charlotte, but have lived in twelve states; Georgia, Kansas, Missouri, Texas, Alaska, South Carolina, Michigan, Pennsylvania, Ohio, Nebraska, Florida and back home to North Carolina! Salisbury has been home for the last 14 years. I\'ve made many good friends along my journey and left a piece of my heart each time we moved. I was active duty Air Force stationed at Elmendorf Air Force Base, Alaska working in Mental Health. I graduated from the University of Michigan with a B.S. in Computer Science with minors in math/marketing, and worked as a software engineer for one of the major software companies before finding my true calling in real estate. I have two grown children, 2 Havanese dogs (Jasper &amp;amp; Henry) that I couldn\'t live without, and a stray cat I rescued from the streets about 12 years ago from behind the Meroney Theatre/Chef Santos (Missy) that thinks she rules the house. I love succulent house plants and have been trying to master the art of not killing them! I\'m losing that battle. When I am not busy with real estate, I enjoy traveling and spending time with family and friends. What makes me unique, as you may be able to tell from my bio is that while I am a people person, I am also analytical. I\'ve had a broad, diverse life experience that I feel has enriched my ability to effectively negotiate and connect with people. I have sold homes in Charlotte, Mooresville, Salisbury, Lexington, High Rock Lake, Ft. Mill, Lancaster SC, Concord, Harrisburg, Davidson, Huntersville, Albemarle, and Statesville and points in between. I am North Carolina &amp;amp; South Carolina licensed. I look forward to helping you with the next chapter of your life! : )  </p>\n<!-- /wp:paragraph -->','Carmady King Kruger','','publish','closed','closed','','carmady-king-kruger','','','2021-11-22 01:24:16','2021-11-22 01:24:16','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2173',30,'houzez_agent','',0),(2174,1,'2021-11-22 00:59:45','2021-11-22 00:59:45','<!-- wp:paragraph -->\n<p>Buying or selling a home is an emotional event, there\'s no way around that. My job is to make it pleasant while negotiating for the best financial outcome for my clients. I love real estate because I truly love helping people. I consider it a great honor to be allowed to represent my clients during one of their most memorable life experiences, the purchase or sale of a home. The absolutely best part of my job isn\'t the paycheck, (although that\'s a necessary part), it\'s the look on my clients\' faces or the sound of their voices when I get to tell them their offer was accepted on the home they fell in love with, or that we have a great offer on the home they are selling. My role is to protect my clients\' interests, and to tirelessly advocate on their behalf. I put 120% of myself into my work! On a more personal note - I was born and raised in the Cotswold area of Charlotte, but have lived in twelve states; Georgia, Kansas, Missouri, Texas, Alaska, South Carolina, Michigan, Pennsylvania, Ohio, Nebraska, Florida and back home to North Carolina! Salisbury has been home for the last 14 years. I\'ve made many good friends along my journey and left a piece of my heart each time we moved. I was active duty Air Force stationed at Elmendorf Air Force Base, Alaska working in Mental Health. I graduated from the University of Michigan with a B.S. in Computer Science with minors in math/marketing, and worked as a software engineer for one of the major software companies before finding my true calling in real estate. I have two grown children, 2 Havanese dogs (Jasper &amp;amp; Henry) that I couldn\'t live without, and a stray cat I rescued from the streets about 12 years ago from behind the Meroney Theatre/Chef Santos (Missy) that thinks she rules the house. I love succulent house plants and have been trying to master the art of not killing them! I\'m losing that battle. When I am not busy with real estate, I enjoy traveling and spending time with family and friends. What makes me unique, as you may be able to tell from my bio is that while I am a people person, I am also analytical. I\'ve had a broad, diverse life experience that I feel has enriched my ability to effectively negotiate and connect with people. I have sold homes in Charlotte, Mooresville, Salisbury, Lexington, High Rock Lake, Ft. Mill, Lancaster SC, Concord, Harrisburg, Davidson, Huntersville, Albemarle, and Statesville and points in between. I am North Carolina &amp;amp; South Carolina licensed. I look forward to helping you with the next chapter of your life! : )</p>\n<!-- /wp:paragraph -->','Carmady King Kruger','','inherit','closed','closed','','2173-revision-v1','','','2021-11-22 00:59:45','2021-11-22 00:59:45','',2173,'https://lantern-realty.com/?p=2174',0,'revision','',0),(2177,1,'2021-11-22 01:24:14','2021-11-22 01:24:14','<!-- wp:paragraph -->\n<p>Please visit my website at: <a rel=\"noreferrer noopener\" href=\"https://www.carmadykruger.com/\" target=\"_blank\">https://www.carmadykruger.com/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Buying or selling a home is an emotional event, there\'s no way around that. My job is to make it pleasant while negotiating for the best financial outcome for my clients. I love real estate because I truly love helping people. I consider it a great honor to be allowed to represent my clients during one of their most memorable life experiences, the purchase or sale of a home. The absolutely best part of my job isn\'t the paycheck, (although that\'s a necessary part), it\'s the look on my clients\' faces or the sound of their voices when I get to tell them their offer was accepted on the home they fell in love with, or that we have a great offer on the home they are selling. My role is to protect my clients\' interests, and to tirelessly advocate on their behalf. I put 120% of myself into my work! On a more personal note - I was born and raised in the Cotswold area of Charlotte, but have lived in twelve states; Georgia, Kansas, Missouri, Texas, Alaska, South Carolina, Michigan, Pennsylvania, Ohio, Nebraska, Florida and back home to North Carolina! Salisbury has been home for the last 14 years. I\'ve made many good friends along my journey and left a piece of my heart each time we moved. I was active duty Air Force stationed at Elmendorf Air Force Base, Alaska working in Mental Health. I graduated from the University of Michigan with a B.S. in Computer Science with minors in math/marketing, and worked as a software engineer for one of the major software companies before finding my true calling in real estate. I have two grown children, 2 Havanese dogs (Jasper &amp;amp; Henry) that I couldn\'t live without, and a stray cat I rescued from the streets about 12 years ago from behind the Meroney Theatre/Chef Santos (Missy) that thinks she rules the house. I love succulent house plants and have been trying to master the art of not killing them! I\'m losing that battle. When I am not busy with real estate, I enjoy traveling and spending time with family and friends. What makes me unique, as you may be able to tell from my bio is that while I am a people person, I am also analytical. I\'ve had a broad, diverse life experience that I feel has enriched my ability to effectively negotiate and connect with people. I have sold homes in Charlotte, Mooresville, Salisbury, Lexington, High Rock Lake, Ft. Mill, Lancaster SC, Concord, Harrisburg, Davidson, Huntersville, Albemarle, and Statesville and points in between. I am North Carolina &amp;amp; South Carolina licensed. I look forward to helping you with the next chapter of your life! : )  </p>\n<!-- /wp:paragraph -->','Carmady King Kruger','','inherit','closed','closed','','2173-revision-v1','','','2021-11-22 01:24:14','2021-11-22 01:24:14','',2173,'https://lantern-realty.com/?p=2177',0,'revision','',0),(2176,1,'2021-11-22 01:23:30','2021-11-22 01:23:30','<!-- wp:paragraph -->\n<p>Buying or selling a home is an emotional event, there\'s no way around that. My job is to make it pleasant while negotiating for the best financial outcome for my clients. I love real estate because I truly love helping people. I consider it a great honor to be allowed to represent my clients during one of their most memorable life experiences, the purchase or sale of a home. The absolutely best part of my job isn\'t the paycheck, (although that\'s a necessary part), it\'s the look on my clients\' faces or the sound of their voices when I get to tell them their offer was accepted on the home they fell in love with, or that we have a great offer on the home they are selling. My role is to protect my clients\' interests, and to tirelessly advocate on their behalf. I put 120% of myself into my work! On a more personal note - I was born and raised in the Cotswold area of Charlotte, but have lived in twelve states; Georgia, Kansas, Missouri, Texas, Alaska, South Carolina, Michigan, Pennsylvania, Ohio, Nebraska, Florida and back home to North Carolina! Salisbury has been home for the last 14 years. I\'ve made many good friends along my journey and left a piece of my heart each time we moved. I was active duty Air Force stationed at Elmendorf Air Force Base, Alaska working in Mental Health. I graduated from the University of Michigan with a B.S. in Computer Science with minors in math/marketing, and worked as a software engineer for one of the major software companies before finding my true calling in real estate. I have two grown children, 2 Havanese dogs (Jasper &amp;amp; Henry) that I couldn\'t live without, and a stray cat I rescued from the streets about 12 years ago from behind the Meroney Theatre/Chef Santos (Missy) that thinks she rules the house. I love succulent house plants and have been trying to master the art of not killing them! I\'m losing that battle. When I am not busy with real estate, I enjoy traveling and spending time with family and friends. What makes me unique, as you may be able to tell from my bio is that while I am a people person, I am also analytical. I\'ve had a broad, diverse life experience that I feel has enriched my ability to effectively negotiate and connect with people. I have sold homes in Charlotte, Mooresville, Salisbury, Lexington, High Rock Lake, Ft. Mill, Lancaster SC, Concord, Harrisburg, Davidson, Huntersville, Albemarle, and Statesville and points in between. I am North Carolina &amp;amp; South Carolina licensed. I look forward to helping you with the next chapter of your life! : )  <a rel=\"noreferrer noopener\" href=\"https://www.carmadykruger.com/\" target=\"_blank\">https://www.carmadykruger.com/</a></p>\n<!-- /wp:paragraph -->','Carmady King Kruger','','inherit','closed','closed','','2173-revision-v1','','','2021-11-22 01:23:30','2021-11-22 01:23:30','',2173,'https://lantern-realty.com/?p=2176',0,'revision','',0),(2178,6,'2021-11-22 15:00:45','2021-11-22 15:00:45','<div dir=\"ltr\">See expanded News &amp; Notes.  For our Christmas party, you may bring one guest.  Also, don&#39;t forget the ugly sweater contest.  I&#39;ve already prepared!<div><br></div><div><img src=\"https://lantern-realty.com/wp-content/uploads/2021/11/1-2.png\" alt=\"1.png\" width=\"349\" height=\"452\"><br></div><img src=\"https://lantern-realty.com/wp-content/uploads/2021/11/2-2.png\" alt=\"2.png\" width=\"349\" height=\"452\"><br><img src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3.png\" alt=\"3.png\" width=\"349\" height=\"452\"><br><div>','News &amp; Notes','','publish','closed','open','','news-notes-35','','','2021-11-22 15:00:45','2021-11-22 15:00:45','',0,'https://lantern-realty.com/?p=2178',0,'post','',0),(2179,6,'2021-11-22 14:56:04','2021-11-22 14:56:04','','1.png','','inherit','closed','closed','','1-2-2','','','2021-11-22 14:58:05','2021-11-22 14:58:05','',2178,'https://lantern-realty.com/wp-content/uploads/2021/11/1-2.png',0,'attachment','image/png',0),(2180,6,'2021-11-22 14:58:05','2021-11-22 14:58:05','','2.png','','inherit','closed','closed','','2-2-2','','','2021-11-22 14:59:45','2021-11-22 14:59:45','',2178,'https://lantern-realty.com/wp-content/uploads/2021/11/2-2.png',0,'attachment','image/png',0),(2181,6,'2021-11-22 14:59:47','2021-11-22 14:59:47','','3.png','','inherit','closed','closed','','3','','','2021-11-22 15:00:45','2021-11-22 15:00:45','',2178,'https://lantern-realty.com/wp-content/uploads/2021/11/3.png',0,'attachment','image/png',0),(2183,9,'2021-12-01 00:56:06','2021-12-01 00:56:06','<div dir=\"ltr\"><div><br></div><div><b>Topic: Lantern Team Meeting - Featuring Appraiser Will Smith</b><br></div><div><b>Time: Dec 1, 2021 11:00 AM Eastern Time (US and Canada)</b></div><div><b><br></b>Please join us via Zoom or in the Kannapolis office for Lantern Realty&#39;s Team Meeting on Wednesday, December Dec 1, 2021 11:00 AM we have special guest Appraiser Will Smith who will be talking to us about the appraisal process and answering some of our previously submitted questions.  I know we are all curious to hear what he has to say.  Matthew Young from GIECO will take a few minutes to let us know how beneficial he can be for us and our clients.  See you all there...</div><div><br><b>Join Zoom Meeting</b><br><a href=\"https://us02web.zoom.us/j/84023041047?pwd=cktXUGlnQVh5Ly9EQmNBVnVNVnVaUT09\">https://us02web.zoom.us/j/84023041047?pwd=cktXUGlnQVh5Ly9EQmNBVnVNVnVaUT09</a><br><br>Meeting ID: 840 2304 1047<br>Passcode: 270038<br>One tap mobile<br>+13017158592,,84023041047#,,,,*270038# US (Washington DC)<br>+13126266799,,84023041047#,,,,*270038# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 840 2304 1047<br>Passcode: 270038<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kvu6J7MsO\">https://us02web.zoom.us/u/kvu6J7MsO</a><br><br></div><br clear=\"all\"><div><br></div>','Lantern Realty Team Meeting ZOOM Link - Wednesday, December Dec 1, 2021 11:00 AM','','publish','closed','open','','lantern-realty-team-meeting-zoom-link-wednesday-december-dec-1-2021-1100-am','','','2021-12-01 00:56:06','2021-12-01 00:56:06','',0,'https://lantern-realty.com/?p=2183',0,'post','',0),(2184,6,'2021-12-01 21:07:02','2021-12-01 21:07:02','<div dir=\"ltr\">Hello folks,  below are links to the classes we had recently.  The Team meeting with the appraiser from today and the Fairway Mortgage class in our Harrisburg office from a few weeks ago.  Enjoy!<div><br></div><div>Todays Team Meeting/Appraiser</div><div><a href=\"https://youtu.be/VZC2gX0sz1Y\">https://youtu.be/VZC2gX0sz1Y</a></div><div><br></div><div>Fairway Mortgage Class</div><div><a href=\"https://youtu.be/UZLP-8oAJjU\">https://youtu.be/UZLP-8oAJjU</a><br clear=\"all\"><div><br></div>','Classes on YouTube','','publish','closed','open','','classes-on-youtube','','','2021-12-01 21:07:02','2021-12-01 21:07:02','',0,'https://lantern-realty.com/?p=2184',0,'post','',0),(2185,6,'2021-12-02 01:26:09','2021-12-02 01:26:09','<div dir=\"ltr\">Good Evening All, tomorrow is a busy day at the office.  <div><br></div><div>At 9am we will be gathering in the Kannapolis office to do agent marketing planning for 2022. This will be a brainstorming session on ideas for 2022 and trying to plan out our year in a systematic, meaningful manner.  This is open to everyone.  The more the merrier!</div><div><br></div><div>Also tomorrow at the Kannapolis office at 4pm, I will be teaching \"How to Invest in Real Estate\".  It will be in the Kannapolis office only.  Hope as many of you as possible can join us.  </div><div><br></div><div>Thanks!!!!!<br clear=\"all\"><div><br></div>','Thursday Dec 2nd','','publish','closed','open','','thursday-dec-2nd','','','2021-12-02 01:26:09','2021-12-02 01:26:09','',0,'https://lantern-realty.com/?p=2185',0,'post','',0),(2186,6,'2021-12-07 21:56:34','2021-12-07 21:56:34','<div dir=\"ltr\">Greetings All,  wanted to follow up on our planned 2022 Marketing meeting.  At our last meeting we had some wonderful ideas.  Since we didn&#39;t have enough time and others wanted to join us we decided to plan the upcoming meeting on the 14th.  Here are the details.<div><br></div><div>We will be meeting at Chophouse 101 in downtown Kannapolis at 9am on Tuesday December 14th.  We will start right at 9am.  We have their open dining area from 9-11.  We MUST start and finish on time to be respectful to those folks.  </div><div><br></div><div>I look forward to seeing you all.  We will have plenty of room to spread out and get some great ideas in place for 2022!!!!<br clear=\"all\"><div><br></div>','December 14th marketing meeting','','publish','closed','open','','december-14th-marketing-meeting','','','2021-12-07 21:56:34','2021-12-07 21:56:34','',0,'https://lantern-realty.com/?p=2186',0,'post','',0),(2195,0,'2021-12-26 20:20:15','2021-12-26 20:20:15','','b&amp;b-59','','inherit','','closed','','bb-59','','','2021-12-26 20:20:15','2021-12-26 20:20:15','',0,'https://lantern-realty.com/bb-59/',0,'attachment','image/jpeg',0),(2188,1,'2021-12-10 13:25:47','2021-12-10 13:25:47','','Stephen_Knorr','','inherit','','closed','','stephen_knorr','','','2021-12-10 13:25:47','2021-12-10 13:25:47','',508,'https://lantern-realty.com/wp-content/uploads/2021/12/Stephen_Knorr.png',0,'attachment','image/png',0),(2189,1,'2021-12-10 13:27:40','2021-12-10 13:27:40','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"1930\" img_size=\"medium\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://ryanivory.excellencebyarc.com/\" title=\"Mortgage Lender\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" title=\"Mortgage Lender\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"2188\" img_size=\"medium\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"Mortgage Lender\" link=\"https://alcova.com/apply?lo=skteam\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" title=\"Real Estate Law\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" title=\"Home Warranty\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h3><a href=\"https://geico.widen.net/s/wteghfnoeo\" target=\"_blank\" rel=\"noopener noreferrer\">Matthew Young - GEICO Insurance</a></h3>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-514 size-medium\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young-300x252.png\" alt=\"\" width=\"300\" height=\"252\" /></a></p>\n<p>Matthew Young, originally from Salisbury, has been in the insurance industry since 2001. Matthew’s dedication to the industry is embodied by the numerous affiliate awards from the Realtor Associations with which he partners.<br />\nOffering the services of an insurance broker with many carriers while backed by a national brand, Matthew can provide policies for virtually any residential property transactions in North Carolina, South Carolina, or Virginia.<br />\nExceptional service is the hallmark of his team, evidenced by agents being available every day until 10:00 pm. He is happy to help with any questions or solutions needed to make the real estate transaction as smooth as possible. He is married with two young sons. His hobbies include fishing, hiking, and anything outdoors.</p>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-515 size-full\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" alt=\"\" width=\"120\" height=\"29\" /></a>[/vc_column_text][/vc_column][/vc_row]</p>\n','Lantern Partners','','inherit','closed','closed','','508-revision-v1','','','2021-12-10 13:27:40','2021-12-10 13:27:40','',508,'https://lantern-realty.com/?p=2189',0,'revision','',0),(2190,1,'2021-12-10 13:27:40','2021-12-10 13:27:40','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"1930\" img_size=\"medium\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://ryanivory.excellencebyarc.com/\" title=\"Mortgage Lender\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" title=\"Mortgage Lender\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"2188\" img_size=\"medium\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"Mortgage Lender\" link=\"https://alcova.com/apply?lo=skteam\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" title=\"Real Estate Law\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" title=\"Home Warranty\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h3><a href=\"https://geico.widen.net/s/wteghfnoeo\" target=\"_blank\" rel=\"noopener noreferrer\">Matthew Young - GEICO Insurance</a></h3>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-514 size-medium\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico_Matthew_Young-300x252.png\" alt=\"\" width=\"300\" height=\"252\" /></a></p>\n<p>Matthew Young, originally from Salisbury, has been in the insurance industry since 2001. Matthew’s dedication to the industry is embodied by the numerous affiliate awards from the Realtor Associations with which he partners.<br />\nOffering the services of an insurance broker with many carriers while backed by a national brand, Matthew can provide policies for virtually any residential property transactions in North Carolina, South Carolina, or Virginia.<br />\nExceptional service is the hallmark of his team, evidenced by agents being available every day until 10:00 pm. He is happy to help with any questions or solutions needed to make the real estate transaction as smooth as possible. He is married with two young sons. His hobbies include fishing, hiking, and anything outdoors.</p>\n<p><a href=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" target=\"_blank\" rel=\"https://geico.widen.net/s/wteghfnoeo noopener noreferrer\"><img class=\"alignleft wp-image-515 size-full\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Geico-Logo.png\" alt=\"\" width=\"120\" height=\"29\" /></a>[/vc_column_text][/vc_column][/vc_row]</p>\n','Lantern Partners','','inherit','closed','closed','','508-revision-v1','','','2021-12-10 13:27:40','2021-12-10 13:27:40','',508,'https://lantern-realty.com/?p=2190',0,'revision','',0),(2192,1,'2021-12-10 13:39:07','2021-12-10 13:39:07','<p>[vc_section full_width=\"stretch_row\" full_height=\"yes\" content_placement=\"middle\" css_animation=\"fadeIn\" css=\".vc_custom_1535990071877{padding-top: 10% !important;background-image: url(https://lantern-realty.com/wp-content/uploads/2018/08/Lantern_OpenHouse.png?id=56) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row css=\".vc_custom_1534901322962{margin-bottom: 250px !important;padding-right: 20px !important;padding-left: 20px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1534901068460{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 20px !important;padding-left: 20px !important;background-color: rgba(255,255,255,0.76) !important;*background-color: rgb(255,255,255) !important;}\"]</p>\n<h1>Property Search</h1>\n<p>[optima_express_quick_search style=\"twoline\" showPropertyType=\"false\"][/vc_column_text][/vc_column][/vc_row][/vc_section][vc_row content_placement=\"middle\" css=\".vc_custom_1535223457405{padding-top: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"top\" disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_btn title=\"Buy\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fhomes-for-sale-search%2F|title:Home%20Search||\"][vc_column_text css_animation=\"fadeIn\"]Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\'re one click away from discovering your next home![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Sell\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fvaluation-form%2F|title:Sell%20My%20Home||\"][vc_column_text css_animation=\"fadeIn\"]Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it\'s worth. Let us speak with you about selling your property and you\'ll learn why our previous clients love us. Click here to submit a home valuation request.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Contact\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:tel%3A9808582074|title:Call%20Lantern||\"][vc_column_text css_animation=\"fadeIn\"]Looking to speak with an agent now? Click here to contact an agent. We\'re available around the clock to provide you with the very best professional real estate representation.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner][text_with_icons columns=\"three_columns\" style=\"style_one\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-search\" title=\"Buy\" text=\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!\" read_more_text=\"Search Homes\" read_more_link=\"https://lantern-realty.com/homes-for-sale-search/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-home\" title=\"Sell\" text=\"Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.\" read_more_text=\"Submit a Valuation Request\" read_more_link=\"https://lantern-realty.com/valuation-form/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-phone\" title=\"Contact\" text=\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\" read_more_text=\"Contact an Agent\" read_more_link=\"tel:9808582074\"][/text_with_icons][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\"][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Listings</h1>\n<p>[optima_express_gallery_slider height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"pd\" maxResults=\"25\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<h1>Listed this Week</h1>\n<p>[optima_express_gallery_slider id=\"813462\" height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"ds\" maxResults=\"25\"][/vc_column_text][houzez-agents agents_type=\"Carousel\" agent_category=\"front-page\" agent_city=\"\" custom_title=\"Lantern Agents\" custom_subtitle=\"\" columns=\"3\" posts_limit=\"15\" offset=\"\" orderby=\"rand\" order=\"ASC\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\">See what clients are saying about Lantern Agents</h1>\n<p>[/vc_column_text][vc_single_image image=\"276\" img_size=\"medium\" alignment=\"center\" css_animation=\"bounceInLeft\"][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItbGlrZSUyMiUyMHN0eWxlJTNEJTIyYWxpZ24tY29udGVudCUzQSUyMGNlbnRlciUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLWxheW91dCUzRCUyMnN0YW5kYXJkJTIyJTIwZGF0YS1hY3Rpb24lM0QlMjJyZWNvbW1lbmQlMjIlMjBkYXRhLXNpemUlM0QlMjJzbWFsbCUyMiUyMGRhdGEtc2hvdy1mYWNlcyUzRCUyMmZhbHNlJTIyJTIwZGF0YS1zaGFyZSUzRCUyMmZhbHNlJTIyJTNFJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column_inner][vc_column_inner width=\"3/4\"][houzez-testimonials testimonials_type=\"slides\" posts_limit=\"10\" offset=\"\" orderby=\"rand\" order=\"ASC\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Find Homes for Sale in these Communities</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Kannapolis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DKannapolis%26propertyType%3DSFR%26status%3Dactive|title:Kannapolis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Concord\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DConcord%26propertyType%3DSFR%26status%3Dactive|title:Concord||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Landis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DLandis%26propertyType%3DSFR%26status%3Dactive|title:Landis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"China Grove\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DChina%20Grove%26propertyType%3DSFR%26status%3Dactive|title:China%20Grove||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Salisbury\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DSalisbury%26propertyType%3DSFR%26status%3Dactive|title:Salisbury||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Rockwell\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DRockwell%26propertyType%3DSFR%26status%3Dactive|title:Rockwell||\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Charlotte\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCharlotte%26propertyType%3DSFR%26status%3Dactive|title:Charlotte||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Huntersville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DHuntersville%26propertyType%3DSFR%26status%3Dactive|title:Huntersville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Cornelius\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCornelius%26propertyType%3DSFR%26status%3Dactive|title:Cornelius||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mooresville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMooresville%26propertyType%3DSFR%26status%3Dactive|title:Mooresville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mount Pleasant\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMount%20Pleasant%26propertyType%3DSFR%26status%3Dactive|title:Mount%20Pleasant||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Gold Hill\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DGold%20Hill%26propertyType%3DSFR%26status%3Dactive|title:Gold%20Hill||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner][hz-section-title hz_section_title=\"Follow Lantern on Facebook\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][/vc_column_inner][/vc_row_inner][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItcGFnZSUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLXRhYnMlM0QlMjJ0aW1lbGluZSUyMiUyMGRhdGEtd2lkdGglM0QlMjI1MDAlMjIlMjBkYXRhLWhlaWdodCUzRCUyMjEwMDAlMjIlMjBkYXRhLXNtYWxsLWhlYWRlciUzRCUyMnRydWUlMjIlMjBkYXRhLWFkYXB0LWNvbnRhaW5lci13aWR0aCUzRCUyMnRydWUlMjIlMjBkYXRhLWhpZGUtY292ZXIlM0QlMjJmYWxzZSUyMiUyMGRhdGEtc2hvdy1mYWNlcGlsZSUzRCUyMnRydWUlMjIlM0UlM0NibG9ja3F1b3RlJTIwY2l0ZSUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBjbGFzcyUzRCUyMmZiLXhmYm1sLXBhcnNlLWlnbm9yZSUyMiUzRSUzQ2ElMjBocmVmJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZmFjZWJvb2suY29tJTJGbGFudGVybnJlYWx0eSUyMiUzRUxhbnRlcm4lMjBSZWFsdHklMjAlMjZhbXAlM0IlMjBEZXZlbG9wbWVudCUyQyUyMExMQyUzQyUyRmElM0UlM0MlMkZibG9ja3F1b3RlJTNFJTNDJTJGZGl2JTNFJTBBJTBBJTBBJTNDJTIxLS0lMjBMb2FkJTIwRmFjZWJvb2slMjBTREslMjBmb3IlMjBKYXZhU2NyaXB0JTIwLS0lM0UlMEElM0NkaXYlMjBpZCUzRCUyMmZiLXJvb3QlMjIlM0UlM0MlMkZkaXYlM0UlMEElM0NzY3JpcHQlM0UlMjhmdW5jdGlvbiUyOGQlMkMlMjBzJTJDJTIwaWQlMjklMjAlN0IlMEElMjAlMjB2YXIlMjBqcyUyQyUyMGZqcyUyMCUzRCUyMGQuZ2V0RWxlbWVudHNCeVRhZ05hbWUlMjhzJTI5JTVCMCU1RCUzQiUwQSUyMCUyMGlmJTIwJTI4ZC5nZXRFbGVtZW50QnlJZCUyOGlkJTI5JTI5JTIwcmV0dXJuJTNCJTBBJTIwJTIwanMlMjAlM0QlMjBkLmNyZWF0ZUVsZW1lbnQlMjhzJTI5JTNCJTIwanMuaWQlMjAlM0QlMjBpZCUzQiUwQSUyMCUyMGpzLnNyYyUyMCUzRCUyMCUyN2h0dHBzJTNBJTJGJTJGY29ubmVjdC5mYWNlYm9vay5uZXQlMkZlbl9VUyUyRnNkayUyRnhmYm1sLmN1c3RvbWVyY2hhdC5qcyUyM3hmYm1sJTNEMSUyNnZlcnNpb24lM0R2Mi4xMiUyNmF1dG9Mb2dBcHBFdmVudHMlM0QxJTI3JTNCJTBBJTIwJTIwZmpzLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlJTI4anMlMkMlMjBmanMlMjklM0IlMEElN0QlMjhkb2N1bWVudCUyQyUyMCUyN3NjcmlwdCUyNyUyQyUyMCUyN2ZhY2Vib29rLWpzc2RrJTI3JTI5JTI5JTNCJTNDJTJGc2NyaXB0JTNFJTBBJTBBJTNDJTIxLS0lMjBZb3VyJTIwY3VzdG9tZXIlMjBjaGF0JTIwY29kZSUyMC0tJTNFJTBBJTNDZGl2JTIwY2xhc3MlM0QlMjJmYi1jdXN0b21lcmNoYXQlMjIlMEElMjAlMjBhdHRyaWJ1dGlvbiUzRHNldHVwX3Rvb2wlMEElMjAlMjBwYWdlX2lkJTNEJTIyMTgyMTczMTk1OTU1NjUzJTIyJTBBJTIwJTIwbG9nZ2VkX2luX2dyZWV0aW5nJTNEJTIySGklMjElMjBXb3VsZCUyMHlvdSUyMGxpa2UlMjB0byUyMGNvbm5lY3QlMjB3aXRoJTIwYSUyMExhbnRlcm4lMjBBZ2VudCUyMG5vdyUzRiUyMiUwQSUyMCUyMGxvZ2dlZF9vdXRfZ3JlZXRpbmclM0QlMjJIaSUyMSUyMFdvdWxkJTIweW91JTIwbGlrZSUyMHRvJTIwY29ubmVjdCUyMHdpdGglMjBhJTIwTGFudGVybiUyMEFnZW50JTIwbm93JTNGJTIyJTNFJTBBJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column][vc_column width=\"1/2\"][hz-section-title hz_section_title=\"Kannapolis Community News\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][vc_wp_rss items=\"7\" options=\"show_summary,show_date\" url=\"http://www.kannapolisnc.gov/Community/News\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Partners</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://www.hwahomewarranty.com/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"1442\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://geico.widen.net/s/wteghfnoeo\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"http://www.terrywhitesell.com/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"1930\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://ryanivory.excellencebyarc.com/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2188\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://alcova.com/apply?lo=skteam\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n','Lantern Realty and Development - Home','','inherit','closed','closed','','2-revision-v1','','','2021-12-10 13:39:07','2021-12-10 13:39:07','',2,'https://lantern-realty.com/?p=2192',0,'revision','',0),(2191,1,'2021-12-10 13:36:48','2021-12-10 13:36:48','<p>[vc_section full_width=\"stretch_row\" full_height=\"yes\" content_placement=\"middle\" css_animation=\"fadeIn\" css=\".vc_custom_1535990071877{padding-top: 10% !important;background-image: url(https://lantern-realty.com/wp-content/uploads/2018/08/Lantern_OpenHouse.png?id=56) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row css=\".vc_custom_1534901322962{margin-bottom: 250px !important;padding-right: 20px !important;padding-left: 20px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1534901068460{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 20px !important;padding-left: 20px !important;background-color: rgba(255,255,255,0.76) !important;*background-color: rgb(255,255,255) !important;}\"]</p>\n<h1>Property Search</h1>\n<p>[optima_express_quick_search style=\"twoline\" showPropertyType=\"false\"][/vc_column_text][/vc_column][/vc_row][/vc_section][vc_row content_placement=\"middle\" css=\".vc_custom_1535223457405{padding-top: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"top\" disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_btn title=\"Buy\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fhomes-for-sale-search%2F|title:Home%20Search||\"][vc_column_text css_animation=\"fadeIn\"]Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You\'re one click away from discovering your next home![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Sell\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:%2Fvaluation-form%2F|title:Sell%20My%20Home||\"][vc_column_text css_animation=\"fadeIn\"]Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it\'s worth. Let us speak with you about selling your property and you\'ll learn why our previous clients love us. Click here to submit a home valuation request.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_btn title=\"Contact\" style=\"3d\" color=\"primary\" size=\"lg\" align=\"center\" i_icon_fontawesome=\"fa fa-home\" css_animation=\"fadeIn\" button_block=\"true\" add_icon=\"true\" link=\"url:tel%3A9808582074|title:Call%20Lantern||\"][vc_column_text css_animation=\"fadeIn\"]Looking to speak with an agent now? Click here to contact an agent. We\'re available around the clock to provide you with the very best professional real estate representation.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner][text_with_icons columns=\"three_columns\" style=\"style_one\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-search\" title=\"Buy\" text=\"Search available properties in Kannapolis, Concord, Landis, China Grove, Salisbury, Lake Norman, and other surrounding areas. You’re one click away from discovering your next home!\" read_more_text=\"Search Homes\" read_more_link=\"https://lantern-realty.com/homes-for-sale-search/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-home\" title=\"Sell\" text=\"Lantern Realty and Development is a full-service agency, dedicated to selling your home quickly and getting you what it’s worth. Let us speak with you about selling your property and you’ll learn why our previous clients love us.\" read_more_text=\"Submit a Valuation Request\" read_more_link=\"https://lantern-realty.com/valuation-form/\"][text_with_icon icon_type=\"fontawesome_icon\" font_awesome_icon=\"fas fa-phone\" title=\"Contact\" text=\"Looking to speak with an agent now? Lantern Agents are available around the clock to provide you with the very best professional real estate representation. Whether you\'re buying or selling, we\'re ready to assist.\" read_more_text=\"Contact an Agent\" read_more_link=\"tel:9808582074\"][/text_with_icons][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\"][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Listings</h1>\n<p>[optima_express_gallery_slider height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"pd\" maxResults=\"25\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<h1>Listed this Week</h1>\n<p>[optima_express_gallery_slider id=\"813462\" height=\"425\" rows=\"1\" nav=\"sides\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"false\" interval=\"4\" status=\"active\" sortBy=\"ds\" maxResults=\"25\"][/vc_column_text][houzez-agents agents_type=\"Carousel\" agent_category=\"front-page\" agent_city=\"\" custom_title=\"Lantern Agents\" custom_subtitle=\"\" columns=\"3\" posts_limit=\"15\" offset=\"\" orderby=\"rand\" order=\"ASC\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\">See what clients are saying about Lantern Agents</h1>\n<p>[/vc_column_text][vc_single_image image=\"276\" img_size=\"medium\" alignment=\"center\" css_animation=\"bounceInLeft\"][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItbGlrZSUyMiUyMHN0eWxlJTNEJTIyYWxpZ24tY29udGVudCUzQSUyMGNlbnRlciUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLWxheW91dCUzRCUyMnN0YW5kYXJkJTIyJTIwZGF0YS1hY3Rpb24lM0QlMjJyZWNvbW1lbmQlMjIlMjBkYXRhLXNpemUlM0QlMjJzbWFsbCUyMiUyMGRhdGEtc2hvdy1mYWNlcyUzRCUyMmZhbHNlJTIyJTIwZGF0YS1zaGFyZSUzRCUyMmZhbHNlJTIyJTNFJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column_inner][vc_column_inner width=\"3/4\"][houzez-testimonials testimonials_type=\"slides\" posts_limit=\"10\" offset=\"\" orderby=\"rand\" order=\"ASC\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Find Homes for Sale in these Communities</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Kannapolis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DKannapolis%26propertyType%3DSFR%26status%3Dactive|title:Kannapolis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Concord\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DConcord%26propertyType%3DSFR%26status%3Dactive|title:Concord||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Landis\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DLandis%26propertyType%3DSFR%26status%3Dactive|title:Landis||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"China Grove\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DChina%20Grove%26propertyType%3DSFR%26status%3Dactive|title:China%20Grove||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Salisbury\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DSalisbury%26propertyType%3DSFR%26status%3Dactive|title:Salisbury||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Rockwell\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DRockwell%26propertyType%3DSFR%26status%3Dactive|title:Rockwell||\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Charlotte\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCharlotte%26propertyType%3DSFR%26status%3Dactive|title:Charlotte||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Huntersville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DHuntersville%26propertyType%3DSFR%26status%3Dactive|title:Huntersville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Cornelius\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DCornelius%26propertyType%3DSFR%26status%3Dactive|title:Cornelius||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mooresville\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMooresville%26propertyType%3DSFR%26status%3Dactive|title:Mooresville||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Mount Pleasant\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DMount%20Pleasant%26propertyType%3DSFR%26status%3Dactive|title:Mount%20Pleasant||\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_btn title=\"Gold Hill\" style=\"3d\" color=\"primary\" align=\"center\" css_animation=\"fadeIn\" button_block=\"true\" link=\"url:%2Fhomes-for-sale-results%2F%3Fcity%3DGold%20Hill%26propertyType%3DSFR%26status%3Dactive|title:Gold%20Hill||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner][hz-section-title hz_section_title=\"Follow Lantern on Facebook\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][/vc_column_inner][/vc_row_inner][vc_raw_html]JTNDZGl2JTIwaWQlM0QlMjJmYi1yb290JTIyJTNFJTNDJTJGZGl2JTNFJTBBJTNDc2NyaXB0JTNFJTI4ZnVuY3Rpb24lMjhkJTJDJTIwcyUyQyUyMGlkJTI5JTIwJTdCJTBBJTIwJTIwdmFyJTIwanMlMkMlMjBmanMlMjAlM0QlMjBkLmdldEVsZW1lbnRzQnlUYWdOYW1lJTI4cyUyOSU1QjAlNUQlM0IlMEElMjAlMjBpZiUyMCUyOGQuZ2V0RWxlbWVudEJ5SWQlMjhpZCUyOSUyOSUyMHJldHVybiUzQiUwQSUyMCUyMGpzJTIwJTNEJTIwZC5jcmVhdGVFbGVtZW50JTI4cyUyOSUzQiUyMGpzLmlkJTIwJTNEJTIwaWQlM0IlMEElMjAlMjBqcy5zcmMlMjAlM0QlMjAlMjdodHRwcyUzQSUyRiUyRmNvbm5lY3QuZmFjZWJvb2submV0JTJGZW5fVVMlMkZzZGsuanMlMjN4ZmJtbCUzRDElMjZ2ZXJzaW9uJTNEdjMuMSUyNyUzQiUwQSUyMCUyMGZqcy5wYXJlbnROb2RlLmluc2VydEJlZm9yZSUyOGpzJTJDJTIwZmpzJTI5JTNCJTBBJTdEJTI4ZG9jdW1lbnQlMkMlMjAlMjdzY3JpcHQlMjclMkMlMjAlMjdmYWNlYm9vay1qc3NkayUyNyUyOSUyOSUzQiUzQyUyRnNjcmlwdCUzRSUwQSUwQSUzQ2RpdiUyMGNsYXNzJTNEJTIyZmItcGFnZSUyMiUyMGRhdGEtaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBkYXRhLXRhYnMlM0QlMjJ0aW1lbGluZSUyMiUyMGRhdGEtd2lkdGglM0QlMjI1MDAlMjIlMjBkYXRhLWhlaWdodCUzRCUyMjEwMDAlMjIlMjBkYXRhLXNtYWxsLWhlYWRlciUzRCUyMnRydWUlMjIlMjBkYXRhLWFkYXB0LWNvbnRhaW5lci13aWR0aCUzRCUyMnRydWUlMjIlMjBkYXRhLWhpZGUtY292ZXIlM0QlMjJmYWxzZSUyMiUyMGRhdGEtc2hvdy1mYWNlcGlsZSUzRCUyMnRydWUlMjIlM0UlM0NibG9ja3F1b3RlJTIwY2l0ZSUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LmZhY2Vib29rLmNvbSUyRmxhbnRlcm5yZWFsdHklMjIlMjBjbGFzcyUzRCUyMmZiLXhmYm1sLXBhcnNlLWlnbm9yZSUyMiUzRSUzQ2ElMjBocmVmJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZmFjZWJvb2suY29tJTJGbGFudGVybnJlYWx0eSUyMiUzRUxhbnRlcm4lMjBSZWFsdHklMjAlMjZhbXAlM0IlMjBEZXZlbG9wbWVudCUyQyUyMExMQyUzQyUyRmElM0UlM0MlMkZibG9ja3F1b3RlJTNFJTNDJTJGZGl2JTNFJTBBJTBBJTBBJTNDJTIxLS0lMjBMb2FkJTIwRmFjZWJvb2slMjBTREslMjBmb3IlMjBKYXZhU2NyaXB0JTIwLS0lM0UlMEElM0NkaXYlMjBpZCUzRCUyMmZiLXJvb3QlMjIlM0UlM0MlMkZkaXYlM0UlMEElM0NzY3JpcHQlM0UlMjhmdW5jdGlvbiUyOGQlMkMlMjBzJTJDJTIwaWQlMjklMjAlN0IlMEElMjAlMjB2YXIlMjBqcyUyQyUyMGZqcyUyMCUzRCUyMGQuZ2V0RWxlbWVudHNCeVRhZ05hbWUlMjhzJTI5JTVCMCU1RCUzQiUwQSUyMCUyMGlmJTIwJTI4ZC5nZXRFbGVtZW50QnlJZCUyOGlkJTI5JTI5JTIwcmV0dXJuJTNCJTBBJTIwJTIwanMlMjAlM0QlMjBkLmNyZWF0ZUVsZW1lbnQlMjhzJTI5JTNCJTIwanMuaWQlMjAlM0QlMjBpZCUzQiUwQSUyMCUyMGpzLnNyYyUyMCUzRCUyMCUyN2h0dHBzJTNBJTJGJTJGY29ubmVjdC5mYWNlYm9vay5uZXQlMkZlbl9VUyUyRnNkayUyRnhmYm1sLmN1c3RvbWVyY2hhdC5qcyUyM3hmYm1sJTNEMSUyNnZlcnNpb24lM0R2Mi4xMiUyNmF1dG9Mb2dBcHBFdmVudHMlM0QxJTI3JTNCJTBBJTIwJTIwZmpzLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlJTI4anMlMkMlMjBmanMlMjklM0IlMEElN0QlMjhkb2N1bWVudCUyQyUyMCUyN3NjcmlwdCUyNyUyQyUyMCUyN2ZhY2Vib29rLWpzc2RrJTI3JTI5JTI5JTNCJTNDJTJGc2NyaXB0JTNFJTBBJTBBJTNDJTIxLS0lMjBZb3VyJTIwY3VzdG9tZXIlMjBjaGF0JTIwY29kZSUyMC0tJTNFJTBBJTNDZGl2JTIwY2xhc3MlM0QlMjJmYi1jdXN0b21lcmNoYXQlMjIlMEElMjAlMjBhdHRyaWJ1dGlvbiUzRHNldHVwX3Rvb2wlMEElMjAlMjBwYWdlX2lkJTNEJTIyMTgyMTczMTk1OTU1NjUzJTIyJTBBJTIwJTIwbG9nZ2VkX2luX2dyZWV0aW5nJTNEJTIySGklMjElMjBXb3VsZCUyMHlvdSUyMGxpa2UlMjB0byUyMGNvbm5lY3QlMjB3aXRoJTIwYSUyMExhbnRlcm4lMjBBZ2VudCUyMG5vdyUzRiUyMiUwQSUyMCUyMGxvZ2dlZF9vdXRfZ3JlZXRpbmclM0QlMjJIaSUyMSUyMFdvdWxkJTIweW91JTIwbGlrZSUyMHRvJTIwY29ubmVjdCUyMHdpdGglMjBhJTIwTGFudGVybiUyMEFnZW50JTIwbm93JTNGJTIyJTNFJTBBJTNDJTJGZGl2JTNF[/vc_raw_html][/vc_column][vc_column width=\"1/2\"][hz-section-title hz_section_title=\"Kannapolis Community News\" hz_section_subtitle=\"\" hz_section_title_align=\"text-center\" hz_section_title_color=\"\"][vc_wp_rss items=\"7\" options=\"show_summary,show_date\" url=\"http://www.kannapolisnc.gov/Community/News\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1>Lantern Partners</h1>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"453\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://www.hwahomewarranty.com/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"456\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"1442\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://geico.widen.net/s/wteghfnoeo\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"451\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"http://www.terrywhitesell.com/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"1930\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://ryanivory.excellencebyarc.com/\"][vc_single_image image=\"1930\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://ryanivory.excellencebyarc.com/\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2188\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" onclick=\"custom_link\" img_link_target=\"_blank\" link=\"https://alcova.com/apply?lo=skteam\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n','Lantern Realty and Development - Home','','inherit','closed','closed','','2-revision-v1','','','2021-12-10 13:36:48','2021-12-10 13:36:48','',2,'https://lantern-realty.com/?p=2191',0,'revision','',0),(2193,6,'2021-12-10 17:36:37','2021-12-10 17:36:37','<div dir=\"ltr\">Hello Folks, I wanted to let you know we have moved the 2022 Marketing planning meeting (again).  The event will still be held at 9am on Tuesday, December 14th.  It will now be held in the EOC room at the Laureate Center in downtown Kannapolis.  The address is 401 Laureate Way, Kannapolis 28081.  The Laureate Center is City Hall and where we have had our Christmas Party and MLS classes.  <div><br></div><div>I felt the venue change was necessary as the new venue provides stable Wifi connections, USB and power at each workstation and AV equipment if needed. </div><div><br></div><div>Again, this meeting is very informal and will be for us to brainstorm and work out ideas for our marketing plans for 2022.   Nothing required on your end, just come and listen or share ideas.  <br clear=\"all\"><div><br></div>','VENUE CHANGE - 2022 Marketing meeting','','publish','closed','open','','venue-change-2022-marketing-meeting','','','2021-12-10 17:36:37','2021-12-10 17:36:37','',0,'https://lantern-realty.com/?p=2193',0,'post','',0),(2194,6,'2021-12-13 13:46:17','2021-12-13 13:46:17','<div dir=\"ltr\"><div class=\"gmail-kvgmc6g5 gmail-cxmmr5t8 gmail-oygrvhab gmail-hcukyx3x gmail-c1et5uql gmail-ii04i59q\" style=\"margin:0px;white-space:pre-wrap;font-family:\"Segoe UI Historic\",\"Segoe UI\",Helvetica,Arial,sans-serif;color:rgb(5,5,5);font-size:15px\"><div dir=\"auto\" style=\"font-family:inherit\"><span style=\"font-family:inherit\">Hello Folks, I wanted to let you know we have moved the 2022 Marketing planning meeting (again).  The event will still be held at 9am on Tuesday, December 14th.  It will now be held in the EOC room at the Laureate Center in downtown Kannapolis.  The address is 401 Laureate Way, Kannapolis 28081.  The Laureate Center is City Hall and where we have had our Christmas Party and MLS classes.  </span><br></div></div><div class=\"gmail-cxmmr5t8 gmail-oygrvhab gmail-hcukyx3x gmail-c1et5uql gmail-o9v6fnle gmail-ii04i59q\" style=\"margin:0.5em 0px 0px;white-space:pre-wrap;font-family:\"Segoe UI Historic\",\"Segoe UI\",Helvetica,Arial,sans-serif;color:rgb(5,5,5);font-size:15px\"><div dir=\"auto\" style=\"font-family:inherit\">I felt the venue change was necessary as the new venue provides stable Wifi connections, USB and power at each workstation and AV equipment if needed. </div></div><div class=\"gmail-cxmmr5t8 gmail-oygrvhab gmail-hcukyx3x gmail-c1et5uql gmail-o9v6fnle gmail-ii04i59q\" style=\"margin:0.5em 0px 0px;white-space:pre-wrap;font-family:\"Segoe UI Historic\",\"Segoe UI\",Helvetica,Arial,sans-serif;color:rgb(5,5,5);font-size:15px\"><div dir=\"auto\" style=\"font-family:inherit\">Again, this meeting is very informal and will be for us to brainstorm and work out ideas for our marketing plans for 2022.   Nothing required on your end, just come and listen or share ideas.</div></div><div><br></div>','2022 Marketing Planning meeting','','publish','closed','open','','2022-marketing-planning-meeting','','','2021-12-13 13:46:17','2021-12-13 13:46:17','',0,'https://lantern-realty.com/?p=2194',0,'post','',0),(2212,6,'2022-01-12 16:37:36','2022-01-12 16:37:36','<div dir=\"ltr\">Good morning All, just a quick update on our Tuesday morning meeting.  We have been having this informal \"think tank\" meeting at our Kannapolis office.  With the rise of Omicron we have decided to hold off on in person meetings at the Kannapolis office until numbers subside. <div><br></div><div>I miss these meetings!  So we needed to find a larger space that made it safer to meet.  Thankfully CCAR has agreed to allow us to use their conference room for our meetings.  It is larger and allows for more room for everyone.  </div><div><br></div><div>The address is \r\n<span style=\"color:rgb(32,33,36);font-family:Roboto,arial,sans-serif;font-size:14px\">250 Branchview Dr NE, Concord, NC 28025 and the conference room is on the second floor.  PLease be on time so we can get in and out.  Also, be respectful to the other businesses located in the building when coming in.  </span><br clear=\"all\"><div><br></div>','Tuesday Morning \"Think Tank\" meetings','','publish','closed','open','','tuesday-morning-think-tank-meetings','','','2022-01-12 16:37:36','2022-01-12 16:37:36','',0,'https://lantern-realty.com/?p=2212',0,'post','',0),(2197,9,'2022-01-04 21:17:14','2022-01-04 21:17:14','<div dir=\"ltr\"><div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom ONLY meeting.<br><br>T<b>opic: Team Safety Meeting w/Wendell<br>Time: Jan 5, 2022 11:00 AM Eastern Time (US and Canada)<br></b><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/86077797930?pwd=MHVPS0J6V05nRzVOSURxbENhaEpYQT09\">https://us02web.zoom.us/j/86077797930?pwd=MHVPS0J6V05nRzVOSURxbENhaEpYQT09</a><br><br>Meeting ID: 860 7779 7930<br>Passcode: 230583<br>One tap mobile<br>+13017158592,,86077797930#,,,,*230583# US (Washington DC)<br>+13126266799,,86077797930#,,,,*230583# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 860 7779 7930<br>Passcode: 230583<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kd0mHQkuUZ\">https://us02web.zoom.us/u/kd0mHQkuUZ</a><br><br></div><div><br></div><div><br></div><br clear=\"all\"><div><br></div>','Zoom Only Team Safety Meeting with Wendell - Wednesday, Jan 5, 2022 11:00 AM','','publish','closed','open','','zoom-only-team-safety-meeting-with-wendell-wednesday-jan-5-2022-1100-am','','','2022-01-04 21:17:14','2022-01-04 21:17:14','',0,'https://lantern-realty.com/?p=2197',0,'post','',0),(2198,0,'2022-01-04 21:26:22','2022-01-04 21:26:22','','FD580C04-1249-4EAD-833A-6C883884A237','','inherit','','closed','','fd580c04-1249-4ead-833a-6c883884a237','','','2022-01-04 21:26:22','2022-01-04 21:26:22','',0,'https://lantern-realty.com/fd580c04-1249-4ead-833a-6c883884a237/',0,'attachment','image/jpeg',0),(2199,6,'2022-01-05 13:36:46','2022-01-05 13:36:46','<div dir=\"ltr\">Good Morning All, I hope everyone is doing well and healthy.  I look forward to seeing you all on todays team meeting.  Wendell will be discussing Realtor safety, which we always need to keep top of mind.  <div><br></div><div>See you at 11am today!!!</div><div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br>Topic: Team Safety Meeting w/Wendell<br>Time: Jan 5, 2022 11:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/86077797930?pwd=MHVPS0J6V05nRzVOSURxbENhaEpYQT09\">https://us02web.zoom.us/j/86077797930?pwd=MHVPS0J6V05nRzVOSURxbENhaEpYQT09</a><br><br>Meeting ID: 860 7779 7930<br>Passcode: 230583<br>One tap mobile<br>+13017158592,,86077797930#,,,,*230583# US (Washington DC)<br>+13126266799,,86077797930#,,,,*230583# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 860 7779 7930<br>Passcode: 230583<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kd0mHQkuUZ\">https://us02web.zoom.us/u/kd0mHQkuUZ</a><br><br><div><br></div>','Todays Team meeting','','publish','closed','open','','todays-team-meeting-2','','','2022-01-05 13:36:46','2022-01-05 13:36:46','',0,'https://lantern-realty.com/?p=2199',0,'post','',0),(2200,9,'2022-01-05 17:56:02','2022-01-05 17:56:02','<div dir=\"ltr\"><div><br></div><div>Please join us in welcoming Ryan Lantz with Ribbon to find out how they work and how they can benefit you and your client in a transaction.  If you haven&#39;t heard of Ribbon or haven&#39;t had the opportunity to use them yet, please join the meeting and see what you have been missing.  At this time, this is a Zoom only meeting.  Please note it starts at <b>9:00 AM</b></div><div><b><br></b></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br></div><div><br><b>Topic: RIBBON w/Ryan Lantz<br>Time: Jan 6, 2022 09:00 AM Eastern Time (US and Canada)<br></b><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/87241450754?pwd=VzI0NFAyWWZCbGsyN1dwb3Z4ejdodz09\">https://us02web.zoom.us/j/87241450754?pwd=VzI0NFAyWWZCbGsyN1dwb3Z4ejdodz09</a><br><br>Meeting ID: 872 4145 0754<br>Passcode: 632440<br>One tap mobile<br>+13126266799,,87241450754#,,,,*632440# US (Chicago)<br>+19292056099,,87241450754#,,,,*632440# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 872 4145 0754<br>Passcode: 632440<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kzmkZt5l\">https://us02web.zoom.us/u/kzmkZt5l</a><br><br></div><div><br></div><br clear=\"all\"><div><br></div>','Lantern Realty - RIBBON Zoom Class Thursday, Jan 6 at 9:00 AM','','publish','closed','open','','lantern-realty-ribbon-zoom-class-thursday-jan-6-at-900-am','','','2022-01-05 17:56:02','2022-01-05 17:56:02','',0,'https://lantern-realty.com/?p=2200',0,'post','',0),(2201,0,'2022-01-05 21:08:45','2022-01-05 21:08:45','','IMG_20220105_160448_609','','inherit','','closed','','img_20220105_160448_609','','','2022-01-05 21:08:45','2022-01-05 21:08:45','',0,'https://lantern-realty.com/img_20220105_160448_609/',0,'attachment','image/jpeg',0),(2202,9,'2022-01-06 02:26:17','2022-01-06 02:26:17','<div dir=\"auto\">Due to last minute unavoidable conflicts in schedule and staffing, the Ribbon class will be cancelled. Ryan is working on rescheduling it as soon as possible.  Thank you all for you understanding on this last minute change.</div><div dir=\"auto\"><br></div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Jan 5, 2022 at 12:50 PM Melissa Jackling &lt;<a href=\"mailto:onlymyrealtormelissa@gmail.com\"><a href=\"mailto:onlymyrealtormelissa@gmail.com\" >onlymyrealtormelissa@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\"><div><br></div><div>Please join us in welcoming Ryan Lantz with Ribbon to find out how they work and how they can benefit you and your client in a transaction.  If you haven&#39;t heard of Ribbon or haven&#39;t had the opportunity to use them yet, please join the meeting and see what you have been missing.  At this time, this is a Zoom only meeting.  Please note it starts at <b>9:00 AM</b></div><div><b><br></b></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br></div><div><br><b>Topic: RIBBON w/Ryan Lantz<br>Time: Jan 6, 2022 09:00 AM Eastern Time (US and Canada)<br></b><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/87241450754?pwd=VzI0NFAyWWZCbGsyN1dwb3Z4ejdodz09\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/j/87241450754?pwd=VzI0NFAyWWZCbGsyN1dwb3Z4ejdodz09</a><br><br>Meeting ID: 872 4145 0754<br>Passcode: 632440<br>One tap mobile<br>+13126266799,,87241450754#,,,,*632440# US (Chicago)<br>+19292056099,,87241450754#,,,,*632440# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 872 4145 0754<br>Passcode: 632440<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kzmkZt5l\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/u/kzmkZt5l</a><br><br></div><div><br></div><br clear=\"all\"><div><br></div>','Lantern Realty - RIBBON Zoom Class Thursday, Jan 6 at 9:00 AM','','publish','closed','open','','lantern-realty-ribbon-zoom-class-thursday-jan-6-at-900-am-2','','','2022-01-06 02:26:17','2022-01-06 02:26:17','',0,'https://lantern-realty.com/?p=2202',0,'post','',0),(2205,0,'2022-01-09 00:58:16','2022-01-09 00:58:16','','headshot','','inherit','','closed','','headshot-4','','','2022-01-09 00:58:16','2022-01-09 00:58:16','',0,'https://lantern-realty.com/headshot-4/',0,'attachment','image/jpeg',0),(2206,0,'2022-01-09 00:58:52','2022-01-09 00:58:52','','headshot','','inherit','','closed','','headshot-5','','','2022-01-09 00:58:52','2022-01-09 00:58:52','',0,'https://lantern-realty.com/headshot-5/',0,'attachment','image/jpeg',0),(2208,0,'2022-01-10 20:23:40','2022-01-10 20:23:40','','Head2','','inherit','','closed','','head2','','','2022-01-10 20:23:40','2022-01-10 20:23:40','',0,'https://lantern-realty.com/head2/',0,'attachment','image/png',0),(2209,9,'2022-01-11 15:06:16','2022-01-11 15:06:16','<div dir=\"ltr\"><br><br><div class=\"gmail_quote\"><div class=\"gmail_attr\">Hello Lantern Agents,  Truehomes is putting on a NEW CONSTRUCTION class via Microsoft Teams for our agents, tomorrow, January 12 at 10 am. Please join us in learning about new construction and bring your questions.  If you miss this class, they will offer two more live classes this month at their model homes.  I&#39;ll send out more info about that later.  If you are unfamiliar with Microsoft Teams or do not have a free Teams account, please try to join a little early to get set up before the class. See you tomorrow!</div><br>\r\n\r\n\r\n<div lang=\"EN-US\" link=\"#0563C1\" vlink=\"#954F72\" style=\"word-wrap:break-word\"> <div class=\"m_-917851055151812147WordSection1\"> <p class=\"MsoNormal\"><u></u> <u></u></p> <div> <div> <p class=\"MsoNormal\"><span style=\"color:#5f5f5f\">________________________________________________________________________________</span> <u></u><u></u></p> </div> <div> <div style=\"margin-top:.25in;margin-bottom:15.0pt\"> <p class=\"MsoNormal\"><span style=\"font-size:18.0pt;font-family:\"Segoe UI\",sans-serif;color:#252424\">Microsoft Teams meeting</span><span style=\"font-family:\"Segoe UI\",sans-serif;color:#252424\"> <u></u><u></u></span></p> </div> <div style=\"margin-bottom:15.0pt\"> <div> <p class=\"MsoNormal\"><b><span style=\"font-size:10.5pt;font-family:\"Segoe UI\",sans-serif;color:#252424\">Join on your computer or mobile app</span></b><b><span style=\"font-family:\"Segoe UI\",sans-serif;color:#252424\"> <u></u><u></u></span></b></p> </div> <p class=\"MsoNormal\"><span style=\"font-family:\"Segoe UI\",sans-serif;color:#252424\"><a href=\"https://teams.microsoft.com/l/meetup-join/19%3ameeting_NTJhNjA5NzItZTY5Mi00NTk0LWI2ODgtNjdhM2E4OTliNTk0%40thread.v2/0?context=%7b%22Tid%22%3a%22408e48fc-2b91-4f9b-b8e7-cd4a6fcec38a%22%2c%22Oid%22%3a%22120e6b8a-b591-4953-91f9-1b6ea67c2bbf%22%7d\" target=\"_blank\" rel=\"noopener\"><span style=\"font-size:10.5pt;font-family:\"Segoe UI Semibold\",sans-serif;color:#6264a7\">Click  here to join the meeting</span></a> <u></u><u></u></span></p> </div> <div style=\"margin-top:15.0pt;margin-bottom:.25in\"> <p class=\"MsoNormal\"><span style=\"font-family:\"Segoe UI\",sans-serif;color:#252424\"><a href=\"https://aka.ms/JoinTeamsMeeting\" target=\"_blank\" rel=\"noopener\"><span style=\"font-size:10.5pt;color:#6264a7\">Learn More</span></a> | <a href=\"https://teams.microsoft.com/meetingOptions/?organizerId=120e6b8a-b591-4953-91f9-1b6ea67c2bbf&amp;tenantId=408e48fc-2b91-4f9b-b8e7-cd4a6fcec38a&amp;threadId=19_meeting_NTJhNjA5NzItZTY5Mi00NTk0LWI2ODgtNjdhM2E4OTliNTk0@thread.v2&amp;messageId=0&amp;language=en-US\" target=\"_blank\" rel=\"noopener\"> <span style=\"font-size:10.5pt;color:#6264a7\">Meeting options</span></a> <u></u><u></u></span></p> </div> </div> </div> <div> <p class=\"MsoNormal\"><span style=\"color:#5f5f5f\">________________________________________________________________________________</span> <u></u><u></u></p> </div> <p class=\"MsoNormal\"><u></u> <u></u></p> </div> </div>\r\n</div><br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\'\'><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/default-48.png\' alt=\'default icon\' />61dd9ce80d825</a>\n<a href=\'https://lantern-realty.com/wp-content/uploads/2022/01/invite.ics\'><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/default-48.png\' alt=\'default icon\' />invite.ics</a></div>','Fwd: New Home Construction Class for Lantern Realty','','publish','closed','open','','fwd-new-home-construction-class-for-lantern-realty','','','2022-01-11 15:06:16','2022-01-11 15:06:16','',0,'https://lantern-realty.com/?p=2209',0,'post','',0),(2210,9,'2022-01-11 15:06:16','2022-01-11 15:06:16','','invite.ics','','inherit','closed','closed','','invite','','','2022-01-11 15:06:16','2022-01-11 15:06:16','',2209,'https://lantern-realty.com/wp-content/uploads/2022/01/invite.ics',0,'attachment','text/calendar',0),(2204,1,'2022-01-06 23:09:38','2022-01-06 23:09:38','<!-- wp:paragraph -->\n<p>Born in the beautiful and modern city of Ningbo, China, I worked as a businesswoman in Import &amp; Export field for more than ten years before immigrating to the States. My family lived in IA and IL for several years, and later settled in one of the best states&nbsp; – North Carolina. Teaching and disseminating Chinese language(Mandarin) and culture made my life colorful and meaningful in the U.S. I also served as a president of the Chinese Heritage Association for several years when resided in IL.<br><br>I’m always very interested in architecture along with the housing market and property management. Through buying and selling my own properties in different states and giving advices to friends on their successful property investment activities I found much joy in Real Estate business, which later prompted me to obtain my NC Real Estate Broker’s license and decided to pursue it for my future career path.<br><br>I believe the professional knowledge, timely positive communication, and prudent working ethics are the keys to build up good and trustworthy relationships with my clients. It is my pleasure to offer you the best service to meet your Real Estate needs!<br><br>* Bilingual in Chinese and English &nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>* Photographer  <a rel=\"noreferrer noopener\" href=\"http://www.istockphoto.com/portfolio/minzhang\" target=\"_blank\" data-type=\"URL\" data-id=\"http://www.istockphoto.com/portfolio/minzhang\">www.istockphoto.com/portfolio/minzhan</a><a href=\"http://www.istockphoto.com/portfolio/minzhang\" data-type=\"URL\" data-id=\"http://www.istockphoto.com/portfolio/minzhang\" target=\"_blank\" rel=\"noreferrer noopener\">g</a></p>\n<!-- /wp:paragraph -->','Min Zhang','','inherit','closed','closed','','623-revision-v1','','','2022-01-06 23:09:38','2022-01-06 23:09:38','',623,'https://lantern-realty.com/?p=2204',0,'revision','',0),(2211,0,'2022-01-11 18:43:28','2022-01-11 18:43:28','','Head2','','inherit','','closed','','head2-2','','','2022-01-11 18:43:28','2022-01-11 18:43:28','',0,'https://lantern-realty.com/head2-2/',0,'attachment','image/png',0),(2213,9,'2022-01-12 16:37:36','2022-01-12 16:37:36','<div dir=\"ltr\">Yay! For those wondering, the \"informal meeting\" time would be?<br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Jan 12, 2022 at 11:30 AM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Good morning All, just a quick update on our Tuesday morning meeting.  We have been having this informal \"think tank\" meeting at our Kannapolis office.  With the rise of Omicron we have decided to hold off on in person meetings at the Kannapolis office until numbers subside. <div><br></div><div>I miss these meetings!  So we needed to find a larger space that made it safer to meet.  Thankfully CCAR has agreed to allow us to use their conference room for our meetings.  It is larger and allows for more room for everyone.  </div><div><br></div><div>The address is \r\n<span style=\"color:rgb(32,33,36);font-family:Roboto,arial,sans-serif;font-size:14px\">250 Branchview Dr NE, Concord, NC 28025 and the conference room is on the second floor.  PLease be on time so we can get in and out.  Also, be respectful to the other businesses located in the building when coming in.  </span><br clear=\"all\"><div><br></div>','Tuesday Morning \"Think Tank\" meetings','','publish','closed','open','','tuesday-morning-think-tank-meetings-2','','','2022-01-12 16:37:36','2022-01-12 16:37:36','',0,'https://lantern-realty.com/?p=2213',0,'post','',0),(2214,6,'2022-01-12 16:49:41','2022-01-12 16:49:41','<div dir=\"auto\">930-11</div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Jan 12, 2022, 11:33 AM Melissa Jackling &lt;<a href=\"mailto:onlymyrealtormelissa@gmail.com\"><a href=\"mailto:onlymyrealtormelissa@gmail.com\" >onlymyrealtormelissa@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\">Yay! For those wondering, the \"informal meeting\" time would be?<br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, Jan 12, 2022 at 11:30 AM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\" target=\"_blank\" rel=\"noreferrer noopener\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Good morning All, just a quick update on our Tuesday morning meeting.  We have been having this informal \"think tank\" meeting at our Kannapolis office.  With the rise of Omicron we have decided to hold off on in person meetings at the Kannapolis office until numbers subside. <div><br></div><div>I miss these meetings!  So we needed to find a larger space that made it safer to meet.  Thankfully CCAR has agreed to allow us to use their conference room for our meetings.  It is larger and allows for more room for everyone.  </div><div><br></div><div>The address is \r\n<span style=\"color:rgb(32,33,36);font-family:Roboto,arial,sans-serif;font-size:14px\">250 Branchview Dr NE, Concord, NC 28025 and the conference room is on the second floor.  PLease be on time so we can get in and out.  Also, be respectful to the other businesses located in the building when coming in.  </span><br clear=\"all\"><div><br></div>','Tuesday Morning \"Think Tank\" meetings','','publish','closed','open','','tuesday-morning-think-tank-meetings-3','','','2022-01-12 16:49:41','2022-01-12 16:49:41','',0,'https://lantern-realty.com/?p=2214',0,'post','',0),(2215,9,'2022-01-12 19:56:05','2022-01-12 19:56:05','<div dir=\"ltr\"><div>Do you know how to do a CMA? Whether you know, don&#39;t know or only think you know...please join our Zoom class tomorrow, January 13 at 10 am with our very own Mooresville BIC - Sarah Romesburg.  We all can benefit from this class and I know we have had many agents asking for a CMA class, so I hope to see you there ~</div><div><br><b>Topic: CMA w/ Sarah Romesburg  ZOOM ONLY<br>Time: Jan 13, 2022 10:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/87204424015?pwd=VUlWTk9ITVoxdzFZS0sxNHJjYVkydz09\">https://us02web.zoom.us/j/87204424015?pwd=VUlWTk9ITVoxdzFZS0sxNHJjYVkydz09</a><br><br>Meeting ID: 872 0442 4015<br>Passcode: 979751<br>One tap mobile<br>+19292056099,,87204424015#,,,,*979751# US (New York)<br>+13017158592,,87204424015#,,,,*979751# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 872 0442 4015<br>Passcode: 979751<br>Find your local number: <a href=\"https://us02web.zoom.us/u/keb4Txywk9\">https://us02web.zoom.us/u/keb4Txywk9</a><br><br></div><br clear=\"all\"><div><br></div>','CMA ZOOM ONLY CLASS INVITE for Thursday Jan 13 at 10:00 AM until.....','','publish','closed','open','','cma-zoom-only-class-invite-for-thursday-jan-13-at-1000-am-until','','','2022-01-12 19:56:05','2022-01-12 19:56:05','',0,'https://lantern-realty.com/?p=2215',0,'post','',0),(2216,9,'2022-01-13 19:37:21','2022-01-13 19:37:21','<div dir=\"ltr\">Here are some great classes coming up that you&#39;ll want to put in your calendar, also note: the education calendar is attached and there are a few RSVP requests on the classes. To highlight the next few classes, we have.........<div><br></div><div><br></div><div><b>Wednesday,  January 19  10-11 am - New Construction class</b> on location at <b>True Homes - Haven at Rocky River </b>  1049 River Haven Ave SW Concord NC  They will provide coffee and snacks such as muffins or fruit, etc - they said if you have a special request or preference let them know and they&#39;ll try to accomodate. Also, <b>please RSVP</b> so I can give them a head count and so they can make sure they have enough food/beverage.</div><div><br></div><div><b>Wednesday,  January 19   12-1pm</b> - <b>\"It&#39;s Not Your Fault, but It Could Be\"</b> presented by Nick Lovelace w/Knipp Law - Lunch provided, <b>please RSVP</b> so we can get a head count for Nick</div><div><br></div><div><b>Thursday, January </b><span style=\"font-size:13px;font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif\"><font color=\"#000000\" style=\"\"><b>20  9-11am -   Renovation Loans </b>presented by Terry Whitesell w/Fairway Mortgage - Breakfast will be provided, <b>please RSVP</b> so we can get a head count for Terry</font></span></div><div><span style=\"font-size:13px;font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif\"><font color=\"#000000\" style=\"\"><br></font></span></div><div><span style=\"font-size:13px;font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif\"><b style=\"\"><font color=\"#000000\">Friday - </font></b></span><b style=\"font-size:13px;font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif\"><font color=\"#000000\">January 21  9AM - 1 PM</font><font color=\"#666666\">  </font></b><span style=\"font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\"><font color=\"#000000\">GRI Designation w/CE ($80 for CCAR members, $90 for nonmembers)  via ZOOM - must register thru CCAR</font></span></div><div><b style=\"color:rgb(0,0,0);font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\"><br></b></div><div><b style=\"color:rgb(0,0,0);font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\">Thursday, January 25  11-11:30am - Investment Planning class</b><span style=\"color:rgb(0,0,0);font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\"> presented by Megan Brewer (Webinar) </span><br></div><div><span style=\"font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\"><font color=\"#000000\"><br></font></span></div><div><span style=\"font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\"><font color=\"#000000\"><b>Wednesday, January 26</b>  </font></span><b>10-11 am - New Construction class</b> on location at <b>True Homes - The Falls</b>    1434 W  A  St. Kannapolis NC - just up the street from our Kannapolis office - They will provide coffee and snacks such as muffins or fruit, etc - they said if you have a special request or preference let them know and they&#39;ll try to accomodate. Also, <b>please RSVP</b> so I can give them a head count and so they can make sure they have enough food/beverage.</div><div><br></div><div><font face=\"Open Sans, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif\" color=\"#000000\">Look for more info to come on our February classes, we have a CRM and 1031 Exchange class to name a few. If there is a class topic you would be interested in seeing, please reach out to us and let us know.</font></div><div><font face=\"Open Sans, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif\" color=\"#000000\"><br></font></div><div><font face=\"Open Sans, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif\" color=\"#000000\">Stay Safe and Stay Healthy and I&#39;ll see you at class!</font></div><div><font color=\"#666666\" face=\"Open Sans, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif\"><br clear=\"all\"></font><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/01/2022-Educational-Calendar.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2022-Educational-Calendar.xlsx</a><br /></div>','Upcoming Lantern Realty Classes and Education Calendar for January 2022','','publish','closed','open','','upcoming-lantern-realty-classes-and-education-calendar-for-january-2022','','','2022-01-13 19:37:21','2022-01-13 19:37:21','',0,'https://lantern-realty.com/?p=2216',0,'post','',0),(2217,9,'2022-01-13 19:37:21','2022-01-13 19:37:21','','2022-Educational-Calendar.xlsx','','inherit','closed','closed','','2022-educational-calendar','','','2022-01-13 19:37:21','2022-01-13 19:37:21','',2216,'https://lantern-realty.com/wp-content/uploads/2022/01/2022-Educational-Calendar.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2218,6,'2022-01-15 16:36:43','2022-01-15 16:36:43','<div dir=\"ltr\">Good Morning All, hope you have your bread and milk and are ready for the massive snowmegeddon coming tonight!  Regardless, please be safe!!!!<div><br></div><div>- You should have received your Q1 2022 invoices this morning.  If you are set up on a bank draft your dues will be drafted on 1/31. If you are not on bank draft, we accept venmo, checks or cash.  Please make arrangements to pay accordingly. </div><div>- You will be seeing an invite from me concerning our Awards banquet on 2/24/22.  It will be RSVP and for agents only.  Lunch will be provided as well as door prizes and who knows what else!!!  Come and celebrate a phenomenal 2021!</div><div>- <span style=\"color:rgb(0,0,0)\">Here are some great classes coming up that you&#39;ll want to put in your calendar, also note: the education calendar is attached and there are a few RSVP requests on the classes. To highlight the next few classes, we have.........</span></div><div style=\"color:rgb(0,0,0)\"><br></div><div style=\"color:rgb(0,0,0)\"><br></div><div style=\"color:rgb(0,0,0)\"><b>Wednesday,  January 19  10-11 am - New Construction class</b> on location at <b>True Homes - Haven at Rocky River </b>  1049 River Haven Ave SW Concord NC  They will provide coffee and snacks such as muffins or fruit, etc - they said if you have a special request or preference let them know and they&#39;ll try to accomodate. Also, <b>please RSVP</b> so I can give them a head count and so they can make sure they have enough food/beverage.</div><div style=\"color:rgb(0,0,0)\"><br></div><div style=\"color:rgb(0,0,0)\"><b>Wednesday,  January 19   12-1pm</b> - <b>\"It&#39;s Not Your Fault, but It Could Be\"</b> presented by Nick Lovelace w/Knipp Law - Lunch provided, <b>please RSVP</b> so we can get a head count for Nick</div><div style=\"color:rgb(0,0,0)\"><br></div><div style=\"color:rgb(0,0,0)\"><b>Thursday, January </b><span style=\"font-size:13px;font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif\"><font color=\"#000000\"><b>20  9-11am -   Renovation Loans </b>presented by Terry Whitesell w/Fairway Mortgage - Breakfast will be provided, <b>please RSVP</b> so we can get a head count for Terry</font></span></div><div style=\"color:rgb(0,0,0)\"><span style=\"font-size:13px;font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif\"><font color=\"#000000\"><br></font></span></div><div style=\"color:rgb(0,0,0)\"><span style=\"font-size:13px;font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif\"><b><font color=\"#000000\">Friday - </font></b></span><b style=\"font-size:13px;font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif\"><font color=\"#000000\">January 21  9AM - 1 PM</font><font color=\"#666666\">  </font></b><span style=\"font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\"><font color=\"#000000\">GRI Designation w/CE ($80 for CCAR members, $90 for nonmembers)  via ZOOM - must register thru CCAR</font></span></div><div style=\"color:rgb(0,0,0)\"><b style=\"font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\"><br></b></div><div style=\"color:rgb(0,0,0)\"><b style=\"font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\">Thursday, January 25  11-11:30am - Investment Planning class</b><span style=\"font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\"> presented by Megan Brewer (Webinar) </span><br></div><div style=\"color:rgb(0,0,0)\"><span style=\"font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\"><font color=\"#000000\"><br></font></span></div><div style=\"color:rgb(0,0,0)\"><span style=\"font-family:\"Open Sans\",HelveticaNeue,\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:13px\"><font color=\"#000000\"><b>Wednesday, January 26</b>  </font></span><b>10-11 am - New Construction class</b> on location at <b>True Homes - The Falls</b>    1434 W  A  St. Kannapolis NC - just up the street from our Kannapolis office - They will provide coffee and snacks such as muffins or fruit, etc - they said if you have a special request or preference let them know and they&#39;ll try to accomodate. Also, <b>please RSVP</b> so I can give them a head count and so they can make sure they have enough food/beverage.</div><div style=\"color:rgb(0,0,0)\"><br></div><div style=\"color:rgb(0,0,0)\"><font face=\"Open Sans, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif\" color=\"#000000\">Look for more info to come on our February classes, we have a CRM and 1031 Exchange class to name a few. If there is a class topic you would be interested in seeing, please reach out to us and let us know.</font></div><div style=\"color:rgb(0,0,0)\"><font face=\"Open Sans, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif\" color=\"#000000\"><br></font></div><div style=\"color:rgb(0,0,0)\"><font face=\"Open Sans, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif\" color=\"#000000\">Please continue to keep your coworkers and families in your thoughts and prayers as we have many that are fighting Covid or other ailments.  If you need ANYTHING, please don&#39;t hesitate to let your BIC or Paula, Dean or myself know.  </font></div><div style=\"color:rgb(0,0,0)\"><font face=\"Open Sans, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif\" color=\"#000000\"><br></font></div><div style=\"color:rgb(0,0,0)\"><font face=\"Open Sans, HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif\" color=\"#000000\">Love yall, stay safe!!!!</font></div><br class=\"gmail-Apple-interchange-newline\"><div><br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/01/2022-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2022-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-37','','','2022-01-15 16:36:43','2022-01-15 16:36:43','',0,'https://lantern-realty.com/?p=2218',0,'post','',0),(2219,6,'2022-01-15 16:36:43','2022-01-15 16:36:43','','2022-Educational-Calendar.xlsx','','inherit','closed','closed','','2022-educational-calendar-1','','','2022-01-15 16:36:43','2022-01-15 16:36:43','',2218,'https://lantern-realty.com/wp-content/uploads/2022/01/2022-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2220,0,'2022-01-17 03:20:43','2022-01-17 03:20:43','','IvanHeadShot copy 2','','inherit','','closed','','ivanheadshot-copy-2','','','2022-01-17 03:20:43','2022-01-17 03:20:43','',0,'https://lantern-realty.com/ivanheadshot-copy-2/',0,'attachment','image/jpeg',0),(2221,6,'2022-01-17 16:56:07','2022-01-17 16:56:07','<div dir=\"ltr\">Good Day All!  Just a few notes as we start out this icy and chilly week.<div><br></div><div>- First and foremost we want to announce we have opened our first office in the Raleigh market!  Matt Bergevin of the Carolina Elite Realty Group is heading up that office. Tina Phillips has also joined us in this office.  The office is in Wake Forest, a fast growing suburb of Raleigh. I have attached a roster with the updated office contact info on it.  Make sure if you have Raleigh area referrals to send them Matt and Tina&#39;s way.  </div><div>- I&#39;ve attached an Education calendar.  We have a ton of activity this week.  Any classes that are on Zoom and led by Lantern agents will be recorded and added to our YouTube channel. Make sure you are taking full advantage of these offerings.  If you have something you would like to see offered as a class or have a desire to teach, please let Melissa Jackling or myself know. </div><div>- Tuesday&#39;s \"Think Tank\" session for this week is going to be canceled due to weather concerns.  Spoke to Morgan at CCAR this morning and she said they were likely going to have a delayed opening if at all tomorrow. We still plan on having one next week at the CCAR office at 930.</div><div>- You should have received an invite from me regarding the 2021 Awards banquet that is being held on Thursday 2/24.  We need your responses as spaces are limited.  If we get more than we can hold we will move the event.  We just need to know the headcount. </div><div>- Lastly, you should have received your Q1 2022 dues invoice last week.  Your dues will be drafted on 1/30/22 if you are signed up for a bank draft.  Otherwise, we need your payments by 2/1/22 via venmo, cash or check. </div><div><br></div><div>Thanks again for all you do!!!!</div><div><br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/01/LRD-Roster_011722.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_011722.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2022/01/2022-Educational-Calendar-2.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2022-Educational-Calendar.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-38','','','2022-01-17 16:56:07','2022-01-17 16:56:07','',0,'https://lantern-realty.com/?p=2221',0,'post','',0),(2222,6,'2022-01-17 16:56:07','2022-01-17 16:56:07','','LRD-Roster_011722.xlsx','','inherit','closed','closed','','lrd-roster_011722','','','2022-01-17 16:56:07','2022-01-17 16:56:07','',2221,'https://lantern-realty.com/wp-content/uploads/2022/01/LRD-Roster_011722.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2223,6,'2022-01-17 16:56:07','2022-01-17 16:56:07','','2022-Educational-Calendar.xlsx','','inherit','closed','closed','','2022-educational-calendar-2','','','2022-01-17 16:56:07','2022-01-17 16:56:07','',2221,'https://lantern-realty.com/wp-content/uploads/2022/01/2022-Educational-Calendar-2.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2224,8,'2022-01-18 22:45:58','2022-01-18 22:45:58','<div>  <p class=\"yiv1534177801MsoNormal\" style=\"margin: 0in; font-family: sans-serif; -webkit-text-size-adjust: auto; word-wrap: break-word !important;\">Hey everyone&nbsp;</p><p class=\"yiv1534177801MsoNormal\" style=\"margin: 0in; font-family: sans-serif; -webkit-text-size-adjust: auto; word-wrap: break-word !important;\">&nbsp;</p><p class=\"yiv1534177801MsoNormal\" style=\"margin: 0in; font-family: sans-serif; -webkit-text-size-adjust: auto; word-wrap: break-word !important;\">Just wanted to remind you to take a second and sign up for the meet and greet on a Thursday&nbsp;&nbsp;using the link below.</p><p class=\"yiv1534177801MsoNormal\" style=\"margin: 0in; font-family: sans-serif; -webkit-text-size-adjust: auto; word-wrap: break-word !important;\">&nbsp;</p><p class=\"yiv1534177801MsoNormal\" style=\"margin: 0in; font-size: 11pt; font-family: sans-serif; -webkit-text-size-adjust: auto; word-wrap: break-word !important;\"><a rel=\"nofollow noopener noreferrer\" shape=\"rect\" target=\"_blank\" href=\"https://www.eventbrite.com/e/agent-event-with-lantern-realty-tickets-247201224517\" style=\"color: blue; text-decoration: underline; word-wrap: break-word !important;\">https://www.eventbrite.com/e/agent-event-with-lantern-realty-tickets-247201224517</a></p><p class=\"yiv1534177801MsoNormal\" style=\"margin: 0in; font-family: sans-serif; -webkit-text-size-adjust: auto; word-wrap: break-word !important;\">&nbsp;</p><p class=\"yiv1534177801MsoNormal\" style=\"margin: 0in; font-family: sans-serif; -webkit-text-size-adjust: auto; word-wrap: break-word !important;\">We will monitor the weather since there is a wintery mix that might hit as we don’t want to get caught out in that.</p><p class=\"yiv1534177801MsoNormal\" style=\"margin: 0in; font-family: sans-serif; -webkit-text-size-adjust: auto; word-wrap: break-word !important;\">&nbsp;</p><p class=\"yiv1534177801MsoNormal\" style=\"margin: 0in; font-family: sans-serif; -webkit-text-size-adjust: auto; word-wrap: break-word !important;\">Hopefully I will see you all tomorrow and stay tuned for more updates</p><p class=\"yiv1534177801MsoNormal\" style=\"margin: 0in; font-family: sans-serif; -webkit-text-size-adjust: auto; word-wrap: break-word !important;\">&nbsp;</p><div style=\"-webkit-text-size-adjust: auto; word-wrap: break-word !important;\"><p class=\"yiv1534177801MsoNormal\" style=\"word-wrap: break-word !important; margin: 0in; font-size: 11pt; font-family: sans-serif;\">&nbsp;</p><p class=\"yiv1534177801MsoNormal\" style=\"word-wrap: break-word !important; margin: 0in; font-size: 11pt; font-family: sans-serif;\">&nbsp;</p><p class=\"yiv1534177801MsoNormal\" style=\"word-wrap: break-word !important; margin: 0in; font-size: 11pt; font-family: sans-serif;\"><img align=\"left\" width=\"139\" height=\"153\" src=\"https://lantern-realty.com/wp-content/uploads/2022/01/image002.jpg\" data-ymail=\"inline-attachment\" data-filename=\"image002.jpg\" data-filesize=\"5063\" yahoo_partid=\"8\" hspace=\"12\" style=\"word-wrap: break-word !important; margin-top: 0px; margin-bottom: 29px;\"><b style=\"word-wrap: break-word !important;\"><span style=\"word-wrap: break-word !important; font-size: 16pt; color: rgb(0, 88, 157);\">STEPHEN&nbsp;</span></b><span style=\"word-wrap: break-word !important; font-size: 16pt; color: rgb(0, 88, 157);\">KNORR</span><b style=\"word-wrap: break-word !important;\"><span style=\"font-size: 14pt; word-wrap: break-word !important;\"><br clear=\"none\" style=\"word-wrap: break-word !important;\"></span></b><span style=\"word-wrap: break-word !important;\">Branch Manager/Loan Officer</span></p></div><br><br><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><b style=\"word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">Paula G Severt</i></b>&nbsp;<img title=\"Emoji\" alt=\"Emoji\" class=\"yiv2427752816ydpc53d7409yahoo-emoji-wrapper\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding: 0px 2px; vertical-align: middle; word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><span style=\"word-wrap: break-word !important;\">Owner, Broker/ Realtor®</span><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><a rel=\"nofollow noopener\" target=\"_blank\" href=\"http://lantern-realty.com/\" style=\"-webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">lantern-realty.com</a><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Lantern Realty and Development LLC</div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">\"Let Us Guide You Home\"</i></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Cell&nbsp;<a href=\"tel:704-232-3433\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/1\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-232-3433</a><br style=\"word-wrap: break-word !important;\">Office&nbsp;<a href=\"tel:704-298-0087\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/2\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\">704-298-0087</a><br style=\"word-wrap: break-word !important;\">eMail Signature<br style=\"word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\">NOTE: BUYERS and SELLERS, NC real estate agents are required&nbsp;by law&nbsp;to provide&nbsp;the&nbsp;\"Working with Real Estate Agents Brochure\"&nbsp;Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure.&nbsp;<br style=\"word-wrap: break-word !important;\"><a href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"4\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; word-wrap: break-word !important;\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a>&nbsp;<br style=\"word-wrap: break-word !important;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br><p class=\"yahoo-quoted-begin\" style=\"font-size: 15px; color: #715FFA; padding-top: 15px; margin-top: 0\">On Monday, January 17, 2022, 11:51 AM, Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com&gt\" >ch2realty@gmail.com&gt</a>; wrote:</p><blockquote class=\"iosymail\"><div id=\"yiv2455379063\"><div dir=\"ltr\">Good Day All!&nbsp; Just a few notes as we start out this icy and chilly week.<div><br></div><div>- First and foremost we want to announce we have opened our first office in the Raleigh market!&nbsp; Matt Bergevin of the Carolina Elite Realty Group is heading up that office. Tina Phillips has also joined us in this office.&nbsp; The office is in Wake Forest, a fast growing suburb of Raleigh. I have attached a roster with the updated office contact info on it.&nbsp; Make sure if you have Raleigh&nbsp;area referrals to send them Matt and Tina\'s way.&nbsp;&nbsp;</div><div>- I\'ve attached an Education calendar.&nbsp; We have a ton of activity this week.&nbsp; Any classes that are on Zoom and led by Lantern agents will be recorded and added to our YouTube channel. Make sure you are taking full advantage of these offerings.&nbsp; If you have something you would like to see offered as a class or have a desire to teach, please let Melissa Jackling or myself know.&nbsp;</div><div>- Tuesday\'s \"Think Tank\" session for this week is going to be canceled due to weather concerns.&nbsp; Spoke to Morgan at CCAR this morning and she said they were likely going to have a delayed opening if at all tomorrow. We still plan on having one next week at the CCAR office at 930.</div><div>- You should have received an invite from me regarding the 2021 Awards banquet&nbsp;that is being held on Thursday 2/24.&nbsp; We need your responses as spaces are limited.&nbsp; If we get more than we can hold we will move the event.&nbsp; We just need to know the headcount.&nbsp;</div><div>- Lastly, you should have received your Q1 2022 dues invoice last week.&nbsp; Your dues will be drafted on 1/30/22 if you are signed up for a bank draft.&nbsp; Otherwise, we need your payments by 2/1/22 via venmo, cash or check.&nbsp;</div><div><br></div><div>Thanks again for all you do!!!!</div><div><br clear=\"all\"><div><br></div>','News &amp; Notes','','publish','closed','open','','news-notes-39','','','2022-01-18 22:45:58','2022-01-18 22:45:58','',0,'https://lantern-realty.com/?p=2224',0,'post','',0),(2225,8,'2022-01-18 22:45:57','2022-01-18 22:45:57','','image002.jpg','','inherit','closed','closed','','image002','','','2022-01-18 22:45:58','2022-01-18 22:45:58','',2224,'https://lantern-realty.com/wp-content/uploads/2022/01/image002.jpg',0,'attachment','image/jpeg',0),(2226,0,'2022-01-19 15:52:47','2022-01-19 15:52:47','','Headshot','','inherit','','closed','','headshot-6','','','2022-01-19 15:52:47','2022-01-19 15:52:47','',0,'https://lantern-realty.com/headshot-6/',0,'attachment','image/jpeg',0),(2227,6,'2022-01-20 17:15:59','2022-01-20 17:15:59','<div dir=\"ltr\">Good Day.  Below is a link to Terry Whitesell&#39;s Renovation Loan class.<div><br></div><div>Thanks to Terry Whitesell with Fairway Mortgage for his time and help with understanding this valuable asset.  </div><div><br></div><div><a href=\"https://youtu.be/U8VYXqDas6g\">https://youtu.be/U8VYXqDas6g</a><br clear=\"all\"><div><br></div>','Renovation Loan video class','','publish','closed','open','','renovation-loan-video-class','','','2022-01-20 17:15:59','2022-01-20 17:15:59','',0,'https://lantern-realty.com/?p=2227',0,'post','',0),(2228,6,'2022-01-24 19:46:48','2022-01-24 19:46:48','<div dir=\"ltr\">Good Afternoon, below are the latest news &amp; notes for this week.  Let me know if you have questions.<div><br></div><div>- I have attached the most up to date education calendar.  Some great classes are coming this week and next.  If there are any you would like to see please let me or Melissa Jackling know.  </div><div>- Please make sure you RSVP&#39;d to the 2021 Awards Banquet email.  The banquet will be on February 24th at 1130am at StoneGate Farms in China Grove.  </div><div>- Our Tuesday Think Tank WILL take place this week at the CCAR board room in Concord.  The address is 250 Branchview Dr NE, Concord NC 28025.  We will be meeting from 930a-1100a.</div><div>- I have attached our current roster.  As we expand across the state, make sure you check out the roster to see if there is a referral partner in a different city you may be able to work with.  <br clear=\"all\"><div><br></div>- <br><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\">Chris Puckett REALTOR ®, GRI, SRES, SFR, CDEI</div><div>NC/SC Licensed</div><div dir=\"ltr\">Owner/Broker<br></div><div dir=\"ltr\"><div>Lantern Realty &amp; Development</div><div><span style=\"font-size:12.8px\">c. 704-298-5872</span><br></div><div><a href=\"mailto:ch2realty@gmail.com\" target=\"_blank\" rel=\"noopener\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a></div><div><a href=\"https://Lantern-Realty.com\" target=\"_blank\" rel=\"noopener\">https://Lantern-Realty.com</a></div><div><br></div><br><br></div><div dir=\"ltr\"><br></div></div></div></div></div></div></div></div></div></div></div></div></div></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/01/2022-Educational-Calendar-1-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2022-Educational-Calendar-1.xlsx</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2022/01/LRD-Roster_012422.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_012422.xlsx</a><br /></div>','News &amp; Notes','','publish','closed','open','','news-notes-40','','','2022-01-24 19:46:48','2022-01-24 19:46:48','',0,'https://lantern-realty.com/?p=2228',0,'post','',0),(2229,6,'2022-01-24 19:46:48','2022-01-24 19:46:48','','2022-Educational-Calendar-1.xlsx','','inherit','closed','closed','','2022-educational-calendar-1-1','','','2022-01-24 19:46:48','2022-01-24 19:46:48','',2228,'https://lantern-realty.com/wp-content/uploads/2022/01/2022-Educational-Calendar-1-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2230,6,'2022-01-24 19:46:48','2022-01-24 19:46:48','','LRD-Roster_012422.xlsx','','inherit','closed','closed','','lrd-roster_012422','','','2022-01-24 19:46:48','2022-01-24 19:46:48','',2228,'https://lantern-realty.com/wp-content/uploads/2022/01/LRD-Roster_012422.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2231,0,'2022-01-25 14:15:51','2022-01-25 14:15:51','','Jamie-MedRes2','','inherit','','closed','','jamie-medres2','','','2022-01-25 14:15:51','2022-01-25 14:15:51','',0,'https://lantern-realty.com/jamie-medres2/',0,'attachment','image/jpeg',0),(2232,0,'2022-01-26 21:16:32','2022-01-26 21:16:32','','A408F23A-C8AD-45C0-AE43-AEFBFD128D3D','','inherit','','closed','','a408f23a-c8ad-45c0-ae43-aefbfd128d3d','','','2022-01-26 21:16:32','2022-01-26 21:16:32','',0,'https://lantern-realty.com/a408f23a-c8ad-45c0-ae43-aefbfd128d3d/',0,'attachment','image/jpeg',0),(2233,0,'2022-01-26 22:17:31','2022-01-26 22:17:31','','headshot2','','inherit','','closed','','headshot2','','','2022-01-26 22:17:31','2022-01-26 22:17:31','',0,'https://lantern-realty.com/headshot2/',0,'attachment','image/jpeg',0),(2234,0,'2022-01-27 03:01:15','2022-01-27 03:01:15','','IvanHeadShot copy','','inherit','','closed','','ivanheadshot-copy','','','2022-01-27 03:01:15','2022-01-27 03:01:15','',0,'https://lantern-realty.com/ivanheadshot-copy/',0,'attachment','image/jpeg',0),(2235,0,'2022-01-27 12:59:33','2022-01-27 12:59:33','','headshot2','','inherit','','closed','','headshot2-2','','','2022-01-27 12:59:33','2022-01-27 12:59:33','',0,'https://lantern-realty.com/headshot2-2/',0,'attachment','image/jpeg',0),(2236,6,'2022-01-31 14:56:00','2022-01-31 14:56:00','<div dir=\"ltr\">Good Morning, here are a few notes as we begin the week....<div><br></div><div>- The team meeting this Wednesday will be hosted by Guaranteed Rate.  They will be presenting their FREE CRM system that you can utilize.  </div><div>- Our Tuesday \"Think Tank\" session will be held one more time at the CCAR office in Concord, just as last week.  Hopefully this will be the last week at CCAR.</div><div>- Hopefully everyone saw Matt Chilton&#39;s invite to a Realtor social this Thursday at Old Armor Brewery in downtown Kannapolis.  It will be held from 530-730 all Realtors are welcome.</div><div>- Don&#39;t forget the 2021 Awards Banquet on 2/24 from 1130-1 at StoneGate Farms in China Grove.  You MUST RSVP.  Paula&#39;s turkey will be acting as security and will not allow anyone that has not RSVP&#39;d.  </div><div><div><br></div>','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-13','','','2022-01-31 14:56:00','2022-01-31 14:56:00','',0,'https://lantern-realty.com/?p=2236',0,'post','',0),(2237,9,'2022-01-31 17:48:42','2022-01-31 17:48:42','<div dir=\"ltr\">Hey All,  I want to add two things to Chris&#39;s News and Notes, we have an in office Lunch n Learn with Nick at Knipp Law this Thursday at Kannapolis - RSVP, please - If you have already done so, no need to do it again.  It will NOT be on Zoom.<div><br></div><div>DR Horton is hosting a free CE class in February, separate from the one in March for us.  The flyer is attached, it will be virtual only.  He would need an RSVP from agents who want to attend by 2/13.</div><div><br></div><div><br></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Jan 31, 2022 at 9:50 AM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Good Morning, here are a few notes as we begin the week....<div><br></div><div>- The team meeting this Wednesday will be hosted by Guaranteed Rate.  They will be presenting their FREE CRM system that you can utilize.  </div><div>- Our Tuesday \"Think Tank\" session will be held one more time at the CCAR office in Concord, just as last week.  Hopefully this will be the last week at CCAR.</div><div>- Hopefully everyone saw Matt Chilton&#39;s invite to a Realtor social this Thursday at Old Armor Brewery in downtown Kannapolis.  It will be held from 530-730 all Realtors are welcome.</div><div>- Don&#39;t forget the 2021 Awards Banquet on 2/24 from 1130-1 at StoneGate Farms in China Grove.  You MUST RSVP.  Paula&#39;s turkey will be acting as security and will not allow anyone that has not RSVP&#39;d.  </div><div><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/01/The-Oaks-at-Skybrook-CE-GenUp-Feb.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> The-Oaks-at-Skybrook-CE-GenUp-Feb.pdf</a><br /></div>','Lantern News &amp; Notes','','publish','closed','open','','lantern-news-notes-14','','','2022-01-31 17:48:42','2022-01-31 17:48:42','',0,'https://lantern-realty.com/?p=2237',0,'post','',0),(2238,9,'2022-01-31 17:48:42','2022-01-31 17:48:42','','The-Oaks-at-Skybrook-CE-GenUp-Feb.pdf','','inherit','closed','closed','','the-oaks-at-skybrook-ce-genup-feb','','','2022-01-31 17:48:42','2022-01-31 17:48:42','',2237,'https://lantern-realty.com/wp-content/uploads/2022/01/The-Oaks-at-Skybrook-CE-GenUp-Feb.pdf',0,'attachment','application/pdf',0),(2239,0,'2022-01-31 20:37:36','2022-01-31 20:37:36','','Stephanie 066 edit (1)','','inherit','','closed','','stephanie-066-edit-1','','','2022-01-31 20:37:36','2022-01-31 20:37:36','',0,'https://lantern-realty.com/stephanie-066-edit-1/',0,'attachment','image/jpeg',0),(2240,9,'2022-02-02 01:26:00','2022-02-02 01:26:00','<div dir=\"ltr\"><div>Hello Lantern Agents,</div><div><br></div>Join us for our monthly Lantern Realty team meeting.  This meeting will feature Guaranteed Rate and information about their free agent CRM.  Many of you have been asking about CRM&#39;s, so this would be a great meeting to be a part of and see what they have to offer.  Please see Zoom link below<div><b><br>Topic: Team Meeting / Guaranteed Rate CRM Class<br>Time: Feb 2, 2022 11:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting</b><br><a href=\"https://us02web.zoom.us/j/85216968170?pwd=SFhKandXQTdLaEEwUkVNVWowMnR1QT09\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/j/85216968170?pwd=SFhKandXQTdLaEEwUkVNVWowMnR1QT09</a><br><br>Meeting ID: 852 1696 8170<br>Passcode: 364969<br>One tap mobile<br>+13126266799,,85216968170#,,,,*364969# US (Chicago)<br>+19292056099,,85216968170#,,,,*364969# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 852 1696 8170<br>Passcode: 364969<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kdEh6vQrL6\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/u/kdEh6vQrL6</a><br><br><div><br></div>','Lantern Realty Team Meeting / Guaranteed Rate CRM Class Wednesday Feb 2nd at 11:00 AM','','publish','closed','open','','lantern-realty-team-meeting-guaranteed-rate-crm-class-wednesday-feb-2nd-at-1100-am','','','2022-02-02 01:26:00','2022-02-02 01:26:00','',0,'https://lantern-realty.com/?p=2240',0,'post','',0),(2241,0,'2022-02-03 22:04:12','2022-02-03 22:04:12','','Ben Surratt Headshot','','inherit','','closed','','ben-surratt-headshot','','','2022-02-03 22:04:12','2022-02-03 22:04:12','',0,'https://lantern-realty.com/ben-surratt-headshot/',0,'attachment','image/jpeg',0),(2242,0,'2022-02-03 22:22:19','2022-02-03 22:22:19','','AA3DABD4-0591-489B-B53A-39A57AF49E19','','inherit','','closed','','aa3dabd4-0591-489b-b53a-39a57af49e19','','','2022-02-03 22:22:19','2022-02-03 22:22:19','',0,'https://lantern-realty.com/aa3dabd4-0591-489b-b53a-39a57af49e19/',0,'attachment','image/jpeg',0),(2243,0,'2022-02-03 22:24:54','2022-02-03 22:24:54','','A1CA8139-F891-4B45-A0AA-B9B8F4B85A87','','inherit','','closed','','a1ca8139-f891-4b45-a0aa-b9b8f4b85a87','','','2022-02-03 22:24:54','2022-02-03 22:24:54','',0,'https://lantern-realty.com/a1ca8139-f891-4b45-a0aa-b9b8f4b85a87/',0,'attachment','image/jpeg',0),(2244,9,'2022-02-07 17:36:30','2022-02-07 17:36:30','<div dir=\"ltr\">I&#39;ve had so many agents asking about 1031 Exchanges, what they are and how they work.  As promised, here is the Zoom link for the 1031 Exchange Class with Laura Huckaby - A big thank you to our Asheville BIC, Katherine Lawing, for getting us connected to Laura Huckaby.<br clear=\"all\"><div><br></div><div><b>Topic: 1031 Exchange Class with Laura Huckaby<br>Time: Feb 8, 2022 09:00 AM Eastern Time (US and Canada)<br><br>Join Zoom Meeting</b><br><a href=\"https://us02web.zoom.us/j/89493152219?pwd=SGUyVGFlRTRNdEFuenJGMUZ3bDg4Zz09\">https://us02web.zoom.us/j/89493152219?pwd=SGUyVGFlRTRNdEFuenJGMUZ3bDg4Zz09</a><br><br>Meeting ID: 894 9315 2219<br>Passcode: 192865<br>One tap mobile<br>+13126266799,,89493152219#,,,,*192865# US (Chicago)<br>+19292056099,,89493152219#,,,,*192865# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 894 9315 2219<br>Passcode: 192865<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kd09FDRx09\">https://us02web.zoom.us/u/kd09FDRx09</a><br><br></div><div><br></div><div><br></div>','1031 Exchange Zoom Link - Tuesday Feb 8 at 9:00 AM','','publish','closed','open','','1031-exchange-zoom-link-tuesday-feb-8-at-900-am','','','2022-02-07 17:36:30','2022-02-07 17:36:30','',0,'https://lantern-realty.com/?p=2244',0,'post','',0),(2245,0,'2022-02-08 20:14:05','2022-02-08 20:14:05','','Jenna-184','','inherit','','closed','','jenna-184','','','2022-02-08 20:14:05','2022-02-08 20:14:05','',0,'https://lantern-realty.com/jenna-184/',0,'attachment','image/jpeg',0),(2246,6,'2022-02-09 15:06:00','2022-02-09 15:06:00','<div dir=\"ltr\">Good Morning All, below is a link for our 1031 Exchange class that was held yesterday.  <div><br></div><div><a href=\"https://youtu.be/XfWkEA1cZMs\">https://youtu.be/XfWkEA1cZMs</a><br clear=\"all\"><div><br></div>','1031 Exchange Class','','publish','closed','open','','1031-exchange-class','','','2022-02-09 15:06:00','2022-02-09 15:06:00','',0,'https://lantern-realty.com/?p=2246',0,'post','',0),(2247,0,'2022-02-09 18:46:08','0000-00-00 00:00:00','tmpPost','tmptitle','','draft','','open','','','','','2022-02-09 18:46:08','0000-00-00 00:00:00','',0,'https://lantern-realty.com/?p=2247',0,'post','',0),(2248,0,'2022-02-10 12:55:12','2022-02-10 12:55:12','','FF303B43-F823-4FBC-8FFA-8972045B47F3','','inherit','','closed','','ff303b43-f823-4fbc-8ffa-8972045b47f3','','','2022-02-10 12:55:12','2022-02-10 12:55:12','',0,'https://lantern-realty.com/ff303b43-f823-4fbc-8ffa-8972045b47f3/',0,'attachment','image/jpeg',0),(2249,6,'2022-02-14 18:28:48','2022-02-14 18:28:48','<div dir=\"ltr\">Good Afternoon, here are a few notes for you as we head into a new week. <div><br></div><div>- Please make sure if you are planning on going to the 2021 Awards banquet on 2/24 from 1130-1, make sure you have RSVP&#39;d. </div><div><br></div><div>- Dont forget our team meeting on March 2nd Wednesday at 11am. Details to come.</div><div><br></div><div>- We are having a \"How to Build  Team/Should I Join a Team?\" meeting on Tuesday March 1st at 11am.  This meeting will be for those interested in possibly starting a team, how that looks and what your goals are with the team.  It will also be for those that may want to join a team.  You can listen or talk to those that are interested in starting a team, or have a team and see if they have what you are looking for.  </div><div><br></div><div>- See attached Education Calendar. Notice we have 2 opportunities for FREE Genup coming up.  One of the fliers is attached for the March Genup.  Please follow the instructions on the flier.</div><img src=\"https://lantern-realty.com/wp-content/uploads/2022/02/image001.jpg\" alt=\"image001.jpg\" width=\"347\" height=\"452\"><br><div><br></div><div>If you have any further questions, please let me know. </div><div><br></div><div><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/02/2022-Educational-Calendar-1.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> 2022-Educational-Calendar-1.xlsx</a><br /></div>','Lantern - Announcements','','publish','closed','open','','lantern-announcements','','','2022-02-14 18:28:48','2022-02-14 18:28:48','',0,'https://lantern-realty.com/?p=2249',0,'post','',0),(2250,6,'2022-02-14 18:28:33','2022-02-14 18:28:33','','image001.jpg','','inherit','closed','closed','','image001','','','2022-02-14 18:28:48','2022-02-14 18:28:48','',2249,'https://lantern-realty.com/wp-content/uploads/2022/02/image001.jpg',0,'attachment','image/jpeg',0),(2251,6,'2022-02-14 18:28:48','2022-02-14 18:28:48','','2022-Educational-Calendar-1.xlsx','','inherit','closed','closed','','2022-educational-calendar-1-2','','','2022-02-14 18:28:48','2022-02-14 18:28:48','',2249,'https://lantern-realty.com/wp-content/uploads/2022/02/2022-Educational-Calendar-1.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2252,9,'2022-02-15 13:26:00','2022-02-15 13:26:00','<div dir=\"ltr\">Here is the Zoom link for Wednesday&#39;s RIBBON TRAINING CLASS that we&#39;ve been talking about - join us and learn what Ribbon is about and how it can benefit you and your clients<div><br></div><div><span style=\"color:rgb(0,0,0);font-family:\"Open Sans\",sans-serif;font-size:13px;white-space:pre-line\">Mark Arnold with Ribbon is inviting you to a scheduled Zoom meeting.\r\n<b>Topic: Ribbon Training - Lantern Realty Kannapolis Time: Feb 16, 2022 10:00 AM Eastern Time (US and Canada)</b>\r\nJoin Zoom Meeting </span><a href=\"https://ribbonhome.zoom.us/j/82129455547?pwd=dGw3dE52ZDNvNU5KU1piL3pYTEVVZz09\" style=\"text-decoration-line:none;font-family:\"Open Sans\",sans-serif;font-size:13px;white-space:pre-line\">https://ribbonhome.zoom.us/j/82129455547?pwd=dGw3dE52ZDNvNU5KU1piL3pYTEVVZz09</a><span style=\"color:rgb(0,0,0);font-family:\"Open Sans\",sans-serif;font-size:13px;white-space:pre-line\">\r\nMeeting ID: 821 2945 5547 Passcode: 907805 One tap mobile </span><a href=\"tel:+17207072699,,82129455547#,,,,*907805#\" style=\"text-decoration-line:none;font-family:\"Open Sans\",sans-serif;font-size:13px;white-space:pre-line\">+17207072699,,82129455547#,,,,*907805#</a><span style=\"color:rgb(0,0,0);font-family:\"Open Sans\",sans-serif;font-size:13px;white-space:pre-line\"> US (Denver) </span><a href=\"tel:+12532158782,,82129455547#,,,,*907805#\" style=\"text-decoration-line:none;font-family:\"Open Sans\",sans-serif;font-size:13px;white-space:pre-line\">+12532158782,,82129455547#,,,,*907805#</a><span style=\"color:rgb(0,0,0);font-family:\"Open Sans\",sans-serif;font-size:13px;white-space:pre-line\"> US (Tacoma)\r\nDial by your location +1 720 707 2699 US (Denver) +1 253 215 8782 US (Tacoma) +1 301 715 8592 US (Washington DC) +1 312 626 6799 US (Chicago) +1 346 248 7799 US (Houston) +1 646 558 8656 US (New York) Meeting ID: 821 2945 5547 Passcode: 907805 Find your local number: </span><a href=\"https://ribbonhome.zoom.us/u/kcTX01wLt\" style=\"text-decoration-line:none;font-family:\"Open Sans\",sans-serif;font-size:13px;white-space:pre-line\">https://ribbonhome.zoom.us/u/kcTX01wLt</a><span style=\"color:rgb(0,0,0);font-family:\"Open Sans\",sans-serif;font-size:13px;white-space:pre-line\"> </span><br class=\"gmail-Apple-interchange-newline\"><div><br></div>','Zoom Link for Ribbon Training Class - Feb 16, 2022 10:00 AM','','publish','closed','open','','zoom-link-for-ribbon-training-class-feb-16-2022-1000-am','','','2022-02-15 13:26:00','2022-02-15 13:26:00','',0,'https://lantern-realty.com/?p=2252',0,'post','',0),(2253,0,'2022-02-15 16:17:31','2022-02-15 16:17:31','','Colleen picture (1) (1)','','inherit','','closed','','colleen-picture-1-1','','','2022-02-15 16:17:31','2022-02-15 16:17:31','',0,'https://lantern-realty.com/colleen-picture-1-1/',0,'attachment','image/jpeg',0),(2254,6,'2022-02-15 18:26:14','2022-02-15 18:26:14','<div dir=\"ltr\">Hello Everyone, if you have reached out to me about your 1099, whether you have not reached your original one or what you received was incorrect, i have not received an update from the accountant.  <div><br></div><div>I&#39;m waiting on a call back from the accountant today to get a timeframe on when they will be ready.  I&#39;ll keep you all posted as soon as I have an update.</div><div><br></div><div>Thanks for your patience.<br clear=\"all\"><div><br></div>','1099 Updates','','publish','closed','open','','1099-updates','','','2022-02-15 18:26:14','2022-02-15 18:26:14','',0,'https://lantern-realty.com/?p=2254',0,'post','',0),(2255,0,'2022-02-17 00:23:56','2022-02-17 00:23:56','','3AACE1A0-CB62-4A79-BCAA-3282C514350B','','inherit','','closed','','3aace1a0-cb62-4a79-bcaa-3282c514350b','','','2022-02-17 00:23:56','2022-02-17 00:23:56','',0,'https://lantern-realty.com/3aace1a0-cb62-4a79-bcaa-3282c514350b/',0,'attachment','image/jpeg',0),(2329,6,'2022-02-28 15:07:05','2022-02-28 15:07:05','<div class=\"postie-post\"><div dir=\"ltr\">Good Morning All,  below are the latest changes to the Lantern Independent Contractor Agreement. <b><i><font size=\"4\">These changes take effect immediately</font></i></b>.  This is your notice of receipt. <div><br></div><div><div dir=\"auto\" style=\"color:rgb(0,0,0)\">1. As a PB, you must charge a minimum of 2.5% commission on the listing side. If you choose to offer any credits to your client, the 80/20 split will be calculated off the original sales price/commission BEFORE the credit to client is deducted. ***The reason for this change is due to the liability the firm takes on for a newly licensed agent.***</div><div dir=\"auto\" style=\"color:rgb(0,0,0)\"><br></div><div dir=\"auto\" style=\"color:rgb(0,0,0)\">2. All commercial transactions will be paid on a 90/10 split. ***This change is due to the liability and more costly expenses incurred by the firm for engaging in commercial transactions.***</div><div dir=\"auto\" style=\"color:rgb(0,0,0)\"><br></div><div dir=\"auto\" style=\"color:rgb(0,0,0)\">3. <span style=\"font-family:\"Times New Roman\",\"Times New Roman_EmbeddedFont\",\"Times New Roman_MSFontService\",serif;font-size:15.3333px;white-space:pre-wrap\">Example: If an action is brought against LRD and/or the agent, the agent will be responsible for 100% of the defense and/ or settlement costs against themselves and the firm that are not covered by LRD’s E&amp;O policy.</span></div><div><br></div></div>','Updated Independent Contractor Agreement terms','','publish','closed','open','','updated-independent-contractor-agreement-terms','','','2022-02-28 15:07:05','2022-02-28 15:07:05','',0,'https://lantern-realty.com/?p=2329',0,'post','',0),(2263,1,'2022-02-18 01:31:13','2022-02-18 01:31:13','','Priscilla Johnson','','inherit','closed','closed','','819-revision-v1','','','2022-02-18 01:31:13','2022-02-18 01:31:13','',819,'https://lantern-realty.com/?p=2263',0,'revision','',0),(2261,1,'2022-02-18 01:29:36','2022-02-18 01:29:36','','Jessica_Cloward','','inherit','','closed','','jessica_cloward-2','','','2022-02-18 01:29:36','2022-02-18 01:29:36','',470,'https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg',0,'attachment','image/jpeg',0),(2262,1,'2022-02-18 01:29:54','2022-02-18 01:29:54','','Jessica Cloward','','inherit','closed','closed','','470-revision-v1','','','2022-02-18 01:29:54','2022-02-18 01:29:54','',470,'https://lantern-realty.com/?p=2262',0,'revision','',0),(2264,1,'2022-02-18 01:33:16','2022-02-18 01:33:16','','Jeff Franklin','','inherit','closed','closed','','811-revision-v1','','','2022-02-18 01:33:16','2022-02-18 01:33:16','',811,'https://lantern-realty.com/?p=2264',0,'revision','',0),(2265,1,'2022-02-18 01:36:17','2022-02-18 01:36:17','','Julie_Nutter','','inherit','','closed','','julie_nutter-2','','','2022-02-18 01:36:17','2022-02-18 01:36:17','',484,'https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-1.jpg',0,'attachment','image/jpeg',0),(2258,1,'2022-02-18 01:26:06','2022-02-18 01:26:06','','Holden_Sides','','inherit','','closed','','holden_sides','','','2022-02-18 01:26:06','2022-02-18 01:26:06','',848,'https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg',0,'attachment','image/jpeg',0),(2259,1,'2022-02-18 01:26:22','2022-02-18 01:26:22','<!-- wp:paragraph -->\n<p>Hi! Thank you for taking the time to see a little about me and what I am all about! I was born and raised in China Grove and has many family connections in Cabarrus and Rowan. A graduate of Catawba College, I have worked in customer service, the financial industry, and now a licensed Realtor® for over a year. I have gained a lot of experience in my first year helping buyers, sellers, and investors throughout the region. I have really enjoyed my time working for and with my clients, getting them the best out of their real estate journey! I would love to add you to my list of clients! Thanks</p>\n<!-- /wp:paragraph -->','Holden Sides','','inherit','closed','closed','','848-revision-v1','','','2022-02-18 01:26:22','2022-02-18 01:26:22','',848,'https://lantern-realty.com/?p=2259',0,'revision','',0),(2266,1,'2022-02-18 01:36:27','2022-02-18 01:36:27','','Julie Nutter','','inherit','closed','closed','','484-revision-v1','','','2022-02-18 01:36:27','2022-02-18 01:36:27','',484,'https://lantern-realty.com/?p=2266',0,'revision','',0),(2267,1,'2022-02-18 01:39:15','2022-02-18 01:39:15','','Julie_Nutter','','inherit','','closed','','julie_nutter-3','','','2022-02-18 01:39:15','2022-02-18 01:39:15','',484,'https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2.jpg',0,'attachment','image/jpeg',0),(2269,1,'2022-02-18 01:42:57','2022-02-18 01:42:57','','Katherine_Lawing','','inherit','','closed','','katherine_lawing-2','','','2022-02-18 01:42:57','2022-02-18 01:42:57','',1642,'https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1.jpg',0,'attachment','image/jpeg',0),(2270,1,'2022-02-18 01:45:25','2022-02-18 01:45:25','','Chuck Thompson','','inherit','closed','closed','','442-revision-v1','','','2022-02-18 01:45:25','2022-02-18 01:45:25','',442,'https://lantern-realty.com/?p=2270',0,'revision','',0),(2273,1,'2022-02-18 01:50:28','2022-02-18 01:50:28','','Ivan_Henrickson','','inherit','','closed','','ivan_henrickson-2','','','2022-02-18 01:50:28','2022-02-18 01:50:28','',1551,'https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1.jpg',0,'attachment','image/jpeg',0),(2274,1,'2022-02-18 02:05:15','2022-02-18 02:05:15','','Brittney Steele','','publish','closed','closed','','brittney-steele','','','2022-02-18 02:10:35','2022-02-18 02:10:35','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2274',100,'houzez_agent','',0),(2275,1,'2022-02-18 02:04:16','2022-02-18 02:04:16','','Brittney_Steele','','inherit','','closed','','brittney_steele','','','2022-02-18 02:04:16','2022-02-18 02:04:16','',2274,'https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele.jpg',0,'attachment','image/jpeg',0),(2276,1,'2022-02-18 02:05:15','2022-02-18 02:05:15','','Brittney Steele','','inherit','closed','closed','','2274-revision-v1','','','2022-02-18 02:05:15','2022-02-18 02:05:15','',2274,'https://lantern-realty.com/?p=2276',0,'revision','',0),(2277,1,'2022-02-18 02:09:11','2022-02-18 02:09:11','<!-- wp:paragraph -->\n<p>After working with a few different real estate agents and purchasing several properties - both primary homes and investment properties - Aaron decided to obtain a real estate license himself. He and his middle school sweetheart, Ashley, have four children and live in the University Area of Charlotte. Aaron and his family are actively involved in homeschooling their children and in their church. Aaron is also active in F3, a men’s workout group, with which he has begun running ultramarathons. He recently completed his first 100 mile run. Aaron is an alumnus of UNC Charlotte, where he earned both his bachelors and masters degrees. He began working for UNC Charlotte in 2008, where he served in several IT roles over the last several years. As a Realtor, he loves to combine his love for technology and real estate to help others whenever and wherever he can.</p>\n<!-- /wp:paragraph -->','Aaron Forsyth','','publish','closed','closed','','aaron-forsyth','','','2022-02-18 02:22:11','2022-02-18 02:22:11','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2277',60,'houzez_agent','',0),(2278,1,'2022-02-18 02:08:53','2022-02-18 02:08:53','','Aaron_Forsyth','','inherit','','closed','','aaron_forsyth','','','2022-02-18 02:08:53','2022-02-18 02:08:53','',2277,'https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth.jpeg',0,'attachment','image/jpeg',0),(2279,1,'2022-02-18 02:09:11','2022-02-18 02:09:11','<!-- wp:paragraph -->\n<p>After working with a few different real estate agents and purchasing several properties - both primary homes and investment properties - Aaron decided to obtain a real estate license himself. He and his middle school sweetheart, Ashley, have four children and live in the University Area of Charlotte. Aaron and his family are actively involved in homeschooling their children and in their church. Aaron is also active in F3, a men’s workout group, with which he has begun running ultramarathons. He recently completed his first 100 mile run. Aaron is an alumnus of UNC Charlotte, where he earned both his bachelors and masters degrees. He began working for UNC Charlotte in 2008, where he served in several IT roles over the last several years. As a Realtor, he loves to combine his love for technology and real estate to help others whenever and wherever he can.</p>\n<!-- /wp:paragraph -->','Aaron Forsyth','','inherit','closed','closed','','2277-revision-v1','','','2022-02-18 02:09:11','2022-02-18 02:09:11','',2277,'https://lantern-realty.com/?p=2279',0,'revision','',0),(2280,1,'2022-02-18 02:14:00','2022-02-18 02:14:00','<!-- wp:paragraph -->\n<p>I am a people person by nature. I have a desire and passion in helping others. I love everything about Real Estate. I have a background in construction, working hand and hand with my husband, who is a General Contractor, and over 20 years in customer\'s service. My husband and I have 6 beautiful kids and we enjoy seeing others build a family in their dream home.</p>\n<!-- /wp:paragraph -->','Charity K Meachum','','publish','closed','closed','','charity-k-meachum','','','2022-02-18 02:14:06','2022-02-18 02:14:06','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2280',80,'houzez_agent','',0),(2281,1,'2022-02-18 02:13:39','2022-02-18 02:13:39','','Charity_K_Meachum','','inherit','','closed','','charity_k_meachum','','','2022-02-18 02:13:39','2022-02-18 02:13:39','',2280,'https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum.jpg',0,'attachment','image/jpeg',0),(2282,1,'2022-02-18 02:14:00','2022-02-18 02:14:00','<!-- wp:paragraph -->\n<p>I am a people person by nature. I have a desire and passion in helping others. I love everything about Real Estate. I have a background in construction, working hand and hand with my husband, who is a General Contractor, and over 20 years in customer\'s service. My husband and I have 6 beautiful kids and we enjoy seeing others build a family in their dream home.</p>\n<!-- /wp:paragraph -->','Charity K Meachum','','inherit','closed','closed','','2280-revision-v1','','','2022-02-18 02:14:00','2022-02-18 02:14:00','',2280,'https://lantern-realty.com/?p=2282',0,'revision','',0),(2283,1,'2022-02-18 02:16:09','2022-02-18 02:16:09','','Amy Bundy','','publish','closed','closed','','amy-bundy','','','2022-02-18 03:06:20','2022-02-18 03:06:20','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2283',10,'houzez_agent','',0),(2284,1,'2022-02-18 02:15:53','2022-02-18 02:15:53','','Amy_Bundy','','inherit','','closed','','amy_bundy','','','2022-02-18 02:15:53','2022-02-18 02:15:53','',2283,'https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy.jpg',0,'attachment','image/jpeg',0),(2285,1,'2022-02-18 02:16:09','2022-02-18 02:16:09','','Amy Bundy','','inherit','closed','closed','','2283-revision-v1','','','2022-02-18 02:16:09','2022-02-18 02:16:09','',2283,'https://lantern-realty.com/?p=2285',0,'revision','',0),(2286,1,'2022-02-18 02:18:12','2022-02-18 02:18:12','<!-- wp:paragraph -->\n<p>Hey, I\'m Chad Rothlin and my passion is helping people! I taught special education for 9 years before venturing into the world of real estate and accounting. Being able to simplify math and financial concepts can make an investing or home buying process much easier. I currently live in Kannapolis and have lived in the University City area and Hickory prior to moving here in 2018 with my wife, so I\'m very familiar with the surrounding area. My family is my greatest source of motivation. I\'m married to a wonderful woman (Jessica) and have two amazing children (Dawson &amp;amp; Lyla). They are the reason I decided to pursue real estate, investing, and financial freedom. If you have similar goals, let\'s talk! I also know the importance of being a team player as I was a former member of the Charlotte 49ers baseball team. I look forward to teaming up with you in your real estate adventures!</p>\n<!-- /wp:paragraph -->','Chad Rothlin','','publish','closed','closed','','chad-rothlin','','','2022-02-18 02:18:16','2022-02-18 02:18:16','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2286',95,'houzez_agent','',0),(2287,1,'2022-02-18 02:17:59','2022-02-18 02:17:59','','Chad_Rothlin','','inherit','','closed','','chad_rothlin','','','2022-02-18 02:17:59','2022-02-18 02:17:59','',2286,'https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin.png',0,'attachment','image/png',0),(2288,1,'2022-02-18 02:18:12','2022-02-18 02:18:12','<!-- wp:paragraph -->\n<p>Hey, I\'m Chad Rothlin and my passion is helping people! I taught special education for 9 years before venturing into the world of real estate and accounting. Being able to simplify math and financial concepts can make an investing or home buying process much easier. I currently live in Kannapolis and have lived in the University City area and Hickory prior to moving here in 2018 with my wife, so I\'m very familiar with the surrounding area. My family is my greatest source of motivation. I\'m married to a wonderful woman (Jessica) and have two amazing children (Dawson &amp;amp; Lyla). They are the reason I decided to pursue real estate, investing, and financial freedom. If you have similar goals, let\'s talk! I also know the importance of being a team player as I was a former member of the Charlotte 49ers baseball team. I look forward to teaming up with you in your real estate adventures!</p>\n<!-- /wp:paragraph -->','Chad Rothlin','','inherit','closed','closed','','2286-revision-v1','','','2022-02-18 02:18:12','2022-02-18 02:18:12','',2286,'https://lantern-realty.com/?p=2288',0,'revision','',0),(2289,1,'2022-02-18 02:20:38','2022-02-18 02:20:38','','Jamie Stewart','','publish','closed','closed','','jamie-stewart','','','2022-02-18 02:20:44','2022-02-18 02:20:44','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2289',90,'houzez_agent','',0),(2290,1,'2022-02-18 02:20:17','2022-02-18 02:20:17','','Jamie_Stewart','','inherit','','closed','','jamie_stewart','','','2022-02-18 02:20:17','2022-02-18 02:20:17','',2289,'https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart.jpg',0,'attachment','image/jpeg',0),(2291,1,'2022-02-18 02:20:38','2022-02-18 02:20:38','','Jamie Stewart','','inherit','closed','closed','','2289-revision-v1','','','2022-02-18 02:20:38','2022-02-18 02:20:38','',2289,'https://lantern-realty.com/?p=2291',0,'revision','',0),(2292,1,'2022-02-18 02:25:05','2022-02-18 02:25:05','<!-- wp:paragraph -->\n<p>Don\'t miss out, let\'s make your dreams come true! Melissa, licensed in 2003, is a Relator &amp; Broker. She has chosen Lantern Realty &amp; Development for their amazing culture and believes. Melissa is the Founder and CEO of 3 with MV, LLC a holistic/spiritual based business; which includes VRE (Valley Real Estate) and (VIP) Valley Investment Properties. She holds a MBA and a Bachelors Degree in Human Resources. She started her career as a temp at local real estate company back in 1997. She moved into an apartment on a Tax Credit community and fell in love with the staff and industry, and work her way through the ranks of the property management and asset management field. She has a total of over 25 years of experience in both single family and multi-family housing. She has worked along side many property management companies, asset management companies, syndicators, Investors, Developers, and Lenders. Melissa is passionate about helping people and assisting them in achieving their dreams. Melissa is committed to loving all people and making sure the are treated with respect and kindness. Melissa is a native to Salisbury and lives here with her husband Troy Valley. Troy owns his own property preservation and handyman company that is committed to excellence. They has a wild cat named \"Shu-Shu\" and a poodle named \"Froto\". They have two amazing children; Marc and Madison. Melissa has earned the name of \"Gran-nay\" with (8) grandchildren and a 9th on the way. Melissa\'s favorite place is the beach and she loves Christmas so much, her tree stays up year-round. Melissa is a Breast Cancer Warrior with a passion to make sure others get their mammograms. She is a member of Cornerstone Church and serves on the Events Committee for Rowan Pregnancy Support Center. She also has a desire to help the homeless and less fortunate. Melissa has pledged to donate a percentage of all her earning to these charities. Whether buying, selling, renting, investing, or property management; Melissa is here for you.</p>\n<!-- /wp:paragraph -->','Melissa Shannon Morefield-Valley','','publish','closed','closed','','melissa-shannon-morefield-valley','','','2022-05-26 01:53:11','2022-05-26 01:53:11','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2292',50,'houzez_agent','',0),(2293,1,'2022-02-18 02:24:41','2022-02-18 02:24:41','','Melissa_Shannon_Morefield-Valley','','inherit','','closed','','melissa_shannon_morefield-valley','','','2022-02-18 02:24:41','2022-02-18 02:24:41','',2292,'https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley.jpg',0,'attachment','image/jpeg',0),(2294,1,'2022-02-18 02:25:05','2022-02-18 02:25:05','<!-- wp:paragraph -->\n<p>Don\'t miss out, let\'s make your dreams come true! Melissa, licensed in 2003, is a Relator &amp;amp; Broker. She has chosen Lantern Realty &amp;amp; Development for their amazing culture and believes. Melissa is the Founder and CEO of 3 with MV, LLC a holistic/spiritual based business; which includes VRE (Valley Real Estate) and (VIP) Valley Investment Properties. She holds a MBA and a Bachelors Degree in Human Resources. She started her career as a temp at local real estate company back in 1997. She moved into an apartment on a Tax Credit community and fell in love with the staff and industry, and work her way through the ranks of the property management and asset management field. She has a total of over 25 years of experience in both single family and multi-family housing. She has worked along side many property management companies, asset management companies, syndicators, Investors, Developers, and Lenders. Melissa is passionate about helping people and assisting them in achieving their dreams. Melissa is committed to loving all people and making sure the are treated with respect and kindness. Melissa is a native to Salisbury and lives here with her husband Troy Valley. Troy owns his own property preservation and handyman company that is committed to excellence. They has a wild cat named \"Shu-Shu\" and a poodle named \"Froto\". They have two amazing children; Marc and Madison. Melissa has earned the name of \"Gran-nay\" with (8) grandchildren and a 9th on the way. Melissa\'s favorite place is the beach and she loves Christmas so much, her tree stays up year-round. Melissa is a Breast Cancer Warrior with a passion to make sure others get their mammograms. She is a member of Cornerstone Church and serves on the Events Committee for Rowan Pregnancy Support Center. She also has a desire to help the homeless and less fortunate. Melissa has pledged to donate a percentage of all her earning to these charities. Whether buying, selling, renting, investing, or property management; Melissa is here for you.</p>\n<!-- /wp:paragraph -->','Melissa Shannon Morefield-Valley','','inherit','closed','closed','','2292-revision-v1','','','2022-02-18 02:25:05','2022-02-18 02:25:05','',2292,'https://lantern-realty.com/?p=2294',0,'revision','',0),(2298,1,'2022-02-18 02:34:08','2022-02-18 02:34:08','<!-- wp:paragraph -->\n<p>Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is a graduate of UNC Chapel Hill and has been in Real Estate off and on since 2006. She lives in Lewisville and loves to help buyers and sellers. She is a member of the Winston-Salem Realtors Association.</p>\n<!-- /wp:paragraph -->','Stephanie Knight','','publish','closed','closed','','stephanie-knight','','','2022-02-18 02:38:38','2022-02-18 02:38:38','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2298',45,'houzez_agent','',0),(2299,1,'2022-02-18 02:33:42','2022-02-18 02:33:42','','Stephanie_Knight','','inherit','','closed','','stephanie_knight','','','2022-02-18 02:33:42','2022-02-18 02:33:42','',2298,'https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight.jpg',0,'attachment','image/jpeg',0),(2300,1,'2022-02-18 02:34:08','2022-02-18 02:34:08','<!-- wp:paragraph -->\n<p>Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is a graduate of UNC Chapel Hill and has been in Real Estate off and on since 2006. She lives in Lewisville and loves to help buyers and sellers. She is a member of the Winston-Salem Realtors Association.</p>\n<!-- /wp:paragraph -->','Stephanie Knight','','inherit','closed','closed','','2298-revision-v1','','','2022-02-18 02:34:08','2022-02-18 02:34:08','',2298,'https://lantern-realty.com/?p=2300',0,'revision','',0),(2301,1,'2022-02-18 02:35:45','2022-02-18 02:35:45','','Lantern - Lexington','','publish','closed','closed','','lantern-lexington','','','2022-04-20 01:06:37','2022-04-20 01:06:37','',0,'https://lantern-realty.com/?post_type=houzez_agency&#038;p=2301',0,'houzez_agency','',0),(2302,1,'2022-02-18 02:41:13','2022-02-18 02:41:13','<!-- wp:paragraph -->\n<p>Ben has resided in the Rowan and Cabarrus County area of North Carolina for over 30 years in cities such as Salisbury, Kannapolis, Mt. Ulla, and Richfield. He currently resides on High Rock Lake with his wife Dana and two of their four sons – Tyler and Alan, and their Great Dane - Karma. Their oldest son, Austin, is a Police Officer, and the next oldest, Dakota, is serving in the US ARMY. Having been in the metals industry for over 20 years in roles such as Inside Sales, Territory Manager, as well as a Purchasing Manager, he decided that it was time to chase a dream of being involved in Real Estate by helping people with one of the most important aspects of life – Home Ownership. Ben is eager to help you buy or sell your next property.</p>\n<!-- /wp:paragraph -->','Benjamin Allen Surratt','','publish','closed','closed','','benjamin-allen-surratt','','','2022-02-18 02:41:17','2022-02-18 02:41:17','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2302',95,'houzez_agent','',0),(2303,1,'2022-02-18 02:40:59','2022-02-18 02:40:59','','Benjamin_Allen_Surratt','','inherit','','closed','','benjamin_allen_surratt','','','2022-02-18 02:40:59','2022-02-18 02:40:59','',2302,'https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg',0,'attachment','image/jpeg',0),(2304,1,'2022-02-18 02:41:13','2022-02-18 02:41:13','<!-- wp:paragraph -->\n<p>Ben has resided in the Rowan and Cabarrus County area of North Carolina for over 30 years in cities such as Salisbury, Kannapolis, Mt. Ulla, and Richfield. He currently resides on High Rock Lake with his wife Dana and two of their four sons – Tyler and Alan, and their Great Dane - Karma. Their oldest son, Austin, is a Police Officer, and the next oldest, Dakota, is serving in the US ARMY. Having been in the metals industry for over 20 years in roles such as Inside Sales, Territory Manager, as well as a Purchasing Manager, he decided that it was time to chase a dream of being involved in Real Estate by helping people with one of the most important aspects of life – Home Ownership. Ben is eager to help you buy or sell your next property.</p>\n<!-- /wp:paragraph -->','Benjamin Allen Surratt','','inherit','closed','closed','','2302-revision-v1','','','2022-02-18 02:41:13','2022-02-18 02:41:13','',2302,'https://lantern-realty.com/?p=2304',0,'revision','',0),(2305,1,'2022-02-18 02:45:24','2022-02-18 02:45:24','<!-- wp:paragraph -->\n<p>“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago and there’s been no looking back! In 2005 I entered the world of real estate and that decision has been one of the most rewarding decisions of my life. Sharing all the different areas and what they have to offer has been one of my joys and strong points as a realtor. I also like sharing my years’ of knowledge regarding contracts and the nuances of what it all means. In addition, I seriously embrace all my fiduciary duties. I will work with you in the highest of duty with good faith, fairness, loyalty, and above all, honesty. If it’s time for a new address, I would love to help you and guide you to your new home!</p>\n<!-- /wp:paragraph -->','Colleen Crane','','publish','closed','closed','','colleen-crane','','','2022-04-30 22:09:07','2022-04-30 22:09:07','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2305',15,'houzez_agent','',0),(2306,1,'2022-02-18 02:45:01','2022-02-18 02:45:01','','Colleen_Crane','','inherit','','closed','','colleen_crane','','','2022-02-18 02:45:01','2022-02-18 02:45:01','',2305,'https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane.jpg',0,'attachment','image/jpeg',0),(2307,1,'2022-02-18 02:45:24','2022-02-18 02:45:24','<!-- wp:paragraph -->\n<p>“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago and there’s been no looking back! In 2005 I entered the world of real estate and that decision has been one of the most rewarding decisions of my life. Sharing all the different areas and what they have to offer has been one of my joys and strong points as a realtor. I also like sharing my years’ of knowledge regarding contracts and the nuances of what it all means. In addition, I seriously embrace all my fiduciary duties. I will work with you in the highest of duty with good faith, fairness, loyalty, and above all, honesty. If it’s time for a new address, I would love to help you and guide you to your new home!</p>\n<!-- /wp:paragraph -->','Colleen Crane','','inherit','closed','closed','','2305-revision-v1','','','2022-02-18 02:45:24','2022-02-18 02:45:24','',2305,'https://lantern-realty.com/?p=2307',0,'revision','',0),(2308,1,'2022-02-18 02:48:48','2022-02-18 02:48:48','<!-- wp:paragraph -->\n<p>My name is Sarah Horn. I was born and raised in North Carolina for the past 35 years. I’ve been married for 16 years and we’re blessed with two children. I have always dreamed of working in Real Estate and I’m finally following my dream. I’m currently a EC Teacher Assistant. I love to help other people in the community each and everyday.</p>\n<!-- /wp:paragraph -->','Sarah Grace Horn','','publish','closed','closed','','sarah-grace-horn','','','2022-02-18 02:49:45','2022-02-18 02:49:45','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2308',40,'houzez_agent','',0),(2309,1,'2022-02-18 02:48:06','2022-02-18 02:48:06','','Sarah_Grace_Horn','','inherit','','closed','','sarah_grace_horn','','','2022-02-18 02:48:06','2022-02-18 02:48:06','',2308,'https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn.jpeg',0,'attachment','image/jpeg',0),(2310,1,'2022-02-18 02:48:48','2022-02-18 02:48:48','<!-- wp:paragraph -->\n<p>My name is Sarah Horn. I was born and raised in North Carolina for the past 35 years. I’ve been married for 16 years and we’re blessed with two children. I have always dreamed of working in Real Estate and I’m finally following my dream. I’m currently a EC Teacher Assistant. I love to help other people in the community each and everyday.</p>\n<!-- /wp:paragraph -->','Sarah Grace Horn','','inherit','closed','closed','','2308-revision-v1','','','2022-02-18 02:48:48','2022-02-18 02:48:48','',2308,'https://lantern-realty.com/?p=2310',0,'revision','',0),(2311,1,'2022-02-18 02:59:31','2022-02-18 02:59:31','','Amy_Bundy','','inherit','','closed','','amy_bundy-2','','','2022-02-18 02:59:31','2022-02-18 02:59:31','',2283,'https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1.jpg',0,'attachment','image/jpeg',0),(2313,1,'2022-02-18 03:10:06','2022-02-18 03:10:06','','Melissa_Shannon_Morefield-Valley','','inherit','','closed','','melissa_shannon_morefield-valley-2','','','2022-02-18 03:10:06','2022-02-18 03:10:06','',2292,'https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1.jpg',0,'attachment','image/jpeg',0),(2314,1,'2022-02-18 03:17:10','2022-02-18 03:17:10','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-02-18 03:17:10','2022-02-18 03:17:10','',1279,'https://lantern-realty.com/?p=2314',0,'revision','',0),(2315,1,'2022-02-18 03:17:10','2022-02-18 03:17:10','<h2>Lantern Offices</h2>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\" aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 North Main Suite B, Salisbury, NC 28144\" aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										6477 Morehead Rd, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=6477%20Morehead%20Rd%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"6477 Morehead Rd, Harrisburg, NC 28075\" aria-label=\"6477 Morehead Rd, Harrisburg, NC 28075\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										118 East Main St., Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=118%20East%20Main%20St.%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"118 East Main St., Albemarle, NC 28001\" aria-label=\"118 East Main St., Albemarle, NC 28001\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\" aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"></iframe>		\n											<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-02-18 03:17:10','2022-02-18 03:17:10','',1279,'https://lantern-realty.com/?p=2315',0,'revision','',0),(2317,1,'2022-02-18 03:41:10','2022-02-18 03:41:10','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/renee-chambers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Renee_Chambers.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/renee-chambers/\"><strong>Renee Chambers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a proud mother of three beautiful girls. Kannapolis native and A.L. Brown...	\n		<a href=\"https://lantern-realty.com/agent/renee-chambers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Richard, originally from Florida, has made North Carolina his permanent home. However, he is...	\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Let me put my 20 years of experience in our local market (Cabarrus &amp;...	\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/alan-aylesworth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alan-aylesworth/\"><strong>Alan Aylesworth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Husband, Father &amp; Pop to 6 Grandkids. My belief system in business is simple...	\n		<a href=\"https://lantern-realty.com/agent/alan-aylesworth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alexandria-j-bare/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alexandria_J_Bare.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alexandria-j-bare/\"><strong>Alexandria J Bare</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Alexandria illustrates energy, hard work, and creative service in every detail of your real...	\n		<a href=\"https://lantern-realty.com/agent/alexandria-j-bare/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney loves helping others reach their goals! She has experience working residential sales, land...	\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in...	\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">6477 Morehead Road Harrisburg, North Carolina 28075 </br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thanks for checking out my profile! My name is Meredith Christy and the three...	\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...	\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">118 East Main Street Albemarle, North Carolina 28001 </br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My passion is helping people achieve the goals they have set out before them....	\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2022-02-18 03:41:10','2022-02-18 03:41:10','',101,'https://lantern-realty.com/?p=2317',0,'revision','',0),(2318,1,'2022-02-18 03:41:10','2022-02-18 03:41:10','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated&nbsp;from Concord High School and UNC...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/renee-chambers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Renee_Chambers.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/renee-chambers/\"><strong>Renee Chambers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a proud mother of three beautiful girls. Kannapolis native and A.L. Brown...	\n		<a href=\"https://lantern-realty.com/agent/renee-chambers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Kim_Drakulich.jpg 752w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Priscilla_Johnson-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"><strong>Priscilla Johnson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/priscilla-johnson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Matthews</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\">\n			<img width=\"97\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Chuck_Thompson-97x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"><strong>Chuck Thompson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chuck-thompson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Richard, originally from Florida, has made North Carolina his permanent home. However, he is...	\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Let me put my 20 years of experience in our local market (Cabarrus &amp;...	\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/alan-aylesworth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/11/Alan_Aylesworth.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alan-aylesworth/\"><strong>Alan Aylesworth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Husband, Father &amp; Pop to 6 Grandkids. My belief system in business is simple...	\n		<a href=\"https://lantern-realty.com/agent/alan-aylesworth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alexandria-j-bare/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alexandria_J_Bare.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alexandria-j-bare/\"><strong>Alexandria J Bare</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Alexandria illustrates energy, hard work, and creative service in every detail of your real...	\n		<a href=\"https://lantern-realty.com/agent/alexandria-j-bare/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-595x600.jpg 595w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin-496x500.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Jeff_Franklin.jpg 600w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"><strong>Jeff Franklin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeff-franklin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/06/Kimberly_Howell.jpg 539w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"><strong>Kimberly Howell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kimberly-howell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney loves helping others reach their goals! She has experience working residential sales, land...	\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in...	\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">6477 Morehead Road Harrisburg, North Carolina 28075 </br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Meredith_Christy-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/meredith-christy/\"><strong>Meredith Christy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thanks for checking out my profile! My name is Meredith Christy and the three...	\n		<a href=\"https://lantern-realty.com/agent/meredith-christy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Lisa_Crowder-480x480.jpg 480w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"><strong>Lisa Crowder</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a Cabarrus County resident since 2007.&nbsp; I became a licensed Realtor®...	\n		<a href=\"https://lantern-realty.com/agent/lisa-crowder/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">118 East Main Street Albemarle, North Carolina 28001 </br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My passion is helping people achieve the goals they have set out before them....	\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2022-02-18 03:41:10','2022-02-18 03:41:10','',101,'https://lantern-realty.com/?p=2318',0,'revision','',0),(2319,1,'2022-02-18 03:41:11','2022-02-18 03:41:11','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in upstate New York, I moved to Concord with my family...	\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...	\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a native of New Jersey, but I have resided in the Charlotte...	\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Erin Hyman. I have lived in Kannapolis all my life, graduating...	\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Sarah Horn. I was born and raised in North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....	\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born in Lexington, Kentucky, which might explain my love for horses and...	\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Tammy Fox and I have lived in the Kannapolis area my...	\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...	\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a people person by nature. I have a desire and passion in...	\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...	\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! Thank you for taking the time to see a little about me and...	\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education...	\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! My name is Dawn and I was born and raised in Cabarrus County....	\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Richard, originally from Florida, has made North Carolina his permanent home. However, he is...	\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Wendell is a lifelong resident of the Charlotte Metro area which is a plus...	\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Let me put my 20 years of experience in our local market (Cabarrus &amp;...	\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A NC native, resident of Cabarrus County for over 30 years and a graduate...	\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Metro Charlotte area is a great place to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Sandra has lived in North Carolina her whole life. Her passion is to help...	\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...	\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is...	\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ben has resided in the Rowan and Cabarrus County area of North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney loves helping others reach their goals! She has experience working residential sales, land...	\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in...	\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...	\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thank you for checking out my profile! I moved to NC in 1996 and...	\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		With over 25 years buying and selling real estate, we can assist you with...	\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		After working with a few different real estate agents and purchasing several properties &#8211;...	\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I grew up as a Rowan County resident and moved to Richfield when my...	\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My passion is helping people achieve the goals they have set out before them....	\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2022-02-18 03:41:11','2022-02-18 03:41:11','',101,'https://lantern-realty.com/?p=2319',0,'revision','',0),(2320,9,'2022-02-23 23:56:19','2022-02-23 23:56:19','<div class=\"postie-post\"><div dir=\"ltr\"><div>Lantern Realty Team Meeting Info for Wednesday, March 2 - Please read what Terry from Fairway has lined up for us. Be sure to register for the meeting, Terry has included the link below the Homebot pic.</div><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\"><br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\">\r\n\r\n\r\n<div lang=\"EN-US\"> <div class=\"gmail-m_-6146195658617495368WordSection1\"> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\">Hey Lantern Family,<u></u><u></u></span></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\">This is a Zoom call that will be well worth your time.  I have had a lot of questions about and interest in Homebot.  I have scheduled a zoom call with a Homebot Rep for our team meeting on Mar. 2 at 11:00 a.m.   The first part of the meeting will give a general overview of how Homebot can help you with lead generation.  The second part will be a deeper dive into some of the more useful tools that Homebot provides.  I know several of you are already using Homebot and  have had good success generating conversations with clients from it.  <u></u><u></u></span></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\"><u></u> <u></u></span></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\">Below is a snippet of my activity on Homebot over the past 30 days.  Wanted to share this so you could see the activity that is generated and the open rates.<u></u><u></u></span></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\"><img width=\"913\" height=\"554\" style=\"width: 9.5104in; height: 5.7708in;\" id=\"gmail-m_-6146195658617495368Picture_x0020_2\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/image001-1.jpg\"></span><span style=\"color:rgb(31,73,125)\"><u></u><u></u></span></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\"><u></u> <u></u></span></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\"><u></u> <u></u></span></p> <p class=\"MsoNormal\">Here is the Eventbrite registration link for next week’s webinar: <a href=\"https://homebotforlantern.eventbrite.com\" target=\"_blank\" rel=\"noopener\">https://homebotforlantern.eventbrite.com</a><u></u><u></u></p> <p class=\"MsoNormal\"><u></u> <u></u></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\">Let me know if you have any questions.  Have a great day!<u></u><u></u></span></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\">Terry<u></u><u></u></span></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\"><u></u> <u></u></span></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\"><u></u> <u></u></span></p> <div> <p class=\"MsoNormal\" style=\"margin-bottom:3pt;line-height:12pt\"><b><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:rgb(6,56,14)\">Terry Whitesell, NMLS #199821</span></b><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:rgb(153,153,153)\"> /</span><span style=\"font-size:12pt;font-family:\"Times New Roman\",serif;color:rgb(31,73,125)\"> Senior  Mortgage Planner </span><a href=\"http://twitter.com/MortgageProTW\" target=\"_blank\" rel=\"noopener\"><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:blue;text-decoration:none\"><img border=\"0\" width=\"21\" height=\"21\" style=\"width: 0.2187in; height: 0.2187in;\" id=\"gmail-m_-6146195658617495368Picture_x0020_12\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/image002.png\" alt=\"twitter logo\"></span></a><a href=\"https://www.linkedin.com/in/twhitesell\" target=\"_blank\" rel=\"noopener\"><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:blue;text-decoration:none\"><img border=\"0\" width=\"21\" height=\"21\" style=\"width: 0.2187in; height: 0.2187in;\" id=\"gmail-m_-6146195658617495368Picture_x0020_13\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/image003.png\" alt=\"linked in logo\"></span></a><a href=\"https://www.facebook.com/pages/Terry-Whitesell-Mortgage-Pro/810623582285893\" target=\"_blank\" rel=\"noopener\"><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:rgb(6,56,14);text-decoration:none\"><img border=\"0\" width=\"21\" height=\"21\" style=\"width: 0.2187in; height: 0.2187in;\" id=\"gmail-m_-6146195658617495368Picture_x0020_14\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/image004.png\" alt=\"Facebook logo\"></span></a><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:rgb(153,153,153)\"><br> </span><b><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:rgb(6,56,14)\">Fairway Independent Mortgage NMLS #2289</span></b><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:rgb(155,155,155)\"> <u></u><u></u></span></p> <p class=\"MsoNormal\" style=\"margin-bottom:3pt;line-height:12pt\"><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:rgb(6,56,14)\">Mobile: 704-267-4086 / </span><a href=\"mailto:terryw@fairwaymc.com\" target=\"_blank\" rel=\"noopener\"><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:blue\"><a href=\"mailto:terryw@fairwaymc.com\" >terryw@fairwaymc.com</a></span></a><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:rgb(6,56,14)\"><u></u><u></u></span></p> <p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:12pt\"><a href=\"https://fairwaycustommortgage.com/terry-whitesell/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:blue\">https://fairwaycustommortgage.com/terry-whitesell/</span></a><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:rgb(6,56,14)\"><u></u><u></u></span></p> <p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:12pt\"><a href=\"https://www.fairwayindependentmc.com/application?employeeId=twhitesell\" target=\"_blank\" rel=\"noopener\"><span style=\"color:blue;text-decoration:none\"><img border=\"0\" width=\"242\" height=\"30\" style=\"width: 2.5208in; height: 0.3125in;\" id=\"gmail-m_-6146195658617495368Picture_x0020_11\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/image016.png\" alt=\"Apply Now\"></span></a><span style=\"font-size:10.5pt;font-family:Helvetica,sans-serif;color:rgb(155,155,155)\"><br> <br> </span><b><i><span style=\"font-size:12pt;color:red\"><u></u><u></u></span></i></b></p> <p class=\"MsoNormal\"><b><i><span style=\"font-size:14pt;font-family:\"Times New Roman\",serif;color:red\">Interested in searching for homes directly on MLS or seeing what homes in your neighborhood are selling for? Click Below! <u></u><u></u></span></i></b></p> <p class=\"MsoNormal\"><a href=\"http://hbsr.homescouting.com/myapp/ef025cce-24bc-4975-95cf-b0338ba7eb05\" target=\"_blank\" rel=\"noopener\"><b><span style=\"font-size:12pt;color:blue;text-decoration:none\"><img border=\"0\" width=\"624\" height=\"52\" style=\"width: 6.5in; height: 0.5416in;\" id=\"gmail-m_-6146195658617495368Picture_x0020_10\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/image017.jpg\" alt=\"HBM Banner for Email\"></span></b></a><span style=\"color:rgb(31,73,125)\"><u></u><u></u></span></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\"><u></u> <u></u></span></p> <p class=\"MsoNormal\"><span style=\"color:rgb(31,73,125)\"><u></u> <u></u></span></p> <p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:12pt\"><b><i><span style=\"font-size:12pt;color:rgb(31,73,125)\">“The greatest compliment I can receive is a referral from friends, family and satisfied customers. Thank you!”<u></u><u></u></span></i></b></p> </div> </div> </div>\r\n</blockquote></div><br clear=\"all\"><div><br></div></div>','Homebot for Lantern - You do not want to miss this!!!','','publish','closed','open','','homebot-for-lantern-you-do-not-want-to-miss-this','','','2022-02-23 23:56:19','2022-02-23 23:56:19','',0,'https://lantern-realty.com/?p=2320',0,'post','',0),(2321,9,'2022-02-23 23:56:06','2022-02-23 23:56:06','','image016.png','','inherit','closed','closed','','image016','','','2022-02-23 23:56:07','2022-02-23 23:56:07','',2320,'https://lantern-realty.com/wp-content/uploads/2022/02/image016.png',0,'attachment','image/png',0),(2322,9,'2022-02-23 23:56:07','2022-02-23 23:56:07','','image017.jpg','','inherit','closed','closed','','image017','','','2022-02-23 23:56:11','2022-02-23 23:56:11','',2320,'https://lantern-realty.com/wp-content/uploads/2022/02/image017.jpg',0,'attachment','image/jpeg',0),(2323,9,'2022-02-23 23:56:11','2022-02-23 23:56:11','','image001.jpg','','inherit','closed','closed','','image001-1','','','2022-02-23 23:56:17','2022-02-23 23:56:17','',2320,'https://lantern-realty.com/wp-content/uploads/2022/02/image001-1.jpg',0,'attachment','image/jpeg',0),(2324,9,'2022-02-23 23:56:17','2022-02-23 23:56:17','','image002.png','','inherit','closed','closed','','image002-2','','','2022-02-23 23:56:17','2022-02-23 23:56:17','',2320,'https://lantern-realty.com/wp-content/uploads/2022/02/image002.png',0,'attachment','image/png',0),(2325,9,'2022-02-23 23:56:17','2022-02-23 23:56:17','','image003.png','','inherit','closed','closed','','image003','','','2022-02-23 23:56:18','2022-02-23 23:56:18','',2320,'https://lantern-realty.com/wp-content/uploads/2022/02/image003.png',0,'attachment','image/png',0),(2326,9,'2022-02-23 23:56:18','2022-02-23 23:56:18','','image004.png','','inherit','closed','closed','','image004','','','2022-02-23 23:56:19','2022-02-23 23:56:19','',2320,'https://lantern-realty.com/wp-content/uploads/2022/02/image004.png',0,'attachment','image/png',0),(2327,9,'2022-02-24 15:56:00','2022-02-24 15:56:00','<div class=\"postie-post\"><div dir=\"ltr\">Hey Lantern Agents ~<div><br></div><div>If you have not RSVP&#39;d to the free virtual GenUp class courtesy of DR Horton, please do so. It is open to all Lantern Realty agents who need to get their GENUP done.  I have attached the flyer to this email in case the original email I sent you is MIA.  Please do not RSVP to me, do so directly to the email addresses on the flyer - <a href=\"mailto:jslawter@drhorton.com\"><a href=\"mailto:jslawter@drhorton.com\" >jslawter@drhorton.com</a></a>   <a href=\"mailto:gjakbeer@drhorton.com\"><a href=\"mailto:gjakbeer@drhorton.com\" >gjakbeer@drhorton.com</a></a>    <a href=\"mailto:ccox1@drhorton.com\"><a href=\"mailto:ccox1@drhorton.com\" >ccox1@drhorton.com</a></a></div><div><br></div><div>Thank you DR Horton for generously providing this free GenUp class to our agents<br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/02/Free-CE-flyer-DR-Horton-March.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> Free-CE-flyer-DR-Horton-March.pdf</a><br /></div></div>','Free GENUP in March','','publish','closed','open','','free-genup-in-march','','','2022-02-24 15:56:00','2022-02-24 15:56:00','',0,'https://lantern-realty.com/?p=2327',0,'post','',0),(2328,9,'2022-02-24 15:56:00','2022-02-24 15:56:00','','Free-CE-flyer-DR-Horton-March.pdf','','inherit','closed','closed','','free-ce-flyer-dr-horton-march','','','2022-02-24 15:56:00','2022-02-24 15:56:00','',2327,'https://lantern-realty.com/wp-content/uploads/2022/02/Free-CE-flyer-DR-Horton-March.pdf',0,'attachment','application/pdf',0),(2330,0,'2022-03-01 18:25:58','2022-03-01 18:25:58','<div class=\"postie-post\"><div dir=\"ltr\">any updates on 1099&#39;s yet?  I&#39;m trying to get my taxes done and waiting on correct 1099, even though I didn&#39;t have any transactions for 2021, showing I made $21,500?  Please send me accountants info so I can address this asap.  I have cancelled 2 appts so far for taxes.<br clear=\"all\"><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div><font color=\"#666666\" size=\"4\"><em><font size=\"2\"><br></font></em></font></div><div><font color=\"#666666\" size=\"4\"><em><font size=\"2\">  </font><strong>  Thank you,</strong></em></font></div><div><font color=\"#990000\" size=\"4\"><strong><font color=\"#000000\"><i><font face=\"georgia, serif\">Sandi Laney, </font></i></font></strong></font><b>REALTOR®</b></div><div><b>NC Broker License # 272563</b></div><div><b>704.773.5886 - cell</b></div><div><b><a href=\"mailto:sandilaney2@gmail.com\" target=\"_blank\" rel=\"noopener\"><a href=\"mailto:sandilaney2@gmail.com\" >sandilaney2@gmail.com</a></a></b></div><div><a href=\"https://lantern-realty.com/\" target=\"_blank\" rel=\"noopener\">https://lantern-realty.com/</a><br></div><div><b><img src=\"https://docs.google.com/uc?export=download&amp;id=10AaCNLDf9w-qToOjPGAq53j0BSZ3Xypp&amp;revid=0BwlSD9JMVEq8MmZ3aUdQM1NTZUpjR0R2alFRcnFGakRDUDk4PQ\" width=\"200\" height=\"71\"><br></b></div><h1><div style=\"font-size:small\"><font color=\"#ff0000\" size=\"1\" face=\"georgia, serif\"><i>Attention:  North Carolina Real Estate Law requires me to provide you with a copy of our agency disclosure brochure: Please click on the link to review this brochure  <a href=\"http://www.ncrec.gov/Brochures/HTML/WorkingWith.html\" style=\"color:rgb(17,85,204)\" target=\"_blank\" rel=\"noopener\">http://www.ncrec.gov/Brochures/HTML/WorkingWith.html</a></i></font></div><div style=\"font-size:small\"><font color=\"#ff0000\" size=\"1\" face=\"georgia, serif\">* Disclaimer Warning:  Our office does not participate in wire transfers due to wire fraud. No wiring instructions will be sent via email. Please verify wiring instructions via phone between sending and receiving parties.</font></div></h1><div><font size=\"4\"> </font></div><div><br></div><div><p><br></p></div><div> </div><div> </div><div><br></div><div><br></div><div><br></div> <div> </div><font size=\"4\"> </font><div><strong><em><font size=\"4\" style=\"background-color:rgb(255,255,255)\"><br></font></em></strong></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Feb 15, 2022 at 1:20 PM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Hello Everyone, if you have reached out to me about your 1099, whether you have not reached your original one or what you received was incorrect, i have not received an update from the accountant.  <div><br></div><div>I&#39;m waiting on a call back from the accountant today to get a timeframe on when they will be ready.  I&#39;ll keep you all posted as soon as I have an update.</div><div><br></div><div>Thanks for your patience.<br clear=\"all\"><div><br></div></div>','1099 Updates','','draft','closed','open','','1099-updates','','','2022-03-01 18:25:58','2022-03-01 18:25:58','',0,'https://lantern-realty.com/?p=2330',0,'post','',0),(2331,6,'2022-03-07 16:36:15','2022-03-07 16:36:15','<div class=\"postie-post\"><div dir=\"ltr\">Good Morning All, below is the link to view the recent HomeBot class hosted by Terry Whitesell with Fairway Mortgage.  Enjoy!!!<div><br></div><div><a href=\"https://vimeo.com/684248346\">https://vimeo.com/684248346</a><br clear=\"all\"><div><br></div></div>','Homebot Class','','publish','closed','open','','homebot-class','','\nhttps://vimeo.com/684248346','2022-03-07 16:36:15','2022-03-07 16:36:15','',0,'https://lantern-realty.com/?p=2331',0,'post','',0),(2332,6,'2022-03-07 16:59:13','2022-03-07 16:59:13','<div class=\"postie-post\"><div dir=\"ltr\">Hello Folks, below is a link to this class.  If you have any questions please let me know.<div><br></div><div>We will have more information around team building coming in the near future.  Be on the lookout!</div><div><br></div><div>  <a href=\"https://youtu.be/cIJNWUbBD5o\">https://youtu.be/cIJNWUbBD5o</a><br clear=\"all\"><div><br></div></div>','Team Building/Should I Join a Team class - 3/1/22','','publish','closed','open','','team-building-should-i-join-a-team-class-3-1-22','','','2022-03-07 16:59:13','2022-03-07 16:59:13','',0,'https://lantern-realty.com/?p=2332',0,'post','',0),(2333,0,'2022-03-07 20:30:24','2022-03-07 20:30:24','','Brianne_Watson','','inherit','closed','closed','','videocapture_20210526-184249','','','2022-06-24 00:02:49','2022-06-24 00:02:49','',0,'https://lantern-realty.com/videocapture_20210526-184249/',0,'attachment','image/jpeg',0),(2334,6,'2022-03-09 20:06:05','2022-03-09 20:06:05','<div class=\"postie-post\"><div dir=\"ltr\">Good Afternoon,  the updated Education Calendar is attached.  I just added a meeting on 3/22 at 11am for a discussion with the City of Kannapolis Planning Director regarding the recent sewer allocation issues that are happening around Cabarrus county, Union County and Locust.  Richard will speak directly about Kannapolis&#39; opportunities but can also give guidance on other municipalities in our area that are affected.  <div><br></div><div>Make sure you plan to attend.  It will be held by Zoom so as many as possible can attend.  </div><div><br></div><div>Also check out our upcoming classes.  If you have suggestions for classes please let me or Melissa Jackling know.  </div><div><br></div><div>Thanks for all you do!<br clear=\"all\"><div><br></div></div>','Education Calendar','','publish','closed','open','','education-calendar-2','','','2022-03-09 20:06:05','2022-03-09 20:06:05','',0,'https://lantern-realty.com/?p=2334',0,'post','',0),(2335,0,'2022-03-11 07:40:44','2022-03-11 07:40:44','','20180820_164925 (2)','','inherit','','closed','','20180820_164925-2','','','2022-03-11 07:40:44','2022-03-11 07:40:44','',0,'https://lantern-realty.com/20180820_164925-2/',0,'attachment','image/jpeg',0),(2336,9,'2022-03-21 15:26:01','2022-03-21 15:26:01','<div class=\"postie-post\"><div dir=\"ltr\"><div><br></div><div>Happy Monday fellow Lantern Realty Agents - Richard Smith with the City of Kannapolis is taking time out of his busy schedule to shed some light on the sewer allocation whispers that have been going around.  If you can, please join us for this meeting. It will be beneficial to all in the business. The Zoom link can be found below.<br><br><b>Topic: Sewer Allocation<br>Time: Mar 22, 2022 11:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/88955787199?pwd=Y2RsUFVMN1FUYWFRUjF4U0RHZC9Pdz09\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/j/88955787199?pwd=Y2RsUFVMN1FUYWFRUjF4U0RHZC9Pdz09</a><br><br>Meeting ID: 889 5578 7199<br>Passcode: 438518<br>One tap mobile<br>+19292056099,,88955787199#,,,,*438518# US (New York)<br>+13017158592,,88955787199#,,,,*438518# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 889 5578 7199<br>Passcode: 438518<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kcGctpSTsv\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/u/kcGctpSTsv</a><br><br></div><br clear=\"all\"><div><br></div></div>','Zoom Meeting Invite for Sewer Allocation - Tuesday Mar 22, 2022 11:00 AM','','publish','closed','open','','zoom-meeting-invite-for-sewer-allocation-tuesday-mar-22-2022-1100-am','','','2022-03-21 15:26:01','2022-03-21 15:26:01','',0,'https://lantern-realty.com/?p=2336',0,'post','',0),(2337,6,'2022-03-22 18:57:06','2022-03-22 18:57:06','<div class=\"postie-post\"><div dir=\"ltr\">Here is the link to today&#39;s class...<div><br></div><div><a href=\"https://youtu.be/CjJGWaQ2An8\">https://youtu.be/CjJGWaQ2An8</a><br clear=\"all\"><div><br></div></div>','Today\'s Sewer Allocation Discussion','','publish','closed','open','','todays-sewer-allocation-discussion','','','2022-03-22 18:57:06','2022-03-22 18:57:06','',0,'https://lantern-realty.com/?p=2337',0,'post','',0),(2338,9,'2022-03-24 00:06:02','2022-03-24 00:06:02','<div class=\"postie-post\"><div dir=\"ltr\">Please join us either in the Kannapolis office or via Zoom for Contracts to Close with our Mooresville BIC, Sarah Romesburg.  Date and link are below.  I know we have some agents looking forward to catching another one of Sarah&#39;s great classes.<div><br clear=\"all\"><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br><b>Topic: Contracts to Closing w/Sarah Romesburg<br>Time: Mar 24, 2022 10:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/82103528110?pwd=QWc2SEdjWlp4ZnZxeERDVnpGQm1aUT09\">https://us02web.zoom.us/j/82103528110?pwd=QWc2SEdjWlp4ZnZxeERDVnpGQm1aUT09</a><br><br>Meeting ID: 821 0352 8110<br>Passcode: 572355<br>One tap mobile<br>+19292056099,,82103528110#,,,,*572355# US (New York)<br>+13017158592,,82103528110#,,,,*572355# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 821 0352 8110<br>Passcode: 572355<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kdSGL8FXg3\">https://us02web.zoom.us/u/kdSGL8FXg3</a><br><br></div></div>','Zoom Link for Contracts to Closing w/Sarah Romesburg - Thurs Mar 24, 2022 10:00 AM','','publish','closed','open','','zoom-link-for-contracts-to-closing-w-sarah-romesburg-thurs-mar-24-2022-1000-am','','','2022-03-24 00:06:02','2022-03-24 00:06:02','',0,'https://lantern-realty.com/?p=2338',0,'post','',0),(2339,6,'2022-03-25 14:07:14','2022-03-25 14:07:14','<div class=\"postie-post\"><div dir=\"ltr\"><div>We have had several agents reach out to us and ask about joining the MLS at the NC coast.  We now have an affiliate office in Raleigh that is a part of the FlexMLS which covers Brunswick County/New Hanover county (Wilmington area) and further north up the coast.  I have attached an MLS map so you can see all of the counties the FLEX MLS covers.  </div><div><br></div><div>Joining this MLS will require you to be a secondary affiliate with Lantern Realty LLC, joining the Neuse River Region Association of Realtors and paying Lantern Realty, LLC&#39;s dues and quarterly fees.  </div><div><br></div><div>If you want access, please let Deana, Paula or myself know.  <font color=\"#888888\" style=\"font-style:italic\"><br clear=\"all\"></font><font color=\"#888888\"><div><br></div></font></div><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/03/MLS-Map.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> MLS-Map.pdf</a><br /></div></div>','NC Coastal MLS','','publish','closed','open','','nc-coastal-mls','','','2022-03-25 14:07:14','2022-03-25 14:07:14','',0,'https://lantern-realty.com/?p=2339',0,'post','',0),(2340,6,'2022-03-25 14:07:14','2022-03-25 14:07:14','','MLS-Map.pdf','','inherit','closed','closed','','mls-map','','','2022-03-25 14:07:14','2022-03-25 14:07:14','',2339,'https://lantern-realty.com/wp-content/uploads/2022/03/MLS-Map.pdf',0,'attachment','application/pdf',0),(2341,0,'2022-03-25 15:16:09','2022-03-25 15:16:09','','Stephanie 066 edit (1)','','inherit','','closed','','stephanie-066-edit-1-2','','','2022-03-25 15:16:09','2022-03-25 15:16:09','',0,'https://lantern-realty.com/stephanie-066-edit-1-2/',0,'attachment','image/jpeg',0),(2342,6,'2022-03-26 15:56:05','2022-03-26 15:56:05','<div class=\"postie-post\"><div dir=\"ltr\">Here is the link, enjoy!<div><br></div><div><a href=\"https://youtu.be/kwguAdBWL0A\">https://youtu.be/kwguAdBWL0A</a><br clear=\"all\"><div><br></div></div>','Contracts to Close class - 3/24/22 by Sarah Romesburg','','publish','closed','open','','contracts-to-close-class-3-24-22-by-sarah-romesburg','','','2022-03-26 15:56:05','2022-03-26 15:56:05','',0,'https://lantern-realty.com/?p=2342',0,'post','',0),(2343,6,'2022-03-29 15:06:49','2022-03-29 15:06:49','<div class=\"postie-post\"><div dir=\"ltr\">Good Morning All, I know this year has been tough on us all with the market being such a challenge.  It&#39;s been on my heart to try and find ways to serve our agents not just professionally but mentally as well.  <div><br></div><div>Here is a very good article I found last night regarding our mental health and ways to improve it, especially through trying times.  </div><div><br></div><div>I believe Lantern has a great support structure for its agents. Lets take advantage of what we have been given.  </div><div><br></div><div><a href=\"https://agentsboost.com/ways-improve-mental-health-realtors/\">https://agentsboost.com/ways-improve-mental-health-realtors/</a><br clear=\"all\"><div><br></div></div>','Realtor Mental Healtgh','','publish','closed','open','','realtor-mental-healtgh','','','2022-03-29 15:06:49','2022-03-29 15:06:49','',0,'https://lantern-realty.com/?p=2343',0,'post','',0),(2344,0,'2022-03-29 15:45:56','2022-03-29 15:45:56','<div class=\"postie-post\"><div dir=\"ltr\">THANK YOU SO MUCH FOR THIS! mental health is huge! Tiffani Cochran is my therapist and we do it online and she&#39;s great! +1 (704) 325-2842 here is her number if you ever want to talk to someone </div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Mar 29, 2022 at 11:02 AM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Good Morning All, I know this year has been tough on us all with the market being such a challenge.  It&#39;s been on my heart to try and find ways to serve our agents not just professionally but mentally as well.  <div><br></div><div>Here is a very good article I found last night regarding our mental health and ways to improve it, especially through trying times.  </div><div><br></div><div>I believe Lantern has a great support structure for its agents. Lets take advantage of what we have been given.  </div><div><br></div><div><a href=\"https://agentsboost.com/ways-improve-mental-health-realtors/\" target=\"_blank\" rel=\"noopener\">https://agentsboost.com/ways-improve-mental-health-realtors/</a><br clear=\"all\"><div><br></div></div>','Realtor Mental Healtgh','','draft','closed','open','','realtor-mental-healtgh','','','2022-03-29 15:45:56','2022-03-29 15:45:56','',0,'https://lantern-realty.com/?p=2344',0,'post','',0),(2345,6,'2022-03-29 20:25:56','2022-03-29 20:25:56','<div class=\"postie-post\"><div dir=\"ltr\">  Here are the steps you need to take to join the FlexMLS through the Neuse River Region Association of Realtors.<div><br></div><div>1. you must go on NCREC.gov and become a secondary affiliate of Lantern Realty, LLC.  Firm # C35364.  You can do this by going to NCREC.gov, go to FORMS tab, Licensee FORMS, choose form 2.08.</div><div><br></div><div><b>NOTE***** you will have to join the Neuse River Realtor Assoc., and Lantern Realty, LLC.  Lantern Realty, LLC is a separate entity from Lantern Realty &amp; Development.  Therefore you will have to pay quarterly dues and transaction fees to Lantern Realty, LLC as well as to Lantern Realty &amp; Development. </b></div><div><br></div><div>2. Once affiliated with Lantern Realty, LLC you need to call the Neuse River Region Association of Realtors (252-63-5364) and join. You will also be responsible for the NRRAR fees and MLS fees.</div><div><br style=\"color:rgb(0,0,0)\"></div><div></div>','NC Coastal MLS','','publish','closed','open','','nc-coastal-mls-2','','','2022-03-29 20:25:56','2022-03-29 20:25:56','',0,'https://lantern-realty.com/?p=2345',0,'post','',0),(2346,9,'2022-03-29 21:05:55','2022-03-29 21:05:55','<div class=\"postie-post\"><div dir=\"ltr\"><div>Here is the class many of you have been asking for - basics of commercial real estate.  There have been many agents lately either asking about commercial real estate and/or starting to work with commercial clients, so here it is......<br><br><b>Topic: Basics of Commercial RE w/Chris Puckett<br>Time: Mar 30, 2022 09:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89276602021?pwd=cEdjc3ZMcFpjYVNjcC9rdWRLSEFkQT09\">https://us02web.zoom.us/j/89276602021?pwd=cEdjc3ZMcFpjYVNjcC9rdWRLSEFkQT09</a><br><br>Meeting ID: 892 7660 2021<br>Passcode: 918041<br>One tap mobile<br>+19292056099,,89276602021#,,,,*918041# US (New York)<br>+13017158592,,89276602021#,,,,*918041# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 892 7660 2021<br>Passcode: 918041<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kCtIkEpBh\">https://us02web.zoom.us/u/kCtIkEpBh</a><br><br></div><div><br></div><br clear=\"all\"><div><br></div></div>','Zoom Link - Basics of Commercial RE w/Chris Puckett Wednesday Mar 30, 2022 09:00 AM','','publish','closed','open','','zoom-link-basics-of-commercial-re-w-chris-puckett-wednesday-mar-30-2022-0900-am','','','2022-03-29 21:05:55','2022-03-29 21:05:55','',0,'https://lantern-realty.com/?p=2346',0,'post','',0),(2347,0,'2022-03-29 23:15:56','2022-03-29 23:15:56','<div class=\"postie-post\"><div dir=\"ltr\"><div class=\"gmail_default\" style=\"font-family:tahoma,sans-serif;font-size:small\">Thank you for this! It is so nice just to hear that someone else besides myself thinks this market is challenging and at times overwhelmingly stressful. Personally, I don&#39;t hear that from other Realtors normally. Thought it was just me, lol! Much appreciated, hope this market changes soon! <br clear=\"all\"></div><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><img src=\"https://drive.google.com/uc?id=1wwOvGKdBeef6tq558BkuyfRPoqnIBh99&amp;export=download\" width=\"420\" height=\"285\"><br></div></div></div><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Tue, Mar 29, 2022 at 11:02 AM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Good Morning All, I know this year has been tough on us all with the market being such a challenge.  It&#39;s been on my heart to try and find ways to serve our agents not just professionally but mentally as well.  <div><br></div><div>Here is a very good article I found last night regarding our mental health and ways to improve it, especially through trying times.  </div><div><br></div><div>I believe Lantern has a great support structure for its agents. Lets take advantage of what we have been given.  </div><div><br></div><div><a href=\"https://agentsboost.com/ways-improve-mental-health-realtors/\" target=\"_blank\" rel=\"noopener\">https://agentsboost.com/ways-improve-mental-health-realtors/</a><br clear=\"all\"><div><br></div></div>','Realtor Mental Healtgh','','draft','closed','open','','realtor-mental-healtgh','','','2022-03-29 23:15:56','2022-03-29 23:15:56','',0,'https://lantern-realty.com/?p=2347',0,'post','',0),(2348,6,'2022-03-30 14:36:00','2022-03-30 14:36:00','<div class=\"postie-post\"><div dir=\"ltr\"><a href=\"https://youtu.be/wcnfAEdl5w8\">https://youtu.be/wcnfAEdl5w8</a><br clear=\"all\"><div><br></div></div>','Basics of Commercial Real Estate class - 3/30/22','','publish','closed','open','','basics-of-commercial-real-estate-class-3-30-22','','','2022-03-30 14:36:00','2022-03-30 14:36:00','',0,'https://lantern-realty.com/?p=2348',0,'post','',0),(2349,6,'2022-03-31 12:25:57','2022-03-31 12:25:57','<div class=\"postie-post\"><div dir=\"ltr\">Starting with our May 1 fees for the Triad MLS, billing will be increased from $55.50 to $60.00 per month.  This is in an attempt to keep our transaction fees as low as possible. If you want to discontinue your Triad MLS membership, let me know immediately.<font color=\"#888888\" style=\"\"><br clear=\"all\"><div><br></div></font><div><br></div></div>','Triad MLS billing','','publish','closed','open','','triad-mls-billing','','','2022-03-31 12:25:57','2022-03-31 12:25:57','',0,'https://lantern-realty.com/?p=2349',0,'post','',0),(2350,6,'2022-04-04 18:26:00','2022-04-04 18:26:00','<div class=\"postie-post\"><div dir=\"ltr\">Good Afternoon, Below are a few notes for the upcoming week.  We have a lot going on!<div><br></div><div>- We are going to be reviving our Lantern Loves charity.  Our next meeting will be 4/28 at 11-12p. </div><div>- Our Ladys of Love meeting on 4/22 has been postponed.  We will get back with a rescheduled date ASAP.</div><div>- We have had several agents reach out to us and ask about joining the MLS at the NC coast.  We now have an affiliate office in Raleigh that is a part of the FlexMLS which covers Brunswick County/New Hanover county (Wilmington area) and further north up the coast.  I have attached an MLS map so you can see all of the counties the FLEX MLS covers.  </div><div>Joining this MLS will require you to be a secondary affiliate with Lantern Realty LLC, joining the Neuse River Region Association of Realtors and paying Lantern Realty, LLC&#39;s dues and quarterly fees.  </div><div>- We only have a few dates left to use our Cannon Ballers suite. Right now we have 5/8, 7/, 7/27 and 9/7 available.  First come, first serve.  </div><div>- We had a meeting recently regarding Team Building.  Our next meeting to draft the team document agreement will be 4/26 at 11am at the Kannapolis office and via zoom. </div><div>- Lastly, I have attached a copy of our current roster and class schedule.  We have added some new classes that were requested. One will be on \"Air BnB&#39;s\" hosted by Emily Chandler and myself.  Next I will be hosting a commercial class on 4/28.  This class will deal with commercial buyers and how to deal with those that are looking to buy, retrofit or build.</div><div><br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/LRD-Roster_012422.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_012422.xlsx</a><br /></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-41','','','2022-04-04 18:26:01','2022-04-04 18:26:01','',0,'https://lantern-realty.com/?p=2350',0,'post','',0),(2351,6,'2022-04-04 18:26:00','2022-04-04 18:26:00','','LRD-Roster_012422.xlsx','','inherit','closed','closed','','lrd-roster_012422-2','','','2022-04-04 18:26:00','2022-04-04 18:26:00','',2350,'https://lantern-realty.com/wp-content/uploads/2022/04/LRD-Roster_012422.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2352,9,'2022-04-06 00:56:03','2022-04-06 00:56:03','<div class=\"postie-post\"><div dir=\"ltr\"><div>Please join Lantern Realty for our team meeting - Zoom link is below<br><br><b>Topic: Lantern Realty Team Meeting<br>Time: Apr 6, 2022 11:00 AM Eastern Time (US and Canada)<br></b><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/84382456867?pwd=Z21qMHgxemcwM0F5bXBPQzF2amtvUT09\">https://us02web.zoom.us/j/84382456867?pwd=Z21qMHgxemcwM0F5bXBPQzF2amtvUT09</a><br><br>Meeting ID: 843 8245 6867<br>Passcode: 860497<br>One tap mobile<br>+19292056099,,84382456867#,,,,*860497# US (New York)<br>+13017158592,,84382456867#,,,,*860497# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 843 8245 6867<br>Passcode: 860497<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kb49b4Xk9y\">https://us02web.zoom.us/u/kb49b4Xk9y</a><br><br></div><br clear=\"all\"><div><br></div></div>','Lantern Realty Team Meeting Zoom Invite - Wednesday April 6 at 11:00 AM','','publish','closed','open','','lantern-realty-team-meeting-zoom-invite-wednesday-april-6-at-1100-am','','','2022-04-06 00:56:03','2022-04-06 00:56:03','',0,'https://lantern-realty.com/?p=2352',0,'post','',0),(2353,9,'2022-04-06 01:06:00','2022-04-06 01:06:00','<div class=\"postie-post\"><div dir=\"ltr\"><b>Please Note - Updated Education Calendar Attached as of April 5th.... had a couple changes to make.</b></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Apr 4, 2022 at 2:16 PM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Good Afternoon, Below are a few notes for the upcoming week.  We have a lot going on!<div><br></div><div>- We are going to be reviving our Lantern Loves charity.  Our next meeting will be 4/28 at 11-12p. </div><div>- Our Ladys of Love meeting on 4/22 has been postponed.  We will get back with a rescheduled date ASAP.</div><div>- We have had several agents reach out to us and ask about joining the MLS at the NC coast.  We now have an affiliate office in Raleigh that is a part of the FlexMLS which covers Brunswick County/New Hanover county (Wilmington area) and further north up the coast.  I have attached an MLS map so you can see all of the counties the FLEX MLS covers.  </div><div>Joining this MLS will require you to be a secondary affiliate with Lantern Realty LLC, joining the Neuse River Region Association of Realtors and paying Lantern Realty, LLC&#39;s dues and quarterly fees.  </div><div>- We only have a few dates left to use our Cannon Ballers suite. Right now we have 5/8, 7/, 7/27 and 9/7 available.  First come, first serve.  </div><div>- We had a meeting recently regarding Team Building.  Our next meeting to draft the team document agreement will be 4/26 at 11am at the Kannapolis office and via zoom. </div><div>- Lastly, I have attached a copy of our current roster and class schedule.  We have added some new classes that were requested. One will be on \"Air BnB&#39;s\" hosted by Emily Chandler and myself.  Next I will be hosting a commercial class on 4/28.  This class will deal with commercial buyers and how to deal with those that are looking to buy, retrofit or build.</div><div><br clear=\"all\"><div><br></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-42','','','2022-04-06 01:06:00','2022-04-06 01:06:00','',0,'https://lantern-realty.com/?p=2353',0,'post','',0),(2354,9,'2022-04-06 16:06:07','2022-04-06 16:06:07','<div class=\"postie-post\"><div dir=\"ltr\">Lunch n Learn reminder and Zoom link for Thursday April 7 at 11 am. See you there!!<div><br><b>Topic: Income Protection<br>Time: Apr 7, 2022 11:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/86585414011?pwd=TGxPa0JuMktkM054c2k0ck9FRHpRQT09\">https://us02web.zoom.us/j/86585414011?pwd=TGxPa0JuMktkM054c2k0ck9FRHpRQT09</a><br><br>Meeting ID: 865 8541 4011<br>Passcode: 111954<br>One tap mobile<br>+19292056099,,86585414011#,,,,*111954# US (New York)<br>+13017158592,,86585414011#,,,,*111954# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 865 8541 4011<br>Passcode: 111954<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kgqHPtygv\">https://us02web.zoom.us/u/kgqHPtygv</a><br><br><div><br></div></div>','Lantern Realty Lunch n Learn Zoom Link Thursday April 7 at 11 am','','publish','closed','open','','lantern-realty-lunch-n-learn-zoom-link-thursday-april-7-at-11-am','','','2022-04-06 16:06:07','2022-04-06 16:06:07','',0,'https://lantern-realty.com/?p=2354',0,'post','',0),(2355,0,'2022-04-07 20:34:14','2022-04-07 20:34:14','','Jessica_Eudy','','inherit','closed','closed','','img_7616','','','2022-06-24 00:29:09','2022-06-24 00:29:09','',0,'https://lantern-realty.com/img_7616/',0,'attachment','image/jpeg',0),(2356,6,'2022-04-12 12:25:58','2022-04-12 12:25:58','<div class=\"postie-post\"><div dir=\"ltr\"><a href=\"https://youtu.be/BUoAarsxQTY\">https://youtu.be/BUoAarsxQTY</a><br clear=\"all\"><div><br></div></div>','Land Class - Amanda Lambert','','publish','closed','open','','land-class-amanda-lambert','','','2022-04-12 12:25:58','2022-04-12 12:25:58','',0,'https://lantern-realty.com/?p=2356',0,'post','',0),(2357,9,'2022-04-14 13:16:05','2022-04-14 13:16:05','<div class=\"postie-post\"><div dir=\"ltr\">Good Morning Lantern Agents - Below is the link for today&#39;s House Flipping class with Chris - In-person and Zoom. We will record it and get it out at a later date for those that cannot attend.<br clear=\"all\"><div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br><b>Topic: House Flipping 101<br>Time: Apr 14, 2022 11:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89639045036?pwd=RVlTTk55c2J0d1hhQUkxQ2FIOG11UT09\">https://us02web.zoom.us/j/89639045036?pwd=RVlTTk55c2J0d1hhQUkxQ2FIOG11UT09</a><br><br>Meeting ID: 896 3904 5036<br>Passcode: 896563<br>One tap mobile<br>+13126266799,,89639045036#,,,,*896563# US (Chicago)<br>+19292056099,,89639045036#,,,,*896563# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 896 3904 5036<br>Passcode: 896563<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kcRiqIk3oF\">https://us02web.zoom.us/u/kcRiqIk3oF</a><br><br></div><div><br></div></div>','Lantern Realty Zoom Meeting Invite: House Flipping 101 - Apr 14, 2022 11:00 AM','','publish','closed','open','','lantern-realty-zoom-meeting-invite-house-flipping-101-apr-14-2022-1100-am','','','2022-04-14 13:16:05','2022-04-14 13:16:05','',0,'https://lantern-realty.com/?p=2357',0,'post','',0),(2418,6,'2022-04-25 16:36:13','2022-04-25 16:36:13','<div class=\"postie-post\"><div dir=\"ltr\">Good Monday!!!! Here are a few notes to start your week....<div><br></div><div>- A lot of classes and meetings this week.</div><div>   *** 4/26, 945am - Tuesday morning Think Tank. Kannapolis Office. - always valuable!</div><div>   *** 4/26, 11am - Team Build Meeting.  Kannapolis office. We will be meeting to build a document to serve all teams within Lantern and fully spell out leader/agent responsibilities. </div><div>   *** 4/27, 9am - Tru Homes \"Building on Your Land\". Kannapolis/Zoom</div><div>   *** 4/28, 9am - Basics of Commercial Real Estate - Working w/ Buyers. Kannapolis/Zoom.</div><div>- In our continued effort to offset ever increasing cost. We are discontinuing the bonus for bringing on new agents as of today.  </div><div>- For those that are members of WSRAR and Triad MLS, here is a good resource for Realtor safety!<br></div><div><br></div><div><span style=\"font-family:Helvetica;font-size:15px;color:rgb(0,0,0)\"><strong><em>The Safe Selling Series is back!</em></strong><br><br>Use the links below to sign up for the 5-part Safe Selling Series from Real Safe Agent at no charge to you.  <br><br>We will be discussing topics from understanding the types of crimes and criminals that agents are at greatest risk from, to making yourself less attractive to criminals and using a safe showing method to minimize risk.<br><br>Links, dates and times are below:</span><br style=\"color:rgb(96,96,96);font-family:Helvetica;font-size:15px\"><span style=\"font-family:Helvetica;font-size:15px;color:rgb(165,42,42)\"><strong>Part 1 – Understanding Crime and Criminals – April 25<sup>th</sup> @ 11am Eastern</strong></span><br style=\"color:rgb(96,96,96);font-family:Helvetica;font-size:15px\"><a href=\"https://wsrar.us5.list-manage.com/track/click?u=836e5296ac5d70d024cecec6d&amp;id=c458d24fbc&amp;e=2359413fad\" title=\"https://attendee.gotowebinar.com/rt/7921617754686028302\" target=\"_blank\" style=\"color:rgb(66,186,216);font-weight:bold;text-decoration-line:none;font-family:Helvetica;font-size:15px\" rel=\"noopener\">https://attendee.gotowebinar.com/rt/7921617754686028302</a><br style=\"color:rgb(96,96,96);font-family:Helvetica;font-size:15px\"><span style=\"font-family:Helvetica;font-size:15px;color:rgb(165,42,42)\"><strong>Part 2 – Reducing the Risk of being Targeted – April 26<sup>th</sup> @ 11am Eastern</strong></span><br style=\"color:rgb(96,96,96);font-family:Helvetica;font-size:15px\"><a href=\"https://wsrar.us5.list-manage.com/track/click?u=836e5296ac5d70d024cecec6d&amp;id=03420070b5&amp;e=2359413fad\" title=\"https://attendee.gotowebinar.com/rt/2564512330649660430\" target=\"_blank\" style=\"color:rgb(66,186,216);font-weight:bold;text-decoration-line:none;font-family:Helvetica;font-size:15px\" rel=\"noopener\">https://attendee.gotowebinar.com/rt/2564512330649660430</a><br style=\"color:rgb(96,96,96);font-family:Helvetica;font-size:15px\"><span style=\"font-family:Helvetica;font-size:15px;color:rgb(165,42,42)\"><strong>Part 3 – Pre-showing – April 27<sup>th</sup> @ 11am Eastern</strong></span><br style=\"color:rgb(96,96,96);font-family:Helvetica;font-size:15px\"><a href=\"https://wsrar.us5.list-manage.com/track/click?u=836e5296ac5d70d024cecec6d&amp;id=3557b8c994&amp;e=2359413fad\" title=\"https://attendee.gotowebinar.com/rt/3484853041121593358\" target=\"_blank\" style=\"color:rgb(66,186,216);font-weight:bold;text-decoration-line:none;font-family:Helvetica;font-size:15px\" rel=\"noopener\">https://attendee.gotowebinar.com/rt/3484853041121593358</a><br style=\"color:rgb(96,96,96);font-family:Helvetica;font-size:15px\"><span style=\"font-family:Helvetica;font-size:15px;color:rgb(178,34,34)\"><strong>Part 4 – Showing Safely – April 28<sup>th</sup> @ 11am Eastern</strong></span><br style=\"color:rgb(96,96,96);font-family:Helvetica;font-size:15px\"><a href=\"https://wsrar.us5.list-manage.com/track/click?u=836e5296ac5d70d024cecec6d&amp;id=6251359d5f&amp;e=2359413fad\" title=\"https://attendee.gotowebinar.com/rt/4754326076807628046\" target=\"_blank\" style=\"color:rgb(66,186,216);font-weight:bold;text-decoration-line:none;font-family:Helvetica;font-size:15px\" rel=\"noopener\">https://attendee.gotowebinar.com/rt/4754326076807628046</a><br style=\"color:rgb(96,96,96);font-family:Helvetica;font-size:15px\"><span style=\"font-family:Helvetica;font-size:15px;color:rgb(178,34,34)\"><strong>Part 5 – Reading the Prospect – April 29<sup>th</sup> @ 11am Eastern</strong></span><br style=\"color:rgb(96,96,96);font-family:Helvetica;font-size:15px\"><a href=\"https://wsrar.us5.list-manage.com/track/click?u=836e5296ac5d70d024cecec6d&amp;id=fc24203b99&amp;e=2359413fad\" title=\"https://attendee.gotowebinar.com/rt/1393586323138247182\" target=\"_blank\" style=\"color:rgb(66,186,216);font-weight:bold;text-decoration-line:none;font-family:Helvetica;font-size:15px\" rel=\"noopener\">https://attendee.gotowebinar.com/rt/1393586323138247182</a><br></div><div><br clear=\"all\"><div><br></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-46','','','2022-04-25 16:36:13','2022-04-25 16:36:13','',0,'https://lantern-realty.com/?p=2418',0,'post','',0),(2360,10,'2022-04-14 16:40:55','2022-04-14 16:40:55','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-houzez','','','2022-04-14 16:40:55','2022-04-14 16:40:55','',0,'https://lantern-realty.com/wp-global-styles-houzez/',0,'wp_global_styles','',0),(2361,6,'2022-04-14 17:55:57','2022-04-14 17:55:57','<div class=\"postie-post\"><div dir=\"ltr\">See link to the class below.<div><br></div><div><a href=\"https://youtu.be/WEvBF6oGeL0\">https://youtu.be/WEvBF6oGeL0</a><br clear=\"all\"><div><br></div></div>','House Flipping 101','','publish','closed','open','','house-flipping-101','','','2022-04-14 17:55:57','2022-04-14 17:55:57','',0,'https://lantern-realty.com/?p=2361',0,'post','',0),(2638,6,'2022-05-03 13:46:02','2022-05-03 13:46:02','<div class=\"postie-post\"><div dir=\"ltr\">Good Morning, dont forget about Nic Lovelace&#39;s class today in the Kannapolis office at 3pm.  The class is Deposits, Terminations &amp; Disputes.  Make sure you attend!  <br clear=\"all\"><div><br></div></div>','Deposits, Terminations &amp; Disputes Class','','publish','closed','open','','deposits-terminations-disputes-class','','','2022-05-03 13:46:02','2022-05-03 13:46:02','',0,'https://lantern-realty.com/?p=2638',0,'post','',0),(2366,9,'2022-04-18 19:16:02','2022-04-18 19:16:02','<div class=\"postie-post\"><div dir=\"ltr\">A few more upcoming dates to make note of:  <div><br><div>April 27 at 9am - \"Build on your land,w/TrueHomes\" did you know True Homes will build on your clients personal plot of land?  Your client is not restricted to buying a home in one of their communities. We have a True Homes rep that will tell us about their program and how it works for your client. This could be a great alternative for your clients needs. Class will be in Kannapolis and via Zoom</div><div><br></div><div>April 28 at 10 am - Basics of Commercial - Working with Buyer Clients at Kannapolis and Zoom</div><div>And same day at 11 am - Lantern Loves meeting to discuss our charity and volunteer ideas</div><div><br></div><div>May 3rd at 3 pm - \"Deposits/Terminations/Disputes\" with Nick Lovelace from Knipp Law  in person at Kannapolis, please come in person if at all possible. It will be on Zoom for those too far to join us.</div><div><br></div><div>May 4 at 11 am - Lantern Realty Team Meeting</div><div><br></div><div><br></div><div><br></div></div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, Apr 18, 2022 at 2:20 PM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Good Afternoon, I hope everyone had a great weekend.  Here are a few notes as we head into the week.  <div><br></div><div>- We have a few dates available for the Cannon Ballers suites.  5/8, 7/8 and 7/27 are still available.  Food is not included.  There are 16 tickets per game.  Cost is $500.</div><div><br></div><div>- The owners and BIC&#39;s had a meeting with the legal counsel of the NCREC last week.  We were able to get good information from her.  We will be passing this along to our offices soon.  Keep an eye out for that information to come across your inbox. </div><div><br></div><div>- Ladies of Lantern was rescheduled to 5/19.  </div><div><br></div><div>- Your quarterly invoices will be sent out this week, due on 5/1/22.  <br><div><br></div><div>- Lastly, our Tuesday Think Tank tomorrow will be at 945.  Joy Kiser with First American will be bringing breakfast!  So make sure you attend.  <br clear=\"all\"><div><br></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-44','','','2022-04-18 19:16:02','2022-04-18 19:16:02','',0,'https://lantern-realty.com/?p=2366',0,'post','',0),(2365,6,'2022-04-18 18:26:18','2022-04-18 18:26:18','<div class=\"postie-post\"><div dir=\"ltr\">Good Afternoon, I hope everyone had a great weekend.  Here are a few notes as we head into the week.  <div><br></div><div>- We have a few dates available for the Cannon Ballers suites.  5/8, 7/8 and 7/27 are still available.  Food is not included.  There are 16 tickets per game.  Cost is $500.</div><div><br></div><div>- The owners and BIC&#39;s had a meeting with the legal counsel of the NCREC last week.  We were able to get good information from her.  We will be passing this along to our offices soon.  Keep an eye out for that information to come across your inbox. </div><div><br></div><div>- Ladies of Lantern was rescheduled to 5/19.  </div><div><br></div><div>- Your quarterly invoices will be sent out this week, due on 5/1/22.  <br><div><br></div><div>- Lastly, our Tuesday Think Tank tomorrow will be at 945.  Joy Kiser with First American will be bringing breakfast!  So make sure you attend.  <br clear=\"all\"><div><br></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-43','','','2022-04-18 18:26:18','2022-04-18 18:26:18','',0,'https://lantern-realty.com/?p=2365',0,'post','',0),(2367,8,'2022-04-18 19:26:03','2022-04-18 19:26:03','<div class=\"postie-post\"><div>  Ladies of&nbsp;Lantern event will be held at Kannapolis City hall on May 19th! More information will be provided!&nbsp;<br><br><br><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><b style=\"word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">Paula G Severt</i></b>&nbsp;<img title=\"Emoji\" alt=\"Emoji\" class=\"yiv2427752816ydpc53d7409yahoo-emoji-wrapper\" height=\"16\" src=\"https://s.yimg.com/nq/yemoji_assets/latest/yemoji_assets/1f3e1.png\" width=\"16\" style=\"padding: 0px 2px; vertical-align: middle; word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" dir=\"ltr\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><span style=\"word-wrap: break-word !important;\">Owner, Broker/ Realtor®</span><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><a href=\"http://lantern-realty.com/\" style=\"-webkit-tap-highlight-color: initial; word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">lantern-realty.com</a><br style=\"word-wrap: break-word !important;\"></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Lantern Realty and Development LLC</div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\"><i style=\"word-wrap: break-word !important;\">\"Let Us Guide You Home\"</i></div><div class=\"yiv2427752816ydpc813d459signature\" style=\"font-size: 16px; -webkit-text-size-adjust: auto; font-family: \"new times\", serif; word-wrap: break-word !important;\">Cell&nbsp;<a href=\"tel:704-232-3433\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/1\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">704-232-3433</a><br style=\"word-wrap: break-word !important;\">Office&nbsp;<a href=\"tel:704-298-0087\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"telephone\" x-apple-data-detectors-result=\"3/2\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; text-decoration-color: rgba(128, 128, 128, 0.38); word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">704-298-0087</a><br style=\"word-wrap: break-word !important;\">eMail Signature<br style=\"word-wrap: break-word !important;\"><br style=\"word-wrap: break-word !important;\">NOTE: BUYERS and SELLERS, NC real estate agents are required&nbsp;by law&nbsp;to provide&nbsp;the&nbsp;\"Working with Real Estate Agents Brochure\"&nbsp;Until you have been informed, please do not discuss any confidential information/details of your transaction without understanding if the agent you are speaking with will be working FOR you as YOUR agent or if they are working WITH you as an agent for another party. If an agent is not representing you, nothing you share is required to remain confidential potentially minimizing your negotiating ability. click link for a copy of this brochure.&nbsp;<br style=\"word-wrap: break-word !important;\"><a href=\"http://www.ncrec.gov/Brochures/WorkingwAgents.pdf\" dir=\"ltr\" x-apple-data-detectors=\"true\" x-apple-data-detectors-type=\"link\" x-apple-data-detectors-result=\"4\" style=\"color: currentcolor; -webkit-tap-highlight-color: initial; word-wrap: break-word !important;\" target=\"_blank\" rel=\"noreferrer noopener\">http://www.ncrec.gov/Brochures/WorkingwAgents.pdf</a>&nbsp;<br style=\"word-wrap: break-word !important;\">This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. If you are not the intended recipient you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited</div><br><p class=\"yahoo-quoted-begin\" style=\"font-size: 15px; color: #715FFA; padding-top: 15px; margin-top: 0\">On Monday, April 18, 2022, 3:15 PM, Melissa Jackling &lt;<a href=\"mailto:onlymyrealtormelissa@gmail.com&gt\" >onlymyrealtormelissa@gmail.com&gt</a>; wrote:</p><blockquote class=\"iosymail\"><div id=\"yiv4915002073\"><div><div dir=\"ltr\">A few more upcoming dates to make note of:&nbsp;&nbsp;<div><br clear=\"none\"><div>April 27 at 9am - \"Build on your land,w/TrueHomes\" did you know True Homes will build on your clients personal plot of land?&nbsp; Your client is not restricted to buying a home in one of their communities. We have a True Homes rep that will tell us about their program and how it works for your client. This could be a great alternative for your clients needs. Class will be in Kannapolis and via Zoom</div><div><br clear=\"none\"></div><div>April 28 at 10 am - Basics of Commercial - Working with Buyer Clients at Kannapolis and Zoom</div><div>And same day at 11 am - Lantern Loves meeting to discuss our charity and volunteer ideas</div><div><br clear=\"none\"></div><div>May 3rd at 3 pm - \"Deposits/Terminations/Disputes\" with Nick Lovelace from Knipp Law&nbsp; in person at Kannapolis, please come in person if at all possible. It will be on Zoom for those too far to join us.</div><div><br clear=\"none\"></div><div>May 4 at 11 am - Lantern Realty Team Meeting</div><div><br clear=\"none\"></div><div><br clear=\"none\"></div><div><br clear=\"none\"></div></div></div><br clear=\"none\"><div id=\"yiv4915002073yqt22825\" class=\"yiv4915002073yqt6193841223\"><div class=\"yiv4915002073gmail_quote\"><div dir=\"ltr\" class=\"yiv4915002073gmail_attr\">On Mon, Apr 18, 2022 at 2:20 PM Chris Puckett &lt;<a shape=\"rect\" ymailto=\"mailto:ch2realty@gmail.com\" href=\"mailto:<a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a>\" target=\"_blank\" rel=\"noreferrer noopener\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br clear=\"none\"></div><blockquote style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex;\" class=\"yiv4915002073gmail_quote\"><div dir=\"ltr\">Good Afternoon, I hope everyone had a&nbsp;great weekend.&nbsp; Here are a few notes as we head into the week.&nbsp;&nbsp;<div><br clear=\"none\"></div><div>- We have a few dates available for the Cannon Ballers suites.&nbsp; 5/8, 7/8 and 7/27 are still available.&nbsp; Food is not included.&nbsp; There are 16 tickets per game.&nbsp; Cost is $500.</div><div><br clear=\"none\"></div><div>- The owners and BIC\'s had a meeting with the legal counsel of the NCREC last week.&nbsp; We were able to get good information from her.&nbsp; We will be passing this along to our offices soon.&nbsp; Keep an eye out for that information to come across your inbox.&nbsp;</div><div><br clear=\"none\"></div><div>- Ladies of Lantern was rescheduled to 5/19.&nbsp;&nbsp;</div><div><br clear=\"none\"></div><div>- Your quarterly invoices will be sent out this week, due on 5/1/22.&nbsp;&nbsp;<br clear=\"none\"><div><br clear=\"none\"></div><div>- Lastly, our Tuesday Think Tank tomorrow will be at 945.&nbsp; Joy Kiser with First American will be bringing breakfast!&nbsp; So make sure you attend.&nbsp;&nbsp;<br clear=\"all\"><div><br clear=\"none\"></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-45','','','2022-04-18 19:26:03','2022-04-18 19:26:03','',0,'https://lantern-realty.com/?p=2367',0,'post','',0),(2369,1,'2022-04-20 01:02:15','2022-04-20 01:02:15','','Lantern','','inherit','closed','closed','','lantern_3_rev_logo-4','','','2022-04-20 01:02:44','2022-04-20 01:02:44','',0,'https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO.jpg',0,'attachment','image/jpeg',0),(2665,9,'2022-05-24 14:56:02','2022-05-24 14:56:02','<div class=\"postie-post\"><div dir=\"ltr\">There is a lot of talk about AirBnBs, join us this Wednesday May 25th and bring your questions. \r\nBoth Zoom and in the Kannapolis office<div><br><b>Topic: AirBnB with Emily and Chris<br>Time: May 25, 2022 10:00 AM Eastern Time (US and Canada)<br></b><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/85023218487?pwd=MVhuUUp2R2JjSXIveDFSWGtqZjFzUT09\">https://us02web.zoom.us/j/85023218487?pwd=MVhuUUp2R2JjSXIveDFSWGtqZjFzUT09</a><br><br>Meeting ID: 850 2321 8487<br>Passcode: 217107<br>One tap mobile<br>+13017158592,,85023218487#,,,,*217107# US (Washington DC)<br>+13126266799,,85023218487#,,,,*217107# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 850 2321 8487<br>Passcode: 217107<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kedS8iFyzZ\">https://us02web.zoom.us/u/kedS8iFyzZ</a><br><br><div><br></div></div>','Zoom Link for Lantern Realty - AirBnB class with Emily and Chris - Wednesday, May 25, 2022 10:00 AM','','publish','closed','open','','zoom-link-for-lantern-realty-airbnb-class-with-emily-and-chris-wednesday-may-25-2022-1000-am','','','2022-05-24 14:56:02','2022-05-24 14:56:02','',0,'https://lantern-realty.com/?p=2665',0,'post','',0),(2370,1,'2022-04-20 01:14:58','2022-04-20 01:14:58','','Lantern - Tennessee','','publish','closed','closed','','lantern-tennessee','','','2022-05-26 00:46:32','2022-05-26 00:46:32','',0,'https://lantern-realty.com/?post_type=houzez_agency&#038;p=2370',0,'houzez_agency','',0),(2371,1,'2022-04-20 01:16:59','2022-04-20 01:16:59','','Lantern - Raleigh','','publish','closed','closed','','lantern-raleigh','','','2022-04-20 01:19:18','2022-04-20 01:19:18','',0,'https://lantern-realty.com/?post_type=houzez_agency&#038;p=2371',0,'houzez_agency','',0),(2372,1,'2022-04-20 01:30:08','2022-04-20 01:30:08','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:30:08','2022-04-20 01:30:08','',1279,'https://lantern-realty.com/?p=2372',0,'revision','',0),(2373,1,'2022-04-20 01:30:08','2022-04-20 01:30:08','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n					<a href=\"tel:9803184961\">						\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n					<a href=\"tel:7042980087\">						\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:contact@lantern-realty.com\">						\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:30:08','2022-04-20 01:30:08','',1279,'https://lantern-realty.com/?p=2373',0,'revision','',0),(2597,1,'2022-04-30 21:50:07','2022-04-30 21:50:07','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:50:07','2022-04-30 21:50:07','',1279,'https://lantern-realty.com/?p=2597',0,'revision','',0),(2593,1,'2022-04-30 21:48:08','2022-04-30 21:48:08','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:48:08','2022-04-30 21:48:08','',1279,'https://lantern-realty.com/?p=2593',0,'revision','',0);
INSERT INTO `lrwp_posts` VALUES (2589,1,'2022-04-30 21:45:53','2022-04-30 21:45:53','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:45:53','2022-04-30 21:45:53','',1279,'https://lantern-realty.com/?p=2589',0,'revision','',0),(2585,1,'2022-04-30 21:41:26','2022-04-30 21:41:26','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:41:26','2022-04-30 21:41:26','',1279,'https://lantern-realty.com/?p=2585',0,'revision','',0),(2581,1,'2022-04-30 21:38:28','2022-04-30 21:38:28','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:38:28','2022-04-30 21:38:28','',1279,'https://lantern-realty.com/?p=2581',0,'revision','',0),(2506,1,'2022-04-30 19:25:41','2022-04-30 19:25:41','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:25:41','2022-04-30 19:25:41','',1279,'https://lantern-realty.com/?p=2506',0,'revision','',0),(2503,1,'2022-04-30 19:22:16','2022-04-30 19:22:16','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:22:16','2022-04-30 19:22:16','',1279,'https://lantern-realty.com/?p=2503',0,'revision','',0),(2500,1,'2022-04-30 19:18:43','2022-04-30 19:18:43','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:18:43','2022-04-30 19:18:43','',1279,'https://lantern-realty.com/?p=2500',0,'revision','',0),(2374,1,'2022-04-20 01:30:09','2022-04-20 01:30:09','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:30:09','2022-04-20 01:30:09','',1279,'https://lantern-realty.com/?p=2374',0,'revision','',0),(2375,1,'2022-04-20 01:31:59','2022-04-20 01:31:59','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:31:59','2022-04-20 01:31:59','',1279,'https://lantern-realty.com/?p=2375',0,'revision','',0),(2376,1,'2022-04-20 01:31:59','2022-04-20 01:31:59','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:31:59','2022-04-20 01:31:59','',1279,'https://lantern-realty.com/?p=2376',0,'revision','',0),(2497,1,'2022-04-30 19:16:26','2022-04-30 19:16:26','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:16:26','2022-04-30 19:16:26','',1279,'https://lantern-realty.com/?p=2497',0,'revision','',0),(2377,1,'2022-04-20 01:32:00','2022-04-20 01:32:00','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:32:00','2022-04-20 01:32:00','',1279,'https://lantern-realty.com/?p=2377',0,'revision','',0),(2378,1,'2022-04-20 01:32:22','2022-04-20 01:32:22','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:32:22','2022-04-20 01:32:22','',1279,'https://lantern-realty.com/?p=2378',0,'revision','',0),(2379,1,'2022-04-20 01:32:22','2022-04-20 01:32:22','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:32:22','2022-04-20 01:32:22','',1279,'https://lantern-realty.com/?p=2379',0,'revision','',0),(2380,1,'2022-04-20 01:32:23','2022-04-20 01:32:23','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:32:23','2022-04-20 01:32:23','',1279,'https://lantern-realty.com/?p=2380',0,'revision','',0),(2381,1,'2022-04-20 01:33:14','2022-04-20 01:33:14','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:33:14','2022-04-20 01:33:14','',1279,'https://lantern-realty.com/?p=2381',0,'revision','',0),(2382,1,'2022-04-20 01:33:14','2022-04-20 01:33:14','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:33:14','2022-04-20 01:33:14','',1279,'https://lantern-realty.com/?p=2382',0,'revision','',0),(2383,1,'2022-04-20 01:33:14','2022-04-20 01:33:14','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:33:14','2022-04-20 01:33:14','',1279,'https://lantern-realty.com/?p=2383',0,'revision','',0),(2384,1,'2022-04-20 01:33:51','2022-04-20 01:33:51','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:33:51','2022-04-20 01:33:51','',1279,'https://lantern-realty.com/?p=2384',0,'revision','',0),(2385,1,'2022-04-20 01:33:51','2022-04-20 01:33:51','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:33:51','2022-04-20 01:33:51','',1279,'https://lantern-realty.com/?p=2385',0,'revision','',0),(2386,1,'2022-04-20 01:33:52','2022-04-20 01:33:52','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:33:52','2022-04-20 01:33:52','',1279,'https://lantern-realty.com/?p=2386',0,'revision','',0),(2387,1,'2022-04-20 01:34:44','2022-04-20 01:34:44','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:34:44','2022-04-20 01:34:44','',1279,'https://lantern-realty.com/?p=2387',0,'revision','',0),(2388,1,'2022-04-20 01:34:44','2022-04-20 01:34:44','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:34:44','2022-04-20 01:34:44','',1279,'https://lantern-realty.com/?p=2388',0,'revision','',0),(2389,1,'2022-04-20 01:34:45','2022-04-20 01:34:45','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-20 01:34:45','2022-04-20 01:34:45','',1279,'https://lantern-realty.com/?p=2389',0,'revision','',0),(2390,1,'2022-04-20 01:37:09','2022-04-20 01:37:09','<h2>Lantern Realty  -  Lexington Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\">								</a>\n<ul>\n 	<li>\n										105 N State Street, Lexington NC 27293</li>\n 	<li>\n											<a href=\"tel:7047547104\">\n(704) 754-7104\n</a></li>\n 	<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\ncsloansellshomes@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:7047547104\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 N State Street, Lexington NC 27293\" aria-label=\"105 N State Street, Lexington NC 27293\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:7047547104\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Lexington Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nStephanie Knight is a seasoned Realtor born and raised in the Triad. She is...\n<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Lexington','','publish','closed','closed','','lantern-lexington','','','2022-04-20 02:01:28','2022-04-20 02:01:28','',1279,'https://lantern-realty.com/?page_id=2390',0,'page','',0),(2415,1,'2022-04-20 02:01:28','2022-04-20 02:01:28','<h2>Lantern Realty  -  Lexington Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\">								</a>\n<ul>\n 	<li>\n										105 N State Street, Lexington NC 27293</li>\n 	<li>\n											<a href=\"tel:7047547104\">\n(704) 754-7104\n</a></li>\n 	<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\ncsloansellshomes@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:7047547104\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"105 N State Street, Lexington NC 27293\" aria-label=\"105 N State Street, Lexington NC 27293\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:7047547104\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Lexington Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nStephanie Knight is a seasoned Realtor born and raised in the Triad. She is...\n<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Lexington','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 02:01:28','2022-04-20 02:01:28','',2390,'https://lantern-realty.com/?p=2415',0,'revision','',0),(2391,1,'2022-04-20 01:47:05','2022-04-20 01:47:05','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:47:05','2022-04-20 01:47:05','',2390,'https://lantern-realty.com/?p=2391',0,'revision','',0),(2392,1,'2022-04-20 01:47:05','2022-04-20 01:47:05','<h2>Lantern Realty  - Asheville Office</h2>		\n											<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n					<a href=\"tel:8287720220\">						\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">						\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>		\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:47:05','2022-04-20 01:47:05','',2390,'https://lantern-realty.com/?p=2392',0,'revision','',0),(2393,1,'2022-04-20 01:47:06','2022-04-20 01:47:06','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:47:06','2022-04-20 01:47:06','',2390,'https://lantern-realty.com/?p=2393',0,'revision','',0),(2394,1,'2022-04-20 01:49:03','2022-04-20 01:49:03','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:49:03','2022-04-20 01:49:03','',2390,'https://lantern-realty.com/?p=2394',0,'revision','',0),(2395,1,'2022-04-20 01:49:03','2022-04-20 01:49:03','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:49:03','2022-04-20 01:49:03','',2390,'https://lantern-realty.com/?p=2395',0,'revision','',0),(2399,1,'2022-04-20 01:49:34','2022-04-20 01:49:34','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:49:34','2022-04-20 01:49:34','',2390,'https://lantern-realty.com/?p=2399',0,'revision','',0),(2396,1,'2022-04-20 01:49:03','2022-04-20 01:49:03','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:49:03','2022-04-20 01:49:03','',2390,'https://lantern-realty.com/?p=2396',0,'revision','',0),(2397,1,'2022-04-20 01:49:34','2022-04-20 01:49:34','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:49:34','2022-04-20 01:49:34','',2390,'https://lantern-realty.com/?p=2397',0,'revision','',0),(2398,1,'2022-04-20 01:49:34','2022-04-20 01:49:34','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:49:34','2022-04-20 01:49:34','',2390,'https://lantern-realty.com/?p=2398',0,'revision','',0),(2400,1,'2022-04-20 01:49:42','2022-04-20 01:49:42','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:49:42','2022-04-20 01:49:42','',2390,'https://lantern-realty.com/?p=2400',0,'revision','',0),(2401,1,'2022-04-20 01:49:42','2022-04-20 01:49:42','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:49:42','2022-04-20 01:49:42','',2390,'https://lantern-realty.com/?p=2401',0,'revision','',0),(2402,1,'2022-04-20 01:49:42','2022-04-20 01:49:42','<h2>Lantern Realty  -  Lexington Office</h2>		\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:49:42','2022-04-20 01:49:42','',2390,'https://lantern-realty.com/?p=2402',0,'revision','',0),(2403,1,'2022-04-20 01:50:07','2022-04-20 01:50:07','<h2>Lantern Realty  -  Lexington Office</h2>		\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:50:07','2022-04-20 01:50:07','',2390,'https://lantern-realty.com/?p=2403',0,'revision','',0),(2404,1,'2022-04-20 01:50:07','2022-04-20 01:50:07','<h2>Lantern Realty  -  Lexington Office</h2>		\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:50:07','2022-04-20 01:50:07','',2390,'https://lantern-realty.com/?p=2404',0,'revision','',0),(2408,1,'2022-04-20 01:54:09','2022-04-20 01:54:09','<h2>Lantern Realty  -  Lexington Office</h2>		\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Lexington Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is...	\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:54:09','2022-04-20 01:54:09','',2390,'https://lantern-realty.com/?p=2408',0,'revision','',0),(2409,1,'2022-04-20 01:55:01','2022-04-20 01:55:01','<h2>Lantern Realty  -  Lexington Office</h2>		\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Lexington Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is...	\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:55:01','2022-04-20 01:55:01','',2390,'https://lantern-realty.com/?p=2409',0,'revision','',0),(2410,1,'2022-04-20 01:55:01','2022-04-20 01:55:01','<h2>Lantern Realty  -  Lexington Office</h2>		\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Lexington Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is...	\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:55:01','2022-04-20 01:55:01','',2390,'https://lantern-realty.com/?p=2410',0,'revision','',0),(2411,1,'2022-04-20 01:55:03','2022-04-20 01:55:03','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Lexington Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is...	\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:55:03','2022-04-20 01:55:03','',2390,'https://lantern-realty.com/?p=2411',0,'revision','',0),(2412,1,'2022-04-20 01:56:13','2022-04-20 01:56:13','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Lexington Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is...	\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:56:13','2022-04-20 01:56:13','',2390,'https://lantern-realty.com/?p=2412',0,'revision','',0),(2413,1,'2022-04-20 01:56:13','2022-04-20 01:56:13','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Lexington Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is...	\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:56:13','2022-04-20 01:56:13','',2390,'https://lantern-realty.com/?p=2413',0,'revision','',0),(2414,1,'2022-04-20 01:56:14','2022-04-20 01:56:14','<h2>Lantern Realty  -  Lexington Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:7047547104\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Lexington Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is...	\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:56:14','2022-04-20 01:56:14','',2390,'https://lantern-realty.com/?p=2414',0,'revision','',0),(2419,9,'2022-04-26 21:05:59','2022-04-26 21:05:59','<div class=\"postie-post\"><div dir=\"ltr\">This will be a combo In person/Zoom class - Parker Glaus with True Homes will explain the process of how they can build a home on YOUR land. This will give us more options to consider in this limited market.  Please feel free to join us either in the Kannapolis office or via Zoom.  I will do my best to record it and get it out to you as soon as possible for those unable to attend. Zoom link provided below........<br clear=\"all\"><div><br></div><div>Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br><b>Topic: Build On Your Land - w/True Homes <br>Time: Apr 27, 2022 09:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/89826579783?pwd=Y2hlcnZYWHFCSGJvd0NFbVM1cUhZZz09\">https://us02web.zoom.us/j/89826579783?pwd=Y2hlcnZYWHFCSGJvd0NFbVM1cUhZZz09</a><br><br>Meeting ID: 898 2657 9783<br>Passcode: 240392<br>One tap mobile<br>+13017158592,,89826579783#,,,,*240392# US (Washington DC)<br>+13126266799,,89826579783#,,,,*240392# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 898 2657 9783<br>Passcode: 240392<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kc8TzqGeCV\">https://us02web.zoom.us/u/kc8TzqGeCV</a><br><br></div><div><br></div></div>','Lantern Realty Zoom Invite \" Build On Your Land - w/True Homes\" Wednesday Apr 27, 2022 09:00 AM','','publish','closed','open','','lantern-realty-zoom-invite-build-on-your-land-w-true-homes-wednesday-apr-27-2022-0900-am','','','2022-04-26 21:05:59','2022-04-26 21:05:59','',0,'https://lantern-realty.com/?p=2419',0,'post','',0),(2420,9,'2022-04-27 22:07:49','2022-04-27 22:07:49','<div class=\"postie-post\"><div dir=\"ltr\">Hey All,<div><br></div><div>Tomorrow, April 28 at 9 am we have part two of Chris&#39;s commercial series and this one is on Buyer Clients.  Be sure to join us in person or via Zoom. As always, we will do our best to record it and get it out for those unable to attend.<div><br><b>Topic: Basics of Comm RE - Buyer Clients<br>Time: Apr 28, 2022 09:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/83747622776?pwd=RVp2a25Lc2dKd2g4VC9ETC92b3NBQT09\">https://us02web.zoom.us/j/83747622776?pwd=RVp2a25Lc2dKd2g4VC9ETC92b3NBQT09</a><br><br>Meeting ID: 837 4762 2776<br>Passcode: 755766<br>One tap mobile<br>+13126266799,,83747622776#,,,,*755766# US (Chicago)<br>+19292056099,,83747622776#,,,,*755766# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 837 4762 2776<br>Passcode: 755766<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kd4eA1S7nZ\">https://us02web.zoom.us/u/kd4eA1S7nZ</a><br><br></div></div>','Lantern Zoom Link for \"Commercial Basics - Buyer Clients\" with Chris Puckett - April 28 at 9 am','','publish','closed','open','','lantern-zoom-link-for-commercial-basics-buyer-clients-with-chris-puckett-april-28-at-9-am','','','2022-04-27 22:07:49','2022-04-27 22:07:49','',0,'https://lantern-realty.com/?p=2420',0,'post','',0),(2421,9,'2022-04-27 22:16:06','2022-04-27 22:16:06','<div class=\"postie-post\"><div dir=\"ltr\"><div><b><i>This is not a repeat Zoom email - we have back to back meetings on the 28th.</i></b></div><div><br></div>Lantern Loves is meeting in person and via Zoom to talk about what we as agents and a firm can do to help others. Please join us to share ideas on how we can better our communities and spread the love.<div><br><b>Topic: Lantern Loves<br>Time: Apr 28, 2022 10:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/82171955736?pwd=cElSZ2tWbFNxdHRBQ0p2WVQzS0JTQT09\">https://us02web.zoom.us/j/82171955736?pwd=cElSZ2tWbFNxdHRBQ0p2WVQzS0JTQT09</a><br><br>Meeting ID: 821 7195 5736<br>Passcode: 917743<br>One tap mobile<br>+13017158592,,82171955736#,,,,*917743# US (Washington DC)<br>+13126266799,,82171955736#,,,,*917743# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 821 7195 5736<br>Passcode: 917743<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kpZFWgpzu\">https://us02web.zoom.us/u/kpZFWgpzu</a><br><br></div><div><br clear=\"all\"><div><br></div></div>','Lantern Loves Zoom Link - April 28 at 10 am','','publish','closed','open','','lantern-loves-zoom-link-april-28-at-10-am','','','2022-04-27 22:16:06','2022-04-27 22:16:06','',0,'https://lantern-realty.com/?p=2421',0,'post','',0),(2422,6,'2022-04-29 12:36:09','2022-04-29 12:36:09','<div class=\"postie-post\"><div dir=\"ltr\">Good Morning, in case you missed our Lantern Loves meeting yesterday, below is a recap.  For those that are new to our family Lantern Loves is our charitable committee.  <div><br></div><div>We are reorganizing to be able to better serve our community and each other.  We want to have a systematic means to serve the communities we are a part of as well as meeting the needs for our agents that may run into difficulties.  </div><div><br></div><div>We are looking for board members, preferably at least one representative from each office.  </div><div><br></div><div>If you would like to volunteer, <b><i>please send an email to MELISSA YATES at \r\n<span style=\"font-size:11pt;font-family:Calibri,Arial;text-decoration-line:underline;color:rgb(5,99,193)\"><a class=\"gmail-in-cell-link\" href=\"mailto:melissayates4u@gmail.com\" target=\"_blank\" rel=\"noopener\"><a href=\"mailto:melissayates4u@gmail.com\" >melissayates4u@gmail.com</a></a> </span><span style=\"font-size:11pt;font-family:Calibri,Arial;color:rgb(5,99,193)\">. </span><span style=\"font-size:11pt;font-family:Calibri,Arial\"><font color=\"#000000\">Please send it by 5pm on 5/6/2022.</font></span></i></b><br clear=\"all\"><div><br></div></div>','Lantern Loves!','','publish','closed','open','','lantern-loves','','','2022-04-29 12:36:09','2022-04-29 12:36:09','',0,'https://lantern-realty.com/?p=2422',0,'post','',0),(2423,6,'2022-04-29 21:37:40','2022-04-29 21:37:40','<div class=\"postie-post\"><div dir=\"ltr\">Here are the videos of the classes we had this week.  Enjoy!<div><br></div><div>- Building on Your Own Land w/ Tru Homes</div><div><a href=\"https://youtu.be/VvrcdmM0Z8E\">https://youtu.be/VvrcdmM0Z8E</a></div><div><br></div><div>- Lantern Loves!</div><div><a href=\"https://youtu.be/-ofBv16mjFY\">https://youtu.be/-ofBv16mjFY</a></div><div><br></div><div>- Basics of Commercial Real Estate - Buyer Clients</div><div><a href=\"https://youtu.be/mAvMaw6LDgc\">https://youtu.be/mAvMaw6LDgc</a><br clear=\"all\"><div><br></div></div>','Videos of This Weeks Classes.....','','publish','closed','open','','videos-of-this-weeks-classes','','','2022-04-29 21:37:40','2022-04-29 21:37:40','',0,'https://lantern-realty.com/?p=2423',0,'post','',0),(2652,6,'2022-05-09 14:55:58','2022-05-09 14:55:58','<div class=\"postie-post\"><div dir=\"ltr\">Hello All, see below....<div><br></div><div>- We still have two dates left for the Cannon Ballers suites on 7/8 and 7/27.  The cost is $500 and includes 20 tickets and 4 parking passes.  Let me know if you are interested.</div><div>- We now have access to the NC Coastal MLS (Flex MLS) through our Raleigh office.  If you are interested please let me know.  It will require you to join the Raleigh office as a secondary affiliate with the NCREC.</div><div>- Our Ladies of Lantern event is 5/19/22 at 1130 at 401 Laureate Center Way, Kannapolis.  </div><div>- I will be postponing our 5/12 Measuring Class.  I will reschedule at a later time. </div><div>- Speaking of classes, as we head into Vacation time, our class schedule will be scaled back.  I want to take this time to ask for recommendations for classes.  Send me an email about what you would like to see.  </div><div><br></div><div>Thanks again!!!<br clear=\"all\"><div><br></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-47','','','2022-05-09 14:55:58','2022-05-09 14:55:58','',0,'https://lantern-realty.com/?p=2652',0,'post','',0),(2693,9,'2022-05-31 19:36:11','2022-05-31 19:36:11','<div class=\"postie-post\"><div dir=\"ltr\"><div>You do not want to miss Client Care with our Mooresville BIC, Sarah Romesburg - now is the perfect time to make sure you are creating longtime clients who won&#39;t hesitate to recommend you to their family and friends.  </div><div><br><b>Topic: Client Care w/ Sarah Romesburg<br>Time: Jun 1, 2022 11:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/88353396877?pwd=d2JWS1FIWXduSlJ6NW50V3J5KzFHdz09\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/j/88353396877?pwd=d2JWS1FIWXduSlJ6NW50V3J5KzFHdz09</a><br><br>Meeting ID: 883 5339 6877<br>Passcode: 099847<br>One tap mobile<br>+19292056099,,88353396877#,,,,*099847# US (New York)<br>+13017158592,,88353396877#,,,,*099847# US (Washington DC)<br><br>Dial by your location<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 883 5339 6877<br>Passcode: 099847<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kefcAGXuIv\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/u/kefcAGXuIv</a><br><br></div><div><br></div><div><br></div><br clear=\"all\"><div><br></div></div>','Lantern Realty Zoom Meeting - Client Care w/ Sarah Romesburg Wednesday Jun 1, 2022 11:00 AM','','publish','closed','open','','lantern-realty-zoom-meeting-client-care-w-sarah-romesburg-wednesday-jun-1-2022-1100-am','','','2022-05-31 19:36:11','2022-05-31 19:36:11','',0,'https://lantern-realty.com/?p=2693',0,'post','',0),(2694,9,'2022-06-01 15:55:56','2022-06-01 15:55:56','<div class=\"postie-post\"><div><div dir=\"ltr\"><div>I will give you an overview of Dotloop to either help you get started using it, use it more efficiently or just answer some questions you may have. Please join me either in the Kannapolis office or via Zoom, you choose.<br><br><b>Topic: Dotloop<br>Time: Jun 2, 2022 09:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/83458614155?pwd=aElNK05uNXJrR1pvWFBLc2MrdFFadz09\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/j/83458614155?pwd=aElNK05uNXJrR1pvWFBLc2MrdFFadz09</a><br><br>Meeting ID: 834 5861 4155<br>Passcode: 567676<br>One tap mobile<br>+13126266799,,83458614155#,,,,*567676# US (Chicago)<br>+19292056099,,83458614155#,,,,*567676# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 834 5861 4155<br>Passcode: 567676<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kU8OhjMPA\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/u/kU8OhjMPA</a><br><br></div><div><br></div><br clear=\"all\"><div><br></div></div>','Lantern Zoom Meeting - Dotloop - Thursday Jun 2, 2022 09:00 AM','','publish','closed','open','','lantern-zoom-meeting-dotloop-thursday-jun-2-2022-0900-am','','','2022-06-01 15:55:56','2022-06-01 15:55:56','',0,'https://lantern-realty.com/?p=2694',0,'post','',0),(2448,1,'2022-04-30 17:48:07','2022-04-30 17:48:07','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:48:07','2022-04-30 17:48:07','',1279,'https://lantern-realty.com/?p=2448',0,'revision','',0),(2405,1,'2022-04-20 01:50:08','2022-04-20 01:50:08','<h2>Lantern Realty  -  Lexington Office</h2>		\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Tennessee Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...	\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in upstate New York, I moved to Concord with my family...	\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thank you for checking out my profile! I moved to NC in 1996 and...	\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Sandra has lived in North Carolina her whole life. Her passion is to help...	\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...	\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		With over 25 years buying and selling real estate, we can assist you with...	\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...	\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a native of New Jersey, but I have resided in the Charlotte...	\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Erin Hyman. I have lived in Kannapolis all my life, graduating...	\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Sarah Horn. I was born and raised in North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....	\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Tammy Fox and I have lived in the Kannapolis area my...	\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is...	\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born in Lexington, Kentucky, which might explain my love for horses and...	\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is...	\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		After working with a few different real estate agents and purchasing several properties &#8211;...	\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...	\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a people person by nature. I have a desire and passion in...	\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I grew up as a Rowan County resident and moved to Richfield when my...	\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...	\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:50:08','2022-04-20 01:50:08','',2390,'https://lantern-realty.com/?p=2405',0,'revision','',0),(2406,1,'2022-04-20 01:54:09','2022-04-20 01:54:09','<h2>Lantern Realty  -  Lexington Office</h2>		\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Tennessee Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...	\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in upstate New York, I moved to Concord with my family...	\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thank you for checking out my profile! I moved to NC in 1996 and...	\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Sandra has lived in North Carolina her whole life. Her passion is to help...	\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...	\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		With over 25 years buying and selling real estate, we can assist you with...	\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...	\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a native of New Jersey, but I have resided in the Charlotte...	\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Erin Hyman. I have lived in Kannapolis all my life, graduating...	\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Sarah Horn. I was born and raised in North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....	\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Tammy Fox and I have lived in the Kannapolis area my...	\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is...	\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born in Lexington, Kentucky, which might explain my love for horses and...	\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is...	\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		After working with a few different real estate agents and purchasing several properties &#8211;...	\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...	\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a people person by nature. I have a desire and passion in...	\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I grew up as a Rowan County resident and moved to Richfield when my...	\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...	\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:54:09','2022-04-20 01:54:09','',2390,'https://lantern-realty.com/?p=2406',0,'revision','',0),(2407,1,'2022-04-20 01:54:09','2022-04-20 01:54:09','<h2>Lantern Realty  -  Lexington Office</h2>		\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416628785.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern\">\n							<img width=\"768\" height=\"449\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-768x449.jpg 768w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-300x175.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1024x598.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1536x897.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-1027x600.jpg 1027w, https://lantern-realty.com/wp-content/uploads/2022/04/lantern_3_REV_LOGO-e1650416603262-496x290.jpg 496w\" sizes=\"(max-width: 768px) 100vw, 768px\" />								</a>\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:8287720220\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Tennessee Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...	\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in upstate New York, I moved to Concord with my family...	\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thank you for checking out my profile! I moved to NC in 1996 and...	\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Sandra has lived in North Carolina her whole life. Her passion is to help...	\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...	\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		With over 25 years buying and selling real estate, we can assist you with...	\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...	\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a native of New Jersey, but I have resided in the Charlotte...	\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Erin Hyman. I have lived in Kannapolis all my life, graduating...	\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Sarah Horn. I was born and raised in North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....	\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Tammy Fox and I have lived in the Kannapolis area my...	\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is...	\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born in Lexington, Kentucky, which might explain my love for horses and...	\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is...	\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		After working with a few different real estate agents and purchasing several properties &#8211;...	\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...	\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a people person by nature. I have a desire and passion in...	\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I grew up as a Rowan County resident and moved to Richfield when my...	\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...	\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Asheville','','inherit','closed','closed','','2390-revision-v1','','','2022-04-20 01:54:09','2022-04-20 01:54:09','',2390,'https://lantern-realty.com/?p=2407',0,'revision','',0),(2447,1,'2022-04-30 17:42:34','2022-04-30 17:42:34','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:42:34','2022-04-30 17:42:34','',1279,'https://lantern-realty.com/?p=2447',0,'revision','',0),(2445,1,'2022-04-30 17:42:19','2022-04-30 17:42:19','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:42:19','2022-04-30 17:42:19','',1279,'https://lantern-realty.com/?p=2445',0,'revision','',0),(2446,1,'2022-04-30 17:42:24','2022-04-30 17:42:24','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:42:24','2022-04-30 17:42:24','',1279,'https://lantern-realty.com/?p=2446',0,'revision','',0),(2449,1,'2022-04-30 17:48:07','2022-04-30 17:48:07','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:48:07','2022-04-30 17:48:07','',1279,'https://lantern-realty.com/?p=2449',0,'revision','',0),(2484,1,'2022-04-30 19:02:02','2022-04-30 19:02:02','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:02:02','2022-04-30 19:02:02','',1279,'https://lantern-realty.com/?p=2484',0,'revision','',0),(2456,1,'2022-04-30 17:55:04','2022-04-30 17:55:04','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:55:04','2022-04-30 17:55:04','',1279,'https://lantern-realty.com/?p=2456',0,'revision','',0),(2450,1,'2022-04-30 17:48:08','2022-04-30 17:48:08','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:48:08','2022-04-30 17:48:08','',1279,'https://lantern-realty.com/?p=2450',0,'revision','',0),(2451,1,'2022-04-30 17:50:01','2022-04-30 17:50:01','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:50:01','2022-04-30 17:50:01','',1279,'https://lantern-realty.com/?p=2451',0,'revision','',0),(2452,1,'2022-04-30 17:50:01','2022-04-30 17:50:01','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:50:01','2022-04-30 17:50:01','',1279,'https://lantern-realty.com/?p=2452',0,'revision','',0),(2453,1,'2022-04-30 17:50:02','2022-04-30 17:50:02','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:50:02','2022-04-30 17:50:02','',1279,'https://lantern-realty.com/?p=2453',0,'revision','',0),(2454,1,'2022-04-30 17:55:04','2022-04-30 17:55:04','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:55:04','2022-04-30 17:55:04','',1279,'https://lantern-realty.com/?p=2454',0,'revision','',0),(2455,1,'2022-04-30 17:55:04','2022-04-30 17:55:04','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:55:04','2022-04-30 17:55:04','',1279,'https://lantern-realty.com/?p=2455',0,'revision','',0),(2460,1,'2022-04-30 17:58:54','2022-04-30 17:58:54','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:58:54','2022-04-30 17:58:54','',1279,'https://lantern-realty.com/?p=2460',0,'revision','',0),(2458,1,'2022-04-30 17:58:53','2022-04-30 17:58:53','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:58:53','2022-04-30 17:58:53','',1279,'https://lantern-realty.com/?p=2458',0,'revision','',0);
INSERT INTO `lrwp_posts` VALUES (2459,1,'2022-04-30 17:58:53','2022-04-30 17:58:53','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 17:58:53','2022-04-30 17:58:53','',1279,'https://lantern-realty.com/?p=2459',0,'revision','',0),(2467,1,'2022-04-30 18:30:32','2022-04-30 18:30:32','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:30:32','2022-04-30 18:30:32','',1279,'https://lantern-realty.com/?p=2467',0,'revision','',0),(2462,1,'2022-04-30 18:08:00','2022-04-30 18:08:00','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:08:00','2022-04-30 18:08:00','',1279,'https://lantern-realty.com/?p=2462',0,'revision','',0),(2463,1,'2022-04-30 18:08:18','2022-04-30 18:08:18','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:08:18','2022-04-30 18:08:18','',1279,'https://lantern-realty.com/?p=2463',0,'revision','',0),(2465,1,'2022-04-30 18:30:31','2022-04-30 18:30:31','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:30:31','2022-04-30 18:30:31','',1279,'https://lantern-realty.com/?p=2465',0,'revision','',0),(2466,1,'2022-04-30 18:30:31','2022-04-30 18:30:31','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:30:31','2022-04-30 18:30:31','',1279,'https://lantern-realty.com/?p=2466',0,'revision','',0),(2471,1,'2022-04-30 18:41:24','2022-04-30 18:41:24','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:41:24','2022-04-30 18:41:24','',1279,'https://lantern-realty.com/?p=2471',0,'revision','',0),(2469,1,'2022-04-30 18:41:23','2022-04-30 18:41:23','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:41:23','2022-04-30 18:41:23','',1279,'https://lantern-realty.com/?p=2469',0,'revision','',0),(2470,1,'2022-04-30 18:41:23','2022-04-30 18:41:23','<h2>Lantern Offices</h2>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:41:23','2022-04-30 18:41:23','',1279,'https://lantern-realty.com/?p=2470',0,'revision','',0),(2472,1,'2022-04-30 18:42:32','2022-04-30 18:42:32','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:42:32','2022-04-30 18:42:32','',1279,'https://lantern-realty.com/?p=2472',0,'revision','',0),(2473,1,'2022-04-30 18:42:32','2022-04-30 18:42:32','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:42:32','2022-04-30 18:42:32','',1279,'https://lantern-realty.com/?p=2473',0,'revision','',0),(2474,1,'2022-04-30 18:42:33','2022-04-30 18:42:33','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:42:33','2022-04-30 18:42:33','',1279,'https://lantern-realty.com/?p=2474',0,'revision','',0),(2475,1,'2022-04-30 18:46:46','2022-04-30 18:46:46','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:46:46','2022-04-30 18:46:46','',1279,'https://lantern-realty.com/?p=2475',0,'revision','',0),(2476,1,'2022-04-30 18:46:46','2022-04-30 18:46:46','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:46:46','2022-04-30 18:46:46','',1279,'https://lantern-realty.com/?p=2476',0,'revision','',0),(2477,1,'2022-04-30 18:46:47','2022-04-30 18:46:47','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:46:47','2022-04-30 18:46:47','',1279,'https://lantern-realty.com/?p=2477',0,'revision','',0),(2478,1,'2022-04-30 18:48:26','2022-04-30 18:48:26','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:48:26','2022-04-30 18:48:26','',1279,'https://lantern-realty.com/?p=2478',0,'revision','',0),(2479,1,'2022-04-30 18:48:26','2022-04-30 18:48:26','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:48:26','2022-04-30 18:48:26','',1279,'https://lantern-realty.com/?p=2479',0,'revision','',0),(2480,1,'2022-04-30 18:48:27','2022-04-30 18:48:27','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 18:48:27','2022-04-30 18:48:27','',1279,'https://lantern-realty.com/?p=2480',0,'revision','',0),(2485,1,'2022-04-30 19:05:17','2022-04-30 19:05:17','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:05:17','2022-04-30 19:05:17','',1279,'https://lantern-realty.com/?p=2485',0,'revision','',0),(2482,1,'2022-04-30 19:02:00','2022-04-30 19:02:00','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:02:00','2022-04-30 19:02:00','',1279,'https://lantern-realty.com/?p=2482',0,'revision','',0),(2483,1,'2022-04-30 19:02:01','2022-04-30 19:02:01','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"300\" height=\"234\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=Lantern%20Realty%20and%20Development%2C%20West%20Avenue%2C%20Kannapolis%2C%20NC&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n					aria-label=\"Lantern Realty and Development, West Avenue, Kannapolis, NC\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"267\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w\" sizes=\"(max-width: 267px) 100vw, 267px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20North%20Main%20Suite%20B%2C%20Salisbury%2C%20NC%2028144&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 North Main Suite B, Salisbury, NC 28144\"\n					aria-label=\"105 North Main Suite B, Salisbury, NC 28144\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:02:01','2022-04-30 19:02:01','',1279,'https://lantern-realty.com/?p=2483',0,'revision','',0),(2486,1,'2022-04-30 19:05:17','2022-04-30 19:05:17','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:05:17','2022-04-30 19:05:17','',1279,'https://lantern-realty.com/?p=2486',0,'revision','',0),(2493,1,'2022-04-30 19:10:36','2022-04-30 19:10:36','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:10:36','2022-04-30 19:10:36','',1279,'https://lantern-realty.com/?p=2493',0,'revision','',0),(2490,1,'2022-04-30 19:06:17','2022-04-30 19:06:17','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:06:17','2022-04-30 19:06:17','',1279,'https://lantern-realty.com/?p=2490',0,'revision','',0),(2487,1,'2022-04-30 19:05:18','2022-04-30 19:05:18','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:05:18','2022-04-30 19:05:18','',1279,'https://lantern-realty.com/?p=2487',0,'revision','',0),(2488,1,'2022-04-30 19:06:15','2022-04-30 19:06:15','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:06:15','2022-04-30 19:06:15','',1279,'https://lantern-realty.com/?p=2488',0,'revision','',0),(2489,1,'2022-04-30 19:06:16','2022-04-30 19:06:16','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"261\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 261w, https://lantern-realty.com/wp-content/uploads/2020/10/Lantern-Square.png 300w\" sizes=\"(max-width: 261px) 100vw, 261px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4350%20Main%20Street%20Suite%20215%2C%20Harrisburg%2C%20NC%2028075&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n					aria-label=\"4350 Main Street Suite 215, Harrisburg, NC 28075\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:06:16','2022-04-30 19:06:16','',1279,'https://lantern-realty.com/?p=2489',0,'revision','',0),(2491,1,'2022-04-30 19:10:35','2022-04-30 19:10:35','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:10:35','2022-04-30 19:10:35','',1279,'https://lantern-realty.com/?p=2491',0,'revision','',0),(2492,1,'2022-04-30 19:10:35','2022-04-30 19:10:35','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">\n							<img width=\"300\" height=\"200\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1024x683.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-768x512.jpg 768w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1536x1024.jpg 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-1170x785.jpg 1170w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-900x600.jpg 900w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402-496x331.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/10/IMG_3402.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=113%20S.%20Second%20St%2C%20Albemarle%2C%20NC%2028001&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"113 S. Second St, Albemarle, NC 28001\"\n					aria-label=\"113 S. Second St, Albemarle, NC 28001\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:10:35','2022-04-30 19:10:35','',1279,'https://lantern-realty.com/?p=2492',0,'revision','',0),(2498,1,'2022-04-30 19:18:43','2022-04-30 19:18:43','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:18:43','2022-04-30 19:18:43','',1279,'https://lantern-realty.com/?p=2498',0,'revision','',0),(2495,1,'2022-04-30 19:16:25','2022-04-30 19:16:25','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:16:25','2022-04-30 19:16:25','',1279,'https://lantern-realty.com/?p=2495',0,'revision','',0),(2496,1,'2022-04-30 19:16:25','2022-04-30 19:16:25','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"240\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=106%20Langtree%20Village%20Drive%20Suite%20301%2C%20Mooresville%2C%20NC%2028117&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n					aria-label=\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:16:25','2022-04-30 19:16:25','',1279,'https://lantern-realty.com/?p=2496',0,'revision','',0),(2499,1,'2022-04-30 19:18:43','2022-04-30 19:18:43','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"235\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:18:43','2022-04-30 19:18:43','',1279,'https://lantern-realty.com/?p=2499',0,'revision','',0),(2501,1,'2022-04-30 19:22:15','2022-04-30 19:22:15','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:22:15','2022-04-30 19:22:15','',1279,'https://lantern-realty.com/?p=2501',0,'revision','',0),(2502,1,'2022-04-30 19:22:15','2022-04-30 19:22:15','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=105%20N%20State%20Street%2C%20Lexington%20NC%2027293&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"105 N State Street, Lexington NC 27293\"\n					aria-label=\"105 N State Street, Lexington NC 27293\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:22:15','2022-04-30 19:22:15','',1279,'https://lantern-realty.com/?p=2502',0,'revision','',0),(2504,1,'2022-04-30 19:25:40','2022-04-30 19:25:40','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:25:40','2022-04-30 19:25:40','',1279,'https://lantern-realty.com/?p=2504',0,'revision','',0),(2505,1,'2022-04-30 19:25:40','2022-04-30 19:25:40','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethtown%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethtown, TN 37643\"\n			></iframe>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"300\" height=\"300\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 300px) 100vw, 300px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=4909%20UniconDr.%20Ste%20105%2C%20Wake%20Forest%20NC%2027587&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n					aria-label=\"4909 UniconDr. Ste 105, Wake Forest NC 27587\"\n			></iframe>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:25:40','2022-04-30 19:25:40','',1279,'https://lantern-realty.com/?p=2505',0,'revision','',0),(2507,1,'2022-04-30 19:26:35','2022-04-30 19:26:35','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:26:35','2022-04-30 19:26:35','',1279,'https://lantern-realty.com/?p=2507',0,'revision','',0),(2508,1,'2022-04-30 19:26:35','2022-04-30 19:26:35','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:26:35','2022-04-30 19:26:35','',1279,'https://lantern-realty.com/?p=2508',0,'revision','',0),(2509,1,'2022-04-30 19:26:35','2022-04-30 19:26:35','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:26:35','2022-04-30 19:26:35','',1279,'https://lantern-realty.com/?p=2509',0,'revision','',0),(2510,1,'2022-04-30 19:27:20','2022-04-30 19:27:20','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:27:20','2022-04-30 19:27:20','',1279,'https://lantern-realty.com/?p=2510',0,'revision','',0),(2511,1,'2022-04-30 19:27:20','2022-04-30 19:27:20','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:27:20','2022-04-30 19:27:20','',1279,'https://lantern-realty.com/?p=2511',0,'revision','',0),(2512,1,'2022-04-30 19:27:20','2022-04-30 19:27:20','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:27:20','2022-04-30 19:27:20','',1279,'https://lantern-realty.com/?p=2512',0,'revision','',0),(2513,1,'2022-04-30 19:28:43','2022-04-30 19:28:43','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:28:43','2022-04-30 19:28:43','',1279,'https://lantern-realty.com/?p=2513',0,'revision','',0),(2514,1,'2022-04-30 19:28:43','2022-04-30 19:28:43','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:28:43','2022-04-30 19:28:43','',1279,'https://lantern-realty.com/?p=2514',0,'revision','',0),(2515,1,'2022-04-30 19:28:44','2022-04-30 19:28:44','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:28:44','2022-04-30 19:28:44','',1279,'https://lantern-realty.com/?p=2515',0,'revision','',0),(2516,1,'2022-04-30 19:29:51','2022-04-30 19:29:51','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:29:51','2022-04-30 19:29:51','',1279,'https://lantern-realty.com/?p=2516',0,'revision','',0),(2517,1,'2022-04-30 19:29:51','2022-04-30 19:29:51','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:29:51','2022-04-30 19:29:51','',1279,'https://lantern-realty.com/?p=2517',0,'revision','',0),(2518,1,'2022-04-30 19:29:52','2022-04-30 19:29:52','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:29:52','2022-04-30 19:29:52','',1279,'https://lantern-realty.com/?p=2518',0,'revision','',0),(2576,1,'2022-04-30 20:36:24','2022-04-30 20:36:24','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:36:24','2022-04-30 20:36:24','',1279,'https://lantern-realty.com/?p=2576',0,'revision','',0),(2569,1,'2022-04-30 20:30:20','2022-04-30 20:30:20','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:30:20','2022-04-30 20:30:20','',1279,'https://lantern-realty.com/?p=2569',0,'revision','',0),(2522,1,'2022-04-30 19:48:43','2022-04-30 19:48:43','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:48:43','2022-04-30 19:48:43','',1279,'https://lantern-realty.com/?p=2522',0,'revision','',0),(2520,1,'2022-04-30 19:48:42','2022-04-30 19:48:42','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:48:42','2022-04-30 19:48:42','',1279,'https://lantern-realty.com/?p=2520',0,'revision','',0),(2521,1,'2022-04-30 19:48:42','2022-04-30 19:48:42','<h1>Lantern Offices</h1>		\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:48:42','2022-04-30 19:48:42','',1279,'https://lantern-realty.com/?p=2521',0,'revision','',0),(2523,1,'2022-04-30 19:51:38','2022-04-30 19:51:38','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:51:38','2022-04-30 19:51:38','',1279,'https://lantern-realty.com/?p=2523',0,'revision','',0),(2524,1,'2022-04-30 19:51:38','2022-04-30 19:51:38','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:51:38','2022-04-30 19:51:38','',1279,'https://lantern-realty.com/?p=2524',0,'revision','',0),(2525,1,'2022-04-30 19:51:38','2022-04-30 19:51:38','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:51:38','2022-04-30 19:51:38','',1279,'https://lantern-realty.com/?p=2525',0,'revision','',0),(2529,1,'2022-04-30 19:54:28','2022-04-30 19:54:28','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:54:28','2022-04-30 19:54:28','',1279,'https://lantern-realty.com/?p=2529',0,'revision','',0),(2527,1,'2022-04-30 19:54:26','2022-04-30 19:54:26','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:54:26','2022-04-30 19:54:26','',1279,'https://lantern-realty.com/?p=2527',0,'revision','',0),(2528,1,'2022-04-30 19:54:27','2022-04-30 19:54:27','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:54:27','2022-04-30 19:54:27','',1279,'https://lantern-realty.com/?p=2528',0,'revision','',0),(2530,1,'2022-04-30 19:55:22','2022-04-30 19:55:22','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:55:22','2022-04-30 19:55:22','',1279,'https://lantern-realty.com/?p=2530',0,'revision','',0),(2531,1,'2022-04-30 19:55:22','2022-04-30 19:55:22','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:55:22','2022-04-30 19:55:22','',1279,'https://lantern-realty.com/?p=2531',0,'revision','',0),(2532,1,'2022-04-30 19:55:23','2022-04-30 19:55:23','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:55:23','2022-04-30 19:55:23','',1279,'https://lantern-realty.com/?p=2532',0,'revision','',0);
INSERT INTO `lrwp_posts` VALUES (2533,1,'2022-04-30 19:55:56','2022-04-30 19:55:56','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:55:56','2022-04-30 19:55:56','',1279,'https://lantern-realty.com/?p=2533',0,'revision','',0),(2534,1,'2022-04-30 19:55:56','2022-04-30 19:55:56','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:55:56','2022-04-30 19:55:56','',1279,'https://lantern-realty.com/?p=2534',0,'revision','',0),(2535,1,'2022-04-30 19:55:57','2022-04-30 19:55:57','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:55:57','2022-04-30 19:55:57','',1279,'https://lantern-realty.com/?p=2535',0,'revision','',0),(2536,1,'2022-04-30 19:57:07','2022-04-30 19:57:07','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:57:07','2022-04-30 19:57:07','',1279,'https://lantern-realty.com/?p=2536',0,'revision','',0),(2537,1,'2022-04-30 19:57:07','2022-04-30 19:57:07','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:57:07','2022-04-30 19:57:07','',1279,'https://lantern-realty.com/?p=2537',0,'revision','',0),(2538,1,'2022-04-30 19:57:07','2022-04-30 19:57:07','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:57:07','2022-04-30 19:57:07','',1279,'https://lantern-realty.com/?p=2538',0,'revision','',0),(2539,1,'2022-04-30 19:59:15','2022-04-30 19:59:15','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:59:15','2022-04-30 19:59:15','',1279,'https://lantern-realty.com/?p=2539',0,'revision','',0),(2540,1,'2022-04-30 19:59:15','2022-04-30 19:59:15','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:59:15','2022-04-30 19:59:15','',1279,'https://lantern-realty.com/?p=2540',0,'revision','',0),(2541,1,'2022-04-30 19:59:15','2022-04-30 19:59:15','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 19:59:15','2022-04-30 19:59:15','',1279,'https://lantern-realty.com/?p=2541',0,'revision','',0),(2542,1,'2022-04-30 20:01:50','2022-04-30 20:01:50','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:01:50','2022-04-30 20:01:50','',1279,'https://lantern-realty.com/?p=2542',0,'revision','',0),(2543,1,'2022-04-30 20:01:50','2022-04-30 20:01:50','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:01:50','2022-04-30 20:01:50','',1279,'https://lantern-realty.com/?p=2543',0,'revision','',0),(2544,1,'2022-04-30 20:01:51','2022-04-30 20:01:51','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:01:51','2022-04-30 20:01:51','',1279,'https://lantern-realty.com/?p=2544',0,'revision','',0),(2545,1,'2022-04-30 20:03:17','2022-04-30 20:03:17','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:03:17','2022-04-30 20:03:17','',1279,'https://lantern-realty.com/?p=2545',0,'revision','',0),(2546,1,'2022-04-30 20:03:17','2022-04-30 20:03:17','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:03:17','2022-04-30 20:03:17','',1279,'https://lantern-realty.com/?p=2546',0,'revision','',0),(2547,1,'2022-04-30 20:03:18','2022-04-30 20:03:18','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:03:18','2022-04-30 20:03:18','',1279,'https://lantern-realty.com/?p=2547',0,'revision','',0),(2548,1,'2022-04-30 20:05:01','2022-04-30 20:05:01','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:05:01','2022-04-30 20:05:01','',1279,'https://lantern-realty.com/?p=2548',0,'revision','',0),(2549,1,'2022-04-30 20:05:02','2022-04-30 20:05:02','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:05:02','2022-04-30 20:05:02','',1279,'https://lantern-realty.com/?p=2549',0,'revision','',0),(2550,1,'2022-04-30 20:05:03','2022-04-30 20:05:03','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:05:03','2022-04-30 20:05:03','',1279,'https://lantern-realty.com/?p=2550',0,'revision','',0),(2551,1,'2022-04-30 20:19:07','2022-04-30 20:19:07','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:19:07','2022-04-30 20:19:07','',1279,'https://lantern-realty.com/?p=2551',0,'revision','',0),(2552,1,'2022-04-30 20:19:07','2022-04-30 20:19:07','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:19:07','2022-04-30 20:19:07','',1279,'https://lantern-realty.com/?p=2552',0,'revision','',0),(2553,1,'2022-04-30 20:19:13','2022-04-30 20:19:13','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:19:13','2022-04-30 20:19:13','',1279,'https://lantern-realty.com/?p=2553',0,'revision','',0),(2554,1,'2022-04-30 20:20:39','2022-04-30 20:20:39','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:20:39','2022-04-30 20:20:39','',1279,'https://lantern-realty.com/?p=2554',0,'revision','',0),(2555,1,'2022-04-30 20:20:39','2022-04-30 20:20:39','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:20:39','2022-04-30 20:20:39','',1279,'https://lantern-realty.com/?p=2555',0,'revision','',0),(2556,1,'2022-04-30 20:20:40','2022-04-30 20:20:40','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:20:40','2022-04-30 20:20:40','',1279,'https://lantern-realty.com/?p=2556',0,'revision','',0),(2557,1,'2022-04-30 20:21:21','2022-04-30 20:21:21','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:21:21','2022-04-30 20:21:21','',1279,'https://lantern-realty.com/?p=2557',0,'revision','',0),(2558,1,'2022-04-30 20:21:22','2022-04-30 20:21:22','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:21:22','2022-04-30 20:21:22','',1279,'https://lantern-realty.com/?p=2558',0,'revision','',0),(2559,1,'2022-04-30 20:21:22','2022-04-30 20:21:22','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:21:22','2022-04-30 20:21:22','',1279,'https://lantern-realty.com/?p=2559',0,'revision','',0),(2560,1,'2022-04-30 20:24:22','2022-04-30 20:24:22','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:24:22','2022-04-30 20:24:22','',1279,'https://lantern-realty.com/?p=2560',0,'revision','',0),(2561,1,'2022-04-30 20:24:22','2022-04-30 20:24:22','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:24:22','2022-04-30 20:24:22','',1279,'https://lantern-realty.com/?p=2561',0,'revision','',0),(2562,1,'2022-04-30 20:24:23','2022-04-30 20:24:23','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:24:23','2022-04-30 20:24:23','',1279,'https://lantern-realty.com/?p=2562',0,'revision','',0),(2563,1,'2022-04-30 20:25:00','2022-04-30 20:25:00','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:25:00','2022-04-30 20:25:00','',1279,'https://lantern-realty.com/?p=2563',0,'revision','',0),(2564,1,'2022-04-30 20:25:00','2022-04-30 20:25:00','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:25:00','2022-04-30 20:25:00','',1279,'https://lantern-realty.com/?p=2564',0,'revision','',0),(2565,1,'2022-04-30 20:25:00','2022-04-30 20:25:00','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:25:00','2022-04-30 20:25:00','',1279,'https://lantern-realty.com/?p=2565',0,'revision','',0),(2566,1,'2022-04-30 20:29:54','2022-04-30 20:29:54','','Lantern Harrisburg','','inherit','closed','closed','','harrisburg','','','2022-04-30 20:30:11','2022-04-30 20:30:11','',1279,'https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png',0,'attachment','image/png',0),(2567,1,'2022-04-30 20:30:18','2022-04-30 20:30:18','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:30:18','2022-04-30 20:30:18','',1279,'https://lantern-realty.com/?p=2567',0,'revision','',0),(2568,1,'2022-04-30 20:30:18','2022-04-30 20:30:18','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:30:18','2022-04-30 20:30:18','',1279,'https://lantern-realty.com/?p=2568',0,'revision','',0),(2570,1,'2022-04-30 20:32:09','2022-04-30 20:32:09','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:32:09','2022-04-30 20:32:09','',1279,'https://lantern-realty.com/?p=2570',0,'revision','',0),(2571,1,'2022-04-30 20:32:10','2022-04-30 20:32:10','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:32:10','2022-04-30 20:32:10','',1279,'https://lantern-realty.com/?p=2571',0,'revision','',0),(2572,1,'2022-04-30 20:32:11','2022-04-30 20:32:11','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:32:11','2022-04-30 20:32:11','',1279,'https://lantern-realty.com/?p=2572',0,'revision','',0),(2573,1,'2022-04-30 20:36:02','2022-04-30 20:36:02','','Lantern Lexington','','inherit','closed','closed','','lexington','','','2022-04-30 20:36:15','2022-04-30 20:36:15','',1279,'https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png',0,'attachment','image/png',0),(2574,1,'2022-04-30 20:36:23','2022-04-30 20:36:23','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:36:23','2022-04-30 20:36:23','',1279,'https://lantern-realty.com/?p=2574',0,'revision','',0),(2575,1,'2022-04-30 20:36:23','2022-04-30 20:36:23','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 20:36:23','2022-04-30 20:36:23','',1279,'https://lantern-realty.com/?p=2575',0,'revision','',0),(2577,1,'2022-04-30 21:36:43','2022-04-30 21:36:43','','Lantern Tennessee','','inherit','closed','closed','','tennessee','','','2022-04-30 21:36:58','2022-04-30 21:36:58','',1279,'https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png',0,'attachment','image/png',0),(2582,1,'2022-04-30 21:41:13','2022-04-30 21:41:13','','Raleigh','','inherit','','closed','','raleigh','','','2022-04-30 21:41:13','2022-04-30 21:41:13','',1279,'https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png',0,'attachment','image/png',0),(2583,1,'2022-04-30 21:41:25','2022-04-30 21:41:25','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:41:25','2022-04-30 21:41:25','',1279,'https://lantern-realty.com/?p=2583',0,'revision','',0),(2579,1,'2022-04-30 21:38:27','2022-04-30 21:38:27','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:38:27','2022-04-30 21:38:27','',1279,'https://lantern-realty.com/?p=2579',0,'revision','',0),(2580,1,'2022-04-30 21:38:27','2022-04-30 21:38:27','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:38:27','2022-04-30 21:38:27','',1279,'https://lantern-realty.com/?p=2580',0,'revision','',0),(2584,1,'2022-04-30 21:41:25','2022-04-30 21:41:25','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"512\" height=\"512\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w\" sizes=\"(max-width: 512px) 100vw, 512px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:41:25','2022-04-30 21:41:25','',1279,'https://lantern-realty.com/?p=2584',0,'revision','',0),(2586,1,'2022-04-30 21:45:35','2022-04-30 21:45:35','','Lantern Salisbury','','inherit','closed','closed','','salisbury-5','','','2022-04-30 21:45:50','2022-04-30 21:45:50','',1279,'https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png',0,'attachment','image/png',0),(2587,1,'2022-04-30 21:45:53','2022-04-30 21:45:53','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:45:53','2022-04-30 21:45:53','',1279,'https://lantern-realty.com/?p=2587',0,'revision','',0),(2588,1,'2022-04-30 21:45:53','2022-04-30 21:45:53','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"720\" height=\"809\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office.jpg 720w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-267x300.jpg 267w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-133x150.jpg 133w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-350x393.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Salisbury-Office-427x480.jpg 427w\" sizes=\"(max-width: 720px) 100vw, 720px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:45:53','2022-04-30 21:45:53','',1279,'https://lantern-realty.com/?p=2588',0,'revision','',0),(2590,1,'2022-04-30 21:47:49','2022-04-30 21:47:49','','Lantern Kannapolis','','inherit','closed','closed','','kannapolis','','','2022-04-30 21:48:02','2022-04-30 21:48:02','',1279,'https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png',0,'attachment','image/png',0),(2591,1,'2022-04-30 21:48:07','2022-04-30 21:48:07','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:48:07','2022-04-30 21:48:07','',1279,'https://lantern-realty.com/?p=2591',0,'revision','',0),(2592,1,'2022-04-30 21:48:07','2022-04-30 21:48:07','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"452\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis.jpg 580w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-300x234.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-150x117.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Lantern-Main-Office-Kannapolis-350x273.jpg 350w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:48:07','2022-04-30 21:48:07','',1279,'https://lantern-realty.com/?p=2592',0,'revision','',0),(2594,1,'2022-04-30 21:49:51','2022-04-30 21:49:51','','Lantern Albemarle','','inherit','closed','closed','','albemarle','','','2022-04-30 21:50:05','2022-04-30 21:50:05','',1279,'https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png',0,'attachment','image/png',0),(2595,1,'2022-04-30 21:50:07','2022-04-30 21:50:07','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:50:07','2022-04-30 21:50:07','',1279,'https://lantern-realty.com/?p=2595',0,'revision','',0),(2596,1,'2022-04-30 21:50:07','2022-04-30 21:50:07','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"600\" height=\"400\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team.jpg 600w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-300x200.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Lantern-Albemarle-Team-496x331.jpg 496w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:50:07','2022-04-30 21:50:07','',1279,'https://lantern-realty.com/?p=2596',0,'revision','',0),(2598,1,'2022-04-30 21:52:23','2022-04-30 21:52:23','<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Agency','','publish','closed','closed','','agency','','','2022-04-30 21:52:23','2022-04-30 21:52:23','',0,'https://lantern-realty.com/?elementor_library=agency',0,'elementor_library','',0),(2599,1,'2022-04-30 21:52:23','2022-04-30 21:52:23','','Agency','','inherit','closed','closed','','2598-revision-v1','','','2022-04-30 21:52:23','2022-04-30 21:52:23','',2598,'https://lantern-realty.com/?p=2599',0,'revision','',0),(2600,1,'2022-04-30 21:52:23','2022-04-30 21:52:23','<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>','Agency','','inherit','closed','closed','','2598-revision-v1','','','2022-04-30 21:52:23','2022-04-30 21:52:23','',2598,'https://lantern-realty.com/?p=2600',0,'revision','',0),(2601,1,'2022-04-30 21:54:57','2022-04-30 21:54:57','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:54:57','2022-04-30 21:54:57','',1279,'https://lantern-realty.com/?p=2601',0,'revision','',0),(2602,1,'2022-04-30 21:54:58','2022-04-30 21:54:58','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:54:58','2022-04-30 21:54:58','',1279,'https://lantern-realty.com/?p=2602',0,'revision','',0),(2603,1,'2022-04-30 21:54:58','2022-04-30 21:54:58','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n			<h3><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Main Office</a></h3>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:54:58','2022-04-30 21:54:58','',1279,'https://lantern-realty.com/?p=2603',0,'revision','',0),(2604,1,'2022-04-30 21:56:24','2022-04-30 21:56:24','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n			<h3><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Main Office</a></h3>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:56:24','2022-04-30 21:56:24','',1279,'https://lantern-realty.com/?p=2604',0,'revision','',0),(2605,1,'2022-04-30 21:56:24','2022-04-30 21:56:24','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n			<h3><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Main Office</a></h3>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:56:24','2022-04-30 21:56:24','',1279,'https://lantern-realty.com/?p=2605',0,'revision','',0),(2606,1,'2022-04-30 21:56:25','2022-04-30 21:56:25','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n			<h3><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Main Office</a></h3>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-04-30 21:56:25','2022-04-30 21:56:25','',1279,'https://lantern-realty.com/?p=2606',0,'revision','',0),(2607,1,'2022-04-30 22:02:46','2022-04-30 22:02:46','','Sandi Laney','','inherit','closed','closed','','427-revision-v1','','','2022-04-30 22:02:46','2022-04-30 22:02:46','',427,'https://lantern-realty.com/?p=2607',0,'revision','',0),(2608,1,'2022-04-30 22:24:39','2022-04-30 22:24:39','<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','publish','closed','closed','','the-lantern-team-new','','','2022-04-30 23:14:23','2022-04-30 23:14:23','',0,'https://lantern-realty.com/?page_id=2608',0,'page','',0),(2609,1,'2022-04-30 22:24:39','2022-04-30 22:24:39','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">								</a>\n<h1>Meet the Lantern Team</h1>\n&nbsp; &nbsp; &nbsp;The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.\n<h2>Lantern Founders</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nWelcome! I appreciate you taking the time to see what I am all about....\n<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nMy name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...\n<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nMy name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 -\nCovering Kannapolis and Southern Rowan County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in upstate New York, I moved to Concord with my family...\n<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in Cabarrus County, Annie Boger graduated from Concord High School and...\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...\n<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBrenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Cabarrus/Rowan area my whole life. My children were raised...\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a resident of Cabarrus County for almost 30 years and absolutely...\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in the small town of Mount Pleasant she is embedded with...\n<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Concord area since 2003, and have enjoyed watching our...\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy real estate career started with a fire. Three months into our new marriage,...\n<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a native of New Jersey, but I have resided in the Charlotte...\n<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Erin Hyman. I have lived in Kannapolis all my life, graduating...\n<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Sarah Horn. I was born and raised in North Carolina for...\n<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....\n<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI was born in Lexington, Kentucky, which might explain my love for horses and...\n<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Tammy Fox and I have lived in the Kannapolis area my...\n<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThe Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...\n<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nRochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...\n<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHelping folks find a home that fits their needs, or helping someone sell a...\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWelcome to Lantern Realty and Development!&nbsp; I have been an active member of the...\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAmanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...\n<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nJerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...\n<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThe right Realtor really does make all the difference! Since 1998 it is my...\n<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI was born and raised in Cabarrus County and now reside in Concord. I...\n<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a people person by nature. I have a desire and passion in...\n<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...\n<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHi! Thank you for taking the time to see a little about me and...\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHey, I’m Chad Rothlin and my passion is helping people! I taught special education...\n<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHi! My name is Dawn and I was born and raised in Cabarrus County....\n<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Kimberly Trask and I have lived in Cabarrus County since 2013....\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nRichard, originally from Florida, has made North Carolina his permanent home. However, he is...\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWendell is a lifelong resident of the Charlotte Metro area which is a plus...\n<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nLet me put my 20 years of experience in our local market (Cabarrus &amp;...\n<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA NC native, resident of Cabarrus County for over 30 years and a graduate...\n<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThe Metro Charlotte area is a great place to live and work, which is...\n<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144\nCovering Rowan County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nSandra has lived in North Carolina her whole life. Her passion is to help...\n<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nPlease visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...\n<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nDon’t miss out, let’s make your dreams come true! Melissa, licensed in 2003, is...\n<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have over twenty years experience in New home construction and Real estate sales....\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBen has resided in the Rowan and Cabarrus County area of North Carolina for...\n<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCourtney loves helping others reach their goals! She has experience working residential sales, land...\n<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMelissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’m so happy you’re here! I grew up here in Charlotte, I’ve lived in...\n<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>\n<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075\nCovering Greater Cabarrus County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...\n<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMaranda brings experience as both a Realtor and insurance agent to assist her clients...\n<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThank you for checking out my profile! I moved to NC in 1996 and...\n<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nJanice provides all of her clients with a level of service that includes going...\n<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWhether you’re a first-time home buyer in search of your dream home, a seller...\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWith over 25 years buying and selling real estate, we can assist you with...\n<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAfter working with a few different real estate agents and purchasing several properties –...\n<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn in the beautiful and modern city of Ningbo, China, I worked as a...\n<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>\n<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001\nCovering Stanly County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a Realtor, Sheila’s first priority is to make her clients happy and build...\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Brenda Bingham and I have lived in the Concord area since...\n<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Amanda Cody and I have over 16 years’ experience as a...\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Mike Fullerton, I have been selling Real Estate in the Stanly...\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI grew up as a Rowan County resident and moved to Richfield when my...\n<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117\nCovering Iredell County and Lake Norman Area</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA North Carolinian for the last 18 years, I am originally from New Jersey....\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy passion is helping people achieve the goals they have set out before them....\n<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>\n<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p>\n<p style=\"text-align: center;\">Asheville, North Carolina 28803</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAsheville and Western North Carolina are great places to live and work, which is...\n<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’ve been in all aspects of real estate for well over 20 years. I...\n<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA native of Asheville, I have enjoyed a career in Accounting and Tax preparation....\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCasey is a North Carolina native and has been living in the amazing Asheville...\n<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMaking Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...\n<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHaving lived in the Asheville area all my life, I understand why it’s one...\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...\n<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nLove Where You Live…For me this has always been the most important factor when...\n<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 22:24:39','2022-04-30 22:24:39','',2608,'https://lantern-realty.com/?p=2609',0,'revision','',0);
INSERT INTO `lrwp_posts` VALUES (2613,1,'2022-04-30 22:38:34','2022-04-30 22:38:34','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in upstate New York, I moved to Concord with my family...	\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a native of New Jersey, but I have resided in the Charlotte...	\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Erin Hyman. I have lived in Kannapolis all my life, graduating...	\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Sarah Horn. I was born and raised in North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....	\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born in Lexington, Kentucky, which might explain my love for horses and...	\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Tammy Fox and I have lived in the Kannapolis area my...	\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...	\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a people person by nature. I have a desire and passion in...	\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...	\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! Thank you for taking the time to see a little about me and...	\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education...	\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! My name is Dawn and I was born and raised in Cabarrus County....	\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Richard, originally from Florida, has made North Carolina his permanent home. However, he is...	\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Wendell is a lifelong resident of the Charlotte Metro area which is a plus...	\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Let me put my 20 years of experience in our local market (Cabarrus &amp;...	\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A NC native, resident of Cabarrus County for over 30 years and a graduate...	\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Metro Charlotte area is a great place to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Sandra has lived in North Carolina her whole life. Her passion is to help...	\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...	\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is...	\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ben has resided in the Rowan and Cabarrus County area of North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney loves helping others reach their goals! She has experience working residential sales, land...	\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in...	\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...	\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thank you for checking out my profile! I moved to NC in 1996 and...	\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		With over 25 years buying and selling real estate, we can assist you with...	\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		After working with a few different real estate agents and purchasing several properties &#8211;...	\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I grew up as a Rowan County resident and moved to Richfield when my...	\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My passion is helping people achieve the goals they have set out before them....	\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...	\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 22:38:34','2022-04-30 22:38:34','',2608,'https://lantern-realty.com/?p=2613',0,'revision','',0),(2611,1,'2022-04-30 22:38:31','2022-04-30 22:38:31','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">								</a>\n<h1>Meet the Lantern Team</h1>\n&nbsp; &nbsp; &nbsp;The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.\n<h2>Lantern Founders</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nWelcome! I appreciate you taking the time to see what I am all about....\n<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nMy name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...\n<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nMy name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 -\nCovering Kannapolis and Southern Rowan County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in upstate New York, I moved to Concord with my family...\n<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in Cabarrus County, Annie Boger graduated from Concord High School and...\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...\n<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBrenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Cabarrus/Rowan area my whole life. My children were raised...\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a resident of Cabarrus County for almost 30 years and absolutely...\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in the small town of Mount Pleasant she is embedded with...\n<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Concord area since 2003, and have enjoyed watching our...\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy real estate career started with a fire. Three months into our new marriage,...\n<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a native of New Jersey, but I have resided in the Charlotte...\n<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Erin Hyman. I have lived in Kannapolis all my life, graduating...\n<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Sarah Horn. I was born and raised in North Carolina for...\n<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....\n<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI was born in Lexington, Kentucky, which might explain my love for horses and...\n<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Tammy Fox and I have lived in the Kannapolis area my...\n<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThe Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...\n<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nRochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...\n<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHelping folks find a home that fits their needs, or helping someone sell a...\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWelcome to Lantern Realty and Development!&nbsp; I have been an active member of the...\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAmanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...\n<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nJerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...\n<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThe right Realtor really does make all the difference! Since 1998 it is my...\n<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI was born and raised in Cabarrus County and now reside in Concord. I...\n<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a people person by nature. I have a desire and passion in...\n<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...\n<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHi! Thank you for taking the time to see a little about me and...\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHey, I’m Chad Rothlin and my passion is helping people! I taught special education...\n<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHi! My name is Dawn and I was born and raised in Cabarrus County....\n<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Kimberly Trask and I have lived in Cabarrus County since 2013....\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nRichard, originally from Florida, has made North Carolina his permanent home. However, he is...\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWendell is a lifelong resident of the Charlotte Metro area which is a plus...\n<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nLet me put my 20 years of experience in our local market (Cabarrus &amp;...\n<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA NC native, resident of Cabarrus County for over 30 years and a graduate...\n<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThe Metro Charlotte area is a great place to live and work, which is...\n<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144\nCovering Rowan County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nSandra has lived in North Carolina her whole life. Her passion is to help...\n<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nPlease visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...\n<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nDon’t miss out, let’s make your dreams come true! Melissa, licensed in 2003, is...\n<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have over twenty years experience in New home construction and Real estate sales....\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBen has resided in the Rowan and Cabarrus County area of North Carolina for...\n<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCourtney loves helping others reach their goals! She has experience working residential sales, land...\n<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMelissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’m so happy you’re here! I grew up here in Charlotte, I’ve lived in...\n<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>\n<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075\nCovering Greater Cabarrus County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...\n<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMaranda brings experience as both a Realtor and insurance agent to assist her clients...\n<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThank you for checking out my profile! I moved to NC in 1996 and...\n<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nJanice provides all of her clients with a level of service that includes going...\n<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWhether you’re a first-time home buyer in search of your dream home, a seller...\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWith over 25 years buying and selling real estate, we can assist you with...\n<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAfter working with a few different real estate agents and purchasing several properties –...\n<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn in the beautiful and modern city of Ningbo, China, I worked as a...\n<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>\n<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001\nCovering Stanly County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a Realtor, Sheila’s first priority is to make her clients happy and build...\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Brenda Bingham and I have lived in the Concord area since...\n<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Amanda Cody and I have over 16 years’ experience as a...\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Mike Fullerton, I have been selling Real Estate in the Stanly...\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI grew up as a Rowan County resident and moved to Richfield when my...\n<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117\nCovering Iredell County and Lake Norman Area</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA North Carolinian for the last 18 years, I am originally from New Jersey....\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy passion is helping people achieve the goals they have set out before them....\n<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>\n<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p>\n<p style=\"text-align: center;\">Asheville, North Carolina 28803</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAsheville and Western North Carolina are great places to live and work, which is...\n<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’ve been in all aspects of real estate for well over 20 years. I...\n<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA native of Asheville, I have enjoyed a career in Accounting and Tax preparation....\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCasey is a North Carolina native and has been living in the amazing Asheville...\n<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMaking Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...\n<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHaving lived in the Asheville area all my life, I understand why it’s one...\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...\n<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nLove Where You Live…For me this has always been the most important factor when...\n<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 22:38:31','2022-04-30 22:38:31','',2608,'https://lantern-realty.com/?p=2611',0,'revision','',0),(2612,1,'2022-04-30 22:38:32','2022-04-30 22:38:32','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">								</a>\n<h1>Meet the Lantern Team</h1>\n&nbsp; &nbsp; &nbsp;The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.\n<h2>Lantern Founders</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nWelcome! I appreciate you taking the time to see what I am all about....\n<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nMy name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...\n<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\nOwner/Broker                                , Lantern Realty and Development\nMy name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....\n<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 -\nCovering Kannapolis and Southern Rowan County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in upstate New York, I moved to Concord with my family...\n<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in Cabarrus County, Annie Boger graduated from Concord High School and...\n<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...\n<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBrenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...\n<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Cabarrus/Rowan area my whole life. My children were raised...\n<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have been a resident of Cabarrus County for almost 30 years and absolutely...\n<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn and raised in the small town of Mount Pleasant she is embedded with...\n<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have lived in the Concord area since 2003, and have enjoyed watching our...\n<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy real estate career started with a fire. Three months into our new marriage,...\n<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a native of New Jersey, but I have resided in the Charlotte...\n<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Erin Hyman. I have lived in Kannapolis all my life, graduating...\n<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Sarah Horn. I was born and raised in North Carolina for...\n<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....\n<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...\n<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI was born in Lexington, Kentucky, which might explain my love for horses and...\n<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Tammy Fox and I have lived in the Kannapolis area my...\n<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThe Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...\n<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nRochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...\n<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHelping folks find a home that fits their needs, or helping someone sell a...\n<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWelcome to Lantern Realty and Development!&nbsp; I have been an active member of the...\n<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAmanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...\n<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nJerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...\n<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThe right Realtor really does make all the difference! Since 1998 it is my...\n<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI was born and raised in Cabarrus County and now reside in Concord. I...\n<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am a people person by nature. I have a desire and passion in...\n<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...\n<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n“Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...\n<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHi! Thank you for taking the time to see a little about me and...\n<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHey, I’m Chad Rothlin and my passion is helping people! I taught special education...\n<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHi! My name is Dawn and I was born and raised in Cabarrus County....\n<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Kimberly Trask and I have lived in Cabarrus County since 2013....\n<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nRichard, originally from Florida, has made North Carolina his permanent home. However, he is...\n<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWendell is a lifelong resident of the Charlotte Metro area which is a plus...\n<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nLet me put my 20 years of experience in our local market (Cabarrus &amp;...\n<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA NC native, resident of Cabarrus County for over 30 years and a graduate...\n<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThe Metro Charlotte area is a great place to live and work, which is...\n<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144\nCovering Rowan County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nSandra has lived in North Carolina her whole life. Her passion is to help...\n<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nPlease visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...\n<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nDon’t miss out, let’s make your dreams come true! Melissa, licensed in 2003, is...\n<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI have over twenty years experience in New home construction and Real estate sales....\n<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBen has resided in the Rowan and Cabarrus County area of North Carolina for...\n<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCourtney loves helping others reach their goals! She has experience working residential sales, land...\n<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMelissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...\n<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’m so happy you’re here! I grew up here in Charlotte, I’ve lived in...\n<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>\n<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075\nCovering Greater Cabarrus County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...\n<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMaranda brings experience as both a Realtor and insurance agent to assist her clients...\n<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nThank you for checking out my profile! I moved to NC in 1996 and...\n<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...\n<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nJanice provides all of her clients with a level of service that includes going...\n<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWhether you’re a first-time home buyer in search of your dream home, a seller...\n<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nWith over 25 years buying and selling real estate, we can assist you with...\n<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAfter working with a few different real estate agents and purchasing several properties –...\n<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nBorn in the beautiful and modern city of Ningbo, China, I worked as a...\n<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>\n<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001\nCovering Stanly County</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAs a Realtor, Sheila’s first priority is to make her clients happy and build...\n<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Brenda Bingham and I have lived in the Concord area since...\n<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Amanda Cody and I have over 16 years’ experience as a...\n<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy name is Mike Fullerton, I have been selling Real Estate in the Stanly...\n<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI grew up as a Rowan County resident and moved to Richfield when my...\n<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>\n<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117\nCovering Iredell County and Lake Norman Area</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/april-bird/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA North Carolinian for the last 18 years, I am originally from New Jersey....\n<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMy passion is helping people achieve the goals they have set out before them....\n<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->\n<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>\n<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p>\n<p style=\"text-align: center;\">Asheville, North Carolina 28803</p>\n        <!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nAsheville and Western North Carolina are great places to live and work, which is...\n<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI’ve been in all aspects of real estate for well over 20 years. I...\n<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nA native of Asheville, I have enjoyed a career in Accounting and Tax preparation....\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nCasey is a North Carolina native and has been living in the amazing Asheville...\n<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nMaking Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...\n<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nHaving lived in the Asheville area all my life, I understand why it’s one...\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nI relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...\n<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\">		</a>\n<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\nLicensed Agent                                , Lantern Realty and Development\nLove Where You Live…For me this has always been the most important factor when...\n<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 22:38:32','2022-04-30 22:38:32','',2608,'https://lantern-realty.com/?p=2612',0,'revision','',0),(2629,1,'2022-04-30 23:09:55','2022-04-30 23:09:55','<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:09:55','2022-04-30 23:09:55','',2608,'https://lantern-realty.com/?p=2629',0,'revision','',0),(2617,1,'2022-04-30 23:05:08','2022-04-30 23:05:08','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Agents</a></h2>		\n		<p style=\"text-align: left;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br>\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:05:08','2022-04-30 23:05:08','',2608,'https://lantern-realty.com/?p=2617',0,'revision','',0),(2615,1,'2022-04-30 23:05:06','2022-04-30 23:05:06','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in upstate New York, I moved to Concord with my family...	\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a native of New Jersey, but I have resided in the Charlotte...	\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Erin Hyman. I have lived in Kannapolis all my life, graduating...	\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Sarah Horn. I was born and raised in North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....	\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born in Lexington, Kentucky, which might explain my love for horses and...	\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Tammy Fox and I have lived in the Kannapolis area my...	\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...	\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a people person by nature. I have a desire and passion in...	\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...	\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! Thank you for taking the time to see a little about me and...	\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education...	\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! My name is Dawn and I was born and raised in Cabarrus County....	\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Richard, originally from Florida, has made North Carolina his permanent home. However, he is...	\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Wendell is a lifelong resident of the Charlotte Metro area which is a plus...	\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Let me put my 20 years of experience in our local market (Cabarrus &amp;...	\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A NC native, resident of Cabarrus County for over 30 years and a graduate...	\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Metro Charlotte area is a great place to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Sandra has lived in North Carolina her whole life. Her passion is to help...	\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...	\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is...	\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ben has resided in the Rowan and Cabarrus County area of North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney loves helping others reach their goals! She has experience working residential sales, land...	\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in...	\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...	\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thank you for checking out my profile! I moved to NC in 1996 and...	\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		With over 25 years buying and selling real estate, we can assist you with...	\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		After working with a few different real estate agents and purchasing several properties &#8211;...	\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I grew up as a Rowan County resident and moved to Richfield when my...	\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My passion is helping people achieve the goals they have set out before them....	\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...	\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:05:06','2022-04-30 23:05:06','',2608,'https://lantern-realty.com/?p=2615',0,'revision','',0),(2616,1,'2022-04-30 23:05:06','2022-04-30 23:05:06','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in upstate New York, I moved to Concord with my family...	\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a native of New Jersey, but I have resided in the Charlotte...	\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Erin Hyman. I have lived in Kannapolis all my life, graduating...	\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Sarah Horn. I was born and raised in North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....	\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born in Lexington, Kentucky, which might explain my love for horses and...	\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Tammy Fox and I have lived in the Kannapolis area my...	\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...	\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a people person by nature. I have a desire and passion in...	\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...	\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! Thank you for taking the time to see a little about me and...	\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education...	\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! My name is Dawn and I was born and raised in Cabarrus County....	\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Richard, originally from Florida, has made North Carolina his permanent home. However, he is...	\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Wendell is a lifelong resident of the Charlotte Metro area which is a plus...	\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Let me put my 20 years of experience in our local market (Cabarrus &amp;...	\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A NC native, resident of Cabarrus County for over 30 years and a graduate...	\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Metro Charlotte area is a great place to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Sandra has lived in North Carolina her whole life. Her passion is to help...	\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...	\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is...	\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ben has resided in the Rowan and Cabarrus County area of North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney loves helping others reach their goals! She has experience working residential sales, land...	\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in...	\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...	\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thank you for checking out my profile! I moved to NC in 1996 and...	\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		With over 25 years buying and selling real estate, we can assist you with...	\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		After working with a few different real estate agents and purchasing several properties &#8211;...	\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I grew up as a Rowan County resident and moved to Richfield when my...	\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My passion is helping people achieve the goals they have set out before them....	\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...	\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:05:06','2022-04-30 23:05:06','',2608,'https://lantern-realty.com/?p=2616',0,'revision','',0),(2618,1,'2022-04-30 23:06:28','2022-04-30 23:06:28','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Agents</a></h2>		\n		<p style=\"text-align: left;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br>\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:06:28','2022-04-30 23:06:28','',2608,'https://lantern-realty.com/?p=2618',0,'revision','',0),(2619,1,'2022-04-30 23:06:29','2022-04-30 23:06:29','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Agents</a></h2>		\n		<p style=\"text-align: left;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br>\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:06:29','2022-04-30 23:06:29','',2608,'https://lantern-realty.com/?p=2619',0,'revision','',0),(2620,1,'2022-04-30 23:06:29','2022-04-30 23:06:29','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:06:29','2022-04-30 23:06:29','',2608,'https://lantern-realty.com/?p=2620',0,'revision','',0);
INSERT INTO `lrwp_posts` VALUES (2621,1,'2022-04-30 23:06:42','2022-04-30 23:06:42','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:06:42','2022-04-30 23:06:42','',2608,'https://lantern-realty.com/?p=2621',0,'revision','',0),(2622,1,'2022-04-30 23:06:42','2022-04-30 23:06:42','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:06:42','2022-04-30 23:06:42','',2608,'https://lantern-realty.com/?p=2622',0,'revision','',0),(2623,1,'2022-04-30 23:06:42','2022-04-30 23:06:42','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:06:42','2022-04-30 23:06:42','',2608,'https://lantern-realty.com/?p=2623',0,'revision','',0),(2624,1,'2022-04-30 23:06:52','2022-04-30 23:06:52','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:06:52','2022-04-30 23:06:52','',2608,'https://lantern-realty.com/?p=2624',0,'revision','',0),(2625,1,'2022-04-30 23:06:52','2022-04-30 23:06:52','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:06:52','2022-04-30 23:06:52','',2608,'https://lantern-realty.com/?p=2625',0,'revision','',0),(2626,1,'2022-04-30 23:06:53','2022-04-30 23:06:53','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:06:53','2022-04-30 23:06:53','',2608,'https://lantern-realty.com/?p=2626',0,'revision','',0),(2627,1,'2022-04-30 23:09:55','2022-04-30 23:09:55','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:09:55','2022-04-30 23:09:55','',2608,'https://lantern-realty.com/?p=2627',0,'revision','',0),(2628,1,'2022-04-30 23:09:55','2022-04-30 23:09:55','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:09:55','2022-04-30 23:09:55','',2608,'https://lantern-realty.com/?p=2628',0,'revision','',0),(2630,1,'2022-04-30 23:11:35','2022-04-30 23:11:35','<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:11:35','2022-04-30 23:11:35','',2608,'https://lantern-realty.com/?p=2630',0,'revision','',0),(2631,1,'2022-04-30 23:11:35','2022-04-30 23:11:35','<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:11:35','2022-04-30 23:11:35','',2608,'https://lantern-realty.com/?p=2631',0,'revision','',0);
INSERT INTO `lrwp_posts` VALUES (2632,1,'2022-04-30 23:11:36','2022-04-30 23:11:36','<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:11:36','2022-04-30 23:11:36','',2608,'https://lantern-realty.com/?p=2632',0,'revision','',0),(2633,1,'2022-04-30 23:14:22','2022-04-30 23:14:22','<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:14:22','2022-04-30 23:14:22','',2608,'https://lantern-realty.com/?p=2633',0,'revision','',0),(2634,1,'2022-04-30 23:14:22','2022-04-30 23:14:22','<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:14:22','2022-04-30 23:14:22','',2608,'https://lantern-realty.com/?p=2634',0,'revision','',0),(2635,1,'2022-04-30 23:14:23','2022-04-30 23:14:23','<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-revision-v1','','','2022-04-30 23:14:23','2022-04-30 23:14:23','',2608,'https://lantern-realty.com/?p=2635',0,'revision','',0),(2636,1,'2022-04-30 23:16:19','2022-04-30 23:16:19','<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - Covering Kannapolis and Southern Rowan County\n<br />\n119 West Avenue Kannapolis, North Carolina 28081</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','2608-autosave-v1','','','2022-04-30 23:16:20','2022-04-30 23:16:20','',2608,'https://lantern-realty.com/?p=2636',0,'revision','',0),(2637,9,'2022-05-02 16:36:14','2022-05-02 16:36:14','<div class=\"postie-post\"><div dir=\"ltr\">Please join us and Nick Lovelace with Knipp Law in the Kannapolis office as Nick tackles EM, DD, Terminations and Disputes and what it means to you and your clients. You might not know what you think you know.  If you can join us in the office, please do. We miss your smiling faces.  If you are unable to attend, the zoom link is below.<br><br><b>Topic: Deposits, Terminations and Disputes w/Nick Lovelace and Knipp Law<br>Time: May 3, 2022 03:00 PM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/87274296365?pwd=ME9xQkNyWHpOWVdDdGg0YlI0ekEzQT09\">https://us02web.zoom.us/j/87274296365?pwd=ME9xQkNyWHpOWVdDdGg0YlI0ekEzQT09</a><br><br>Meeting ID: 872 7429 6365<br>Passcode: 915166<br>One tap mobile<br>+13126266799,,87274296365#,,,,*915166# US (Chicago)<br>+19292056099,,87274296365#,,,,*915166# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 872 7429 6365<br>Passcode: 915166<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kddTjhe9um\">https://us02web.zoom.us/u/kddTjhe9um</a><br><br><div><br></div></div>','Lantern Realty Invite - Deposits, Terminations &amp; Disputes May 3 at 3','','publish','closed','open','','lantern-realty-invite-deposits-terminations-disputes-may-3-at-3','','','2022-05-02 16:36:14','2022-05-02 16:36:14','',0,'https://lantern-realty.com/?p=2637',0,'post','',0),(2639,6,'2022-05-03 16:46:03','2022-05-03 16:46:03','<div class=\"postie-post\"><div dir=\"ltr\">Good Afternoon, I wanted to recap the Tuesday Think Tank we had this morning.  We had some really good info come out of it and I wanted to share as much as possible.  If you are missing these meetings, I would highly encourage you to join if possible. Here are a few items we discussed....<div><br></div><div>- What is a bedroom?  That question came up and I wanted everyone to read the info attached.  There is no definitive answer to this question.  </div><div><br></div><div>- Yesterday I sent out an NCAR Q&amp;A regarding Due Diligence checks and contracts (see attached).  The question was whether not receiving a due diligence check nullifies the contract.  The NCAR answer is \"no\".  One weapon a seller has in case they did not get the Due Diligence check in a timely manner is NCAR form 355.  It is available in Dotloop.  Also, you will need to use NCAR form 352 to terminate.  See attached.  Again, both are available in Dotloop.</div><div><br></div><div>- Lastly, Ryan Ivory with Arc Home Mortgage will be on our team call tomorrow to discuss interest rate increases and how to understand them.  I&#39;ve heard Ryan speak on this before and he does a very good job explaining how and what affects interest rates and how to under the effect of those changes.  I highly encourage you to attend.  Melissa will be sending out an email with the Zoom link later today.  </div><div><br></div><div>Hopefully this is all useful information.  <br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/05/What-Constitutes-a-Bedroom.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> What-Constitutes-a-Bedroom.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2022/05/LegalQA042822.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> LegalQA042822.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2022/05/355-T-Notice-To-Buyer-To-Deliver-Cash-Or-Immediately-Available-Funds-version-1.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 355-T-Notice-To-Buyer-To-Deliver-Cash-Or-Immediately-Available-Funds-version-1.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2022/05/352-T-Termination-of-Contract-Form-2-T-by-Notice-to-Buyer-from-Seller-version-1.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> 352-T-Termination-of-Contract-Form-2-T-by-Notice-to-Buyer-from-Seller-version-1.pdf</a><br /></div></div>','News &amp; Notes - Part 2','','publish','closed','open','','news-notes-part-2-2','','','2022-05-03 16:46:03','2022-05-03 16:46:03','',0,'https://lantern-realty.com/?p=2639',0,'post','',0),(2640,6,'2022-05-03 16:46:03','2022-05-03 16:46:03','','What-Constitutes-a-Bedroom.pdf','','inherit','closed','closed','','what-constitutes-a-bedroom','','','2022-05-03 16:46:03','2022-05-03 16:46:03','',2639,'https://lantern-realty.com/wp-content/uploads/2022/05/What-Constitutes-a-Bedroom.pdf',0,'attachment','application/pdf',0),(2641,6,'2022-05-03 16:46:03','2022-05-03 16:46:03','','LegalQA042822.pdf','','inherit','closed','closed','','legalqa042822','','','2022-05-03 16:46:03','2022-05-03 16:46:03','',2639,'https://lantern-realty.com/wp-content/uploads/2022/05/LegalQA042822.pdf',0,'attachment','application/pdf',0),(2642,6,'2022-05-03 16:46:03','2022-05-03 16:46:03','','355-T-Notice-To-Buyer-To-Deliver-Cash-Or-Immediately-Available-Funds-version-1.pdf','','inherit','closed','closed','','355-t-notice-to-buyer-to-deliver-cash-or-immediately-available-funds-version-1','','','2022-05-03 16:46:03','2022-05-03 16:46:03','',2639,'https://lantern-realty.com/wp-content/uploads/2022/05/355-T-Notice-To-Buyer-To-Deliver-Cash-Or-Immediately-Available-Funds-version-1.pdf',0,'attachment','application/pdf',0),(2643,6,'2022-05-03 16:46:03','2022-05-03 16:46:03','','352-T-Termination-of-Contract-Form-2-T-by-Notice-to-Buyer-from-Seller-version-1.pdf','','inherit','closed','closed','','352-t-termination-of-contract-form-2-t-by-notice-to-buyer-from-seller-version-1','','','2022-05-03 16:46:03','2022-05-03 16:46:03','',2639,'https://lantern-realty.com/wp-content/uploads/2022/05/352-T-Termination-of-Contract-Form-2-T-by-Notice-to-Buyer-from-Seller-version-1.pdf',0,'attachment','application/pdf',0),(2644,9,'2022-05-03 18:06:28','2022-05-03 18:06:28','<div class=\"postie-post\"><div dir=\"ltr\"><div>Please join us via Zoom for Lantern&#39;s team meeting featuring Ryan Ivory with ARC Mortgage.  He will let us know what is going on with these rates. Matthew Young with GEICO will be on to remind us of his value to you and your clients.<br><br><b>Topic: Lantern Realty Team Meeting<br>Time: May 4, 2022 11:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/81462490250?pwd=WjhaUDQ3Vm1GTGF3MGErc3ZkWWpKZz09\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/j/81462490250?pwd=WjhaUDQ3Vm1GTGF3MGErc3ZkWWpKZz09</a><br><br>Meeting ID: 814 6249 0250<br>Passcode: 838009<br>One tap mobile<br>+13126266799,,81462490250#,,,,*838009# US (Chicago)<br>+19292056099,,81462490250#,,,,*838009# US (New York)<br><br>Dial by your location<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>Meeting ID: 814 6249 0250<br>Passcode: 838009<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kcYhstjIo6\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/u/kcYhstjIo6</a><br><br></div><div><br></div><div><br></div><br clear=\"all\"><div><br></div></div>','Lantern Realty Meeting Zoom Invite with Ryan Ivory/ARC Mortgage and Rates These Days','','publish','closed','open','','lantern-realty-meeting-zoom-invite-with-ryan-ivory-arc-mortgage-and-rates-these-days','','','2022-05-03 18:06:28','2022-05-03 18:06:28','',0,'https://lantern-realty.com/?p=2644',0,'post','',0),(2645,0,'2022-05-04 15:42:19','2022-05-04 15:42:19','','227a8683','','inherit','','closed','','227a8683','','','2022-05-04 15:42:19','2022-05-04 15:42:19','',0,'https://lantern-realty.com/227a8683/',0,'attachment','image/jpeg',0),(2646,0,'2022-05-04 15:45:44','2022-05-04 15:45:44','','HS','','inherit','','closed','','hs','','','2022-05-04 15:45:44','2022-05-04 15:45:44','',0,'https://lantern-realty.com/hs/',0,'attachment','image/jpeg',0),(2647,6,'2022-05-04 16:46:18','2022-05-04 16:46:18','<div class=\"postie-post\"><div dir=\"ltr\">For those that missed today&#39;s team meeting, below is a link to our private YouTube channel for this video.  Ryan Ivory w/ ARC Home Mortgages spoke on rising interest rates and how that can and will affect buyers moving forward.<div><br></div><div>Very informative, I highly encourage you to view.  </div><div><br></div><div><a href=\"https://youtu.be/KSDXVLRrmBs\">https://youtu.be/KSDXVLRrmBs</a><br clear=\"all\"><div><br></div></div>','Lantern Team Meeting 05/04/2022','','publish','closed','open','','lantern-team-meeting-05-04-2022','','','2022-05-04 16:46:18','2022-05-04 16:46:18','',0,'https://lantern-realty.com/?p=2647',0,'post','',0),(2648,6,'2022-05-04 16:56:13','2022-05-04 16:56:13','<div class=\"postie-post\"><div dir=\"ltr\">Below is a link to the class held yesterday by Nic Lovelace of Knipp Law.  Very informative, especially in todays market.  <div><br></div><div><a href=\"https://youtu.be/qpwuqpK19Q4\">https://youtu.be/qpwuqpK19Q4</a><br clear=\"all\"><div><br></div></div>','Class - Deposits, Terminations &amp; Disputes - 05/03/2022','','publish','closed','open','','class-deposits-terminations-disputes-05-03-2022','','','2022-05-04 16:56:13','2022-05-04 16:56:13','',0,'https://lantern-realty.com/?p=2648',0,'post','',0),(2649,0,'2022-05-05 14:49:32','2022-05-05 14:49:32','','Megan_Owens','','inherit','closed','closed','','headshot-agency-affiliation','','','2022-06-24 00:40:27','2022-06-24 00:40:27','',0,'https://lantern-realty.com/headshot-agency-affiliation/',0,'attachment','image/png',0),(2650,0,'2022-05-05 22:30:10','2022-05-05 22:30:10','','Melinda_Mesimerr','','inherit','closed','closed','','hs-2','','','2022-06-24 00:35:05','2022-06-24 00:35:05','',0,'https://lantern-realty.com/hs-2/',0,'attachment','image/jpeg',0),(2651,0,'2022-05-06 16:49:36','2022-05-06 16:49:36','','4-2','','inherit','','closed','','4-2','','','2022-05-06 16:49:36','2022-05-06 16:49:36','',0,'https://lantern-realty.com/4-2/',0,'attachment','image/jpeg',0),(2653,0,'2022-05-10 17:07:15','2022-05-10 17:07:15','','Dawn_Fisher','','inherit','closed','closed','','eacd56f5-e4d1-496e-9f8c-9518bcffcc22','','','2022-06-24 00:44:25','2022-06-24 00:44:25','',0,'https://lantern-realty.com/eacd56f5-e4d1-496e-9f8c-9518bcffcc22/',0,'attachment','image/jpeg',0),(2654,0,'2022-05-14 02:18:51','2022-05-14 02:18:51','','238289776_10104327108332416_32970513820961977_n','','inherit','','closed','','238289776_10104327108332416_32970513820961977_n','','','2022-05-14 02:18:51','2022-05-14 02:18:51','',0,'https://lantern-realty.com/238289776_10104327108332416_32970513820961977_n/',0,'attachment','image/jpeg',0),(2655,0,'2022-05-15 16:54:04','2022-05-15 16:54:04','','Colleen_Viteri','','inherit','closed','closed','','img-1433','','','2022-06-24 00:50:34','2022-06-24 00:50:34','',0,'https://lantern-realty.com/img-1433/',0,'attachment','image/jpeg',0),(2656,6,'2022-05-16 15:56:04','2022-05-16 15:56:04','<div class=\"postie-post\"><div dir=\"ltr\">Good morning! Here are some news &amp; notes for your upcoming week....<div><br></div><div>- We have been blessed with a tremendous amount of growth this year.  I have attached an updated roster with our agents in every office.  </div><div>- We do have one more date left available for the Cannon Ballers Suite.  That is 7/27, it&#39;s $500.  You receive 20 tickets and 4 parking passes.  Let me know if you are interested.  First come, first serve.</div><div>- We are very fortunate to now have access to the NC Coastal MLS (Flex MLS) through the Neuse River Realtor Association.  If you are interested in joining, please let me know.  </div><div>- Our Ladies of Lantern annual event is this Thursday at the Laureate Center (401 Laureate Way) in Kannapolis. The event runs from 11-1pm.  </div><div>- Our Lantern Loves meeting will be this Wednesday at 3pm in the Kannapolis office and via Zoom.  We would love to have participation from all offices.  The purpose of Lantern Loves is to serve our agent family, if needs arrive and the communities we serve.  If you would like to serve on the board of directors, please contact Melissa Yates at </div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"313\" style=\"border-collapse:collapse;width:235pt\">  <colgroup><col width=\"313\" style=\"width:235pt\">  </colgroup><tbody><tr height=\"21\" style=\"height:15.75pt\">\r\n  <td height=\"21\" class=\"gmail-xl65\" width=\"313\" style=\"height:15.75pt;width:235pt;color:rgb(5,99,193);text-decoration-line:underline;border:0.5pt solid black;padding-top:1px;padding-right:1px;padding-left:1px;font-size:11pt;font-family:Calibri;vertical-align:bottom;white-space:nowrap\"><a href=\"mailto:melissayates4u@gmail.com\"><a href=\"mailto:melissayates4u@gmail.com\" >melissayates4u@gmail.com</a></a></td>\r\n </tr> </tbody></table><div>- Lastly, dont forget to <b><i>RENEW YOUR LICENSE!!!!! </i></b>Yesterday was the first day for renewals, you have until June 30th.  <b style=\"font-style:italic\">NO EXCUSES!!!!! </b>Remember, if you do not pay then your license goes EXPIRED. We can not pay an unlicensed entity.</div><div><br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/05/LRD-Roster_012422-3.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_012422-3.xlsx</a><br /></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-48','','','2022-05-16 15:56:04','2022-05-16 15:56:04','',0,'https://lantern-realty.com/?p=2656',0,'post','',0),(2657,6,'2022-05-16 15:56:03','2022-05-16 15:56:03','','LRD-Roster_012422-3.xlsx','','inherit','closed','closed','','lrd-roster_012422-3','','','2022-05-16 15:56:03','2022-05-16 15:56:03','',2656,'https://lantern-realty.com/wp-content/uploads/2022/05/LRD-Roster_012422-3.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2658,6,'2022-05-17 12:35:55','2022-05-17 12:35:55','<div class=\"postie-post\"><div dir=\"ltr\">Good Morning, dont forget about our meeting today at 4pm at the Kannapolis office.  This meeting is for anyone wanting to invest in real estate and wanting to learn how to do so.  <div><br></div><div>I look forward to seeing you all today at 4!!!!<br clear=\"all\"><div><br></div></div>','Todays Real Estate Investor/Syndication meeting at 4pm','','publish','closed','open','','todays-real-estate-investor-syndication-meeting-at-4pm','','','2022-05-17 12:35:55','2022-05-17 12:35:55','',0,'https://lantern-realty.com/?p=2658',0,'post','',0),(2659,0,'2022-05-18 18:15:56','2022-05-18 18:15:56','<div class=\"postie-post\"><div dir=\"auto\">Hi there, </div><div dir=\"auto\">Is there a zoom link available for the Lantern Loves meeting this afternoon?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Melissa Yates, REALTOR® </div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, May 16, 2022 at 11:54 AM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex\"><div dir=\"ltr\">Good morning! Here are some news &amp; notes for your upcoming week....<div><br></div><div>- We have been blessed with a tremendous amount of growth this year.  I have attached an updated roster with our agents in every office.  </div><div>- We do have one more date left available for the Cannon Ballers Suite.  That is 7/27, it&#39;s $500.  You receive 20 tickets and 4 parking passes.  Let me know if you are interested.  First come, first serve.</div><div>- We are very fortunate to now have access to the NC Coastal MLS (Flex MLS) through the Neuse River Realtor Association.  If you are interested in joining, please let me know.  </div><div>- Our Ladies of Lantern annual event is this Thursday at the Laureate Center (<a href=\"https://www.google.com/maps/search/401+Laureate+Way?entry=gmail&amp;source=g\">401 Laureate Way</a>) in Kannapolis. The event runs from 11-1pm.  </div><div>- Our Lantern Loves meeting will be this Wednesday at 3pm in the Kannapolis office and via Zoom.  We would love to have participation from all offices.  The purpose of Lantern Loves is to serve our agent family, if needs arrive and the communities we serve.  If you would like to serve on the board of directors, please contact Melissa Yates at </div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"313\" style=\"border-collapse:collapse;width:235pt\">  <colgroup><col width=\"313\" style=\"width:235pt\">  </colgroup><tbody><tr height=\"21\" style=\"height:15.75pt\">\r\n  <td height=\"21\" width=\"313\" style=\"height:15.75pt;width:235pt;color:rgb(5,99,193);text-decoration-line:underline;border:0.5pt solid black;padding-top:1px;padding-right:1px;padding-left:1px;font-size:11pt;font-family:Calibri;vertical-align:bottom;white-space:nowrap\"><a href=\"mailto:melissayates4u@gmail.com\" target=\"_blank\" rel=\"noopener\"><a href=\"mailto:melissayates4u@gmail.com\" >melissayates4u@gmail.com</a></a></td>\r\n </tr> </tbody></table><div>- Lastly, dont forget to <b><i>RENEW YOUR LICENSE!!!!! </i></b>Yesterday was the first day for renewals, you have until June 30th.  <b style=\"font-style:italic\">NO EXCUSES!!!!! </b>Remember, if you do not pay then your license goes EXPIRED. We can not pay an unlicensed entity.</div></div><div dir=\"ltr\"><div><br clear=\"all\"><div><br></div></div>','News &amp; Notes','','draft','closed','open','','news-notes','','','2022-05-18 18:15:56','2022-05-18 18:15:56','',0,'https://lantern-realty.com/?p=2659',0,'post','',0),(2660,9,'2022-05-18 18:25:57','2022-05-18 18:25:57','<div class=\"postie-post\"><div dir=\"ltr\">Chris Puckett is inviting you to a scheduled Zoom meeting.<br><br><b>Topic: Lantern Loves<br>Time: May 18, 2022 03:00 PM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/88916292840?pwd=ZU51c2o3MjFHVlV4VzlPZ2liL2xsQT09\">https://us02web.zoom.us/j/88916292840?pwd=ZU51c2o3MjFHVlV4VzlPZ2liL2xsQT09</a><br><br>Meeting ID: 889 1629 2840<br>Passcode: 838492<br>One tap mobile<br>+13017158592,,88916292840#,,,,*838492# US (Washington DC)<br>+13126266799,,88916292840#,,,,*838492# US (Chicago)<br><br>Dial by your location<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 929 205 6099 US (New York)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>        +1 669 900 6833 US (San Jose)<br>Meeting ID: 889 1629 2840<br>Passcode: 838492<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kb8Q4KWrqH\">https://us02web.zoom.us/u/kb8Q4KWrqH</a><br><br></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 18, 2022 at 2:09 PM Melissa Yates &lt;<a href=\"mailto:melissayates4u@gmail.com\"><a href=\"mailto:melissayates4u@gmail.com\" >melissayates4u@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"auto\">Hi there, </div><div dir=\"auto\">Is there a zoom link available for the Lantern Loves meeting this afternoon?</div><div dir=\"auto\"><br></div><div dir=\"auto\">Melissa Yates, REALTOR® </div><div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Mon, May 16, 2022 at 11:54 AM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\" target=\"_blank\" rel=\"noopener\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Good morning! Here are some news &amp; notes for your upcoming week....<div><br></div><div>- We have been blessed with a tremendous amount of growth this year.  I have attached an updated roster with our agents in every office.  </div><div>- We do have one more date left available for the Cannon Ballers Suite.  That is 7/27, it&#39;s $500.  You receive 20 tickets and 4 parking passes.  Let me know if you are interested.  First come, first serve.</div><div>- We are very fortunate to now have access to the NC Coastal MLS (Flex MLS) through the Neuse River Realtor Association.  If you are interested in joining, please let me know.  </div><div>- Our Ladies of Lantern annual event is this Thursday at the Laureate Center (<a href=\"https://www.google.com/maps/search/401+Laureate+Way?entry=gmail&amp;source=g\" target=\"_blank\" rel=\"noopener\">401 Laureate Way</a>) in Kannapolis. The event runs from 11-1pm.  </div><div>- Our Lantern Loves meeting will be this Wednesday at 3pm in the Kannapolis office and via Zoom.  We would love to have participation from all offices.  The purpose of Lantern Loves is to serve our agent family, if needs arrive and the communities we serve.  If you would like to serve on the board of directors, please contact Melissa Yates at </div><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"313\" style=\"border-collapse:collapse;width:235pt\">  <colgroup><col width=\"313\" style=\"width:235pt\">  </colgroup><tbody><tr height=\"21\" style=\"height:15.75pt\">\r\n  <td height=\"21\" width=\"313\" style=\"height:15.75pt;width:235pt;color:rgb(5,99,193);text-decoration-line:underline;border:0.5pt solid black;padding-top:1px;padding-right:1px;padding-left:1px;font-size:11pt;font-family:Calibri;vertical-align:bottom;white-space:nowrap\"><a href=\"mailto:melissayates4u@gmail.com\" target=\"_blank\" rel=\"noopener\"><a href=\"mailto:melissayates4u@gmail.com\" >melissayates4u@gmail.com</a></a></td>\r\n </tr> </tbody></table><div>- Lastly, dont forget to <b><i>RENEW YOUR LICENSE!!!!! </i></b>Yesterday was the first day for renewals, you have until June 30th.  <b style=\"font-style:italic\">NO EXCUSES!!!!! </b>Remember, if you do not pay then your license goes EXPIRED. We can not pay an unlicensed entity.</div></div><div dir=\"ltr\"><div><br clear=\"all\"><div><br></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-49','','','2022-05-18 18:25:57','2022-05-18 18:25:57','',0,'https://lantern-realty.com/?p=2660',0,'post','',0),(2662,0,'2022-05-18 20:52:17','2022-05-18 20:52:17','','Alexis Devine Smith','','inherit','closed','closed','','a78feeff-482a-48d8-9b4d-2ed89ec1fb81','','','2022-06-24 00:56:50','2022-06-24 00:56:50','',0,'https://lantern-realty.com/a78feeff-482a-48d8-9b4d-2ed89ec1fb81/',0,'attachment','image/png',0),(2664,0,'2022-05-18 21:21:01','2022-05-18 21:21:01','','Mitzi Mcdaniel Smith','','inherit','closed','closed','','7583fb06-c593-4c67-aea0-25b43df7e577','','','2022-06-24 01:00:48','2022-06-24 01:00:48','',0,'https://lantern-realty.com/7583fb06-c593-4c67-aea0-25b43df7e577/',0,'attachment','image/png',0),(2666,0,'2022-05-25 12:55:57','2022-05-25 12:55:57','<div class=\"postie-post\"><div dir=\"ltr\">Hello!<div><br></div><div>Has anyone seen a check for me at the office? I havent been there this week to check! </div></div><br><div class=\"gmail_quote\"><div dir=\"ltr\" class=\"gmail_attr\">On Wed, May 4, 2022 at 12:50 PM Chris Puckett &lt;<a href=\"mailto:ch2realty@gmail.com\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a>&gt; wrote:<br></div><blockquote class=\"gmail_quote\" style=\"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex\"><div dir=\"ltr\">Below is a link to the class held yesterday by Nic Lovelace of Knipp Law.  Very informative, especially in todays market.  <div><br></div><div><a href=\"https://youtu.be/qpwuqpK19Q4\" target=\"_blank\" rel=\"noopener\">https://youtu.be/qpwuqpK19Q4</a><br clear=\"all\"><div><br></div></div>','Class - Deposits, Terminations &amp; Disputes - 05/03/2022','','draft','closed','open','','class-deposits-terminations-disputes-05-03-2022','','','2022-05-25 12:55:57','2022-05-25 12:55:57','',0,'https://lantern-realty.com/?p=2666',0,'post','',0),(2695,0,'2022-06-03 14:49:36','2022-06-03 14:49:36','','Tanner Main headshot','','inherit','','closed','','tanner-main-headshot','','','2022-06-03 14:49:36','2022-06-03 14:49:36','',0,'https://lantern-realty.com/tanner-main-headshot/',0,'attachment','image/jpeg',0),(2668,1,'2022-05-26 00:46:32','2022-05-26 00:46:32','','Lantern - Tennessee','','inherit','closed','closed','','2370-revision-v1','','','2022-05-26 00:46:32','2022-05-26 00:46:32','',2370,'https://lantern-realty.com/?p=2668',0,'revision','',0),(2669,1,'2022-05-26 00:56:15','2022-05-26 00:56:15','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n			<h3><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Main Office</a></h3>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-05-26 00:56:15','2022-05-26 00:56:15','',1279,'https://lantern-realty.com/?p=2669',0,'revision','',0),(2670,1,'2022-05-26 00:56:16','2022-05-26 00:56:16','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n			<h3><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Main Office</a></h3>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethtown, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-05-26 00:56:16','2022-05-26 00:56:16','',1279,'https://lantern-realty.com/?p=2670',0,'revision','',0),(2671,1,'2022-05-26 00:56:16','2022-05-26 00:56:16','<h1>Lantern Offices</h1>		\n					<ul>\n							<li>\n											<a href=\"#albemarle\">\n											Albemarle\n											</a>\n									</li>\n								<li>\n											<a href=\"#asheville\">\n											Asheville\n											</a>\n									</li>\n								<li>\n											<a href=\"#harrisburg\">\n											Harrisburg\n											</a>\n									</li>\n								<li>\n											<a href=\"#kannapolis\">\n											Kannapolis\n											</a>\n									</li>\n								<li>\n											<a href=\"#lexington\">\n											Lexington\n											</a>\n									</li>\n								<li>\n											<a href=\"#mooresville\">\n											Mooreseville\n											</a>\n									</li>\n								<li>\n											<a href=\"http://Raleigh\">\n											Raleigh\n											</a>\n									</li>\n								<li>\n											<a href=\"#salisbury\">\n											Salisbury\n											</a>\n									</li>\n								<li>\n											<a href=\"#tennessee\">\n											Tennessee\n											</a>\n									</li>\n						</ul>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Kannapolis-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Lantern Kannapolis</a></h2>		\n			<h3><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Main Office</a></h3>		\n					<ul>\n							<li>\n										119 West Avenue, Kannapolis, NC 28081\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Salisbury-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Lantern Salisbury</a></h2>		\n					<ul>\n							<li>\n										105 North Main Suite B, Salisbury, NC 28144\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Harrisburg-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Lantern Harrisburg</a></h2>		\n					<ul>\n							<li>\n										4350 Main St Suite 215, Harrisburg, NC 28075\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Albemarle-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Lantern Albemarle</a></h2>		\n					<ul>\n							<li>\n										113 S. Second St, Albemarle, NC 28001\n									</li>\n								<li>\n											<a href=\"tel:9803184961\">\n										(980) 318-4961\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										lrdalbemarle@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803184961\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:lrdalbemarle@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"2000\" height=\"1600\" src=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 300w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1024w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 768w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 1536w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 750w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 496w, https://lantern-realty.com/wp-content/uploads/2020/10/05F1BB70-445B-4044-AACC-8382CE3C590E.png 2000w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lantern Mooresville</a></h2>		\n					<ul>\n							<li>\n										106 Langtree Village Drive Suite 301, Mooresville, NC 28117\n									</li>\n								<li>\n											<a href=\"tel:7042980087\">\n										(704) 298-0087\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:contact@lantern-realty.com\">\n										contact@lantern-realty.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7042980087\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:contact@lantern-realty.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-asheville/\">Lantern Asheville</a></h2>		\n					<ul>\n							<li>\n										23 Mill Stone Drive, Asheville NC 28803\n									</li>\n								<li>\n											<a href=\"tel:8287720220\">\n										(828) 772-0220\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:klawingrealtor@gmail.com\">\n										klawingrealtor@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:8287720220\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Lexington.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Lexington-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-lexington/\">Lantern Lexington</a></h2>		\n					<ul>\n							<li>\n										105 N State Street, Lexington NC 27293\n									</li>\n								<li>\n											<a href=\"tel:7047547104\">\n										(704) 754-7104\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:csloansellshomes@gmail.com\">\n										csloansellshomes@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:7047547104\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:csloansellshomes@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-tennessee/\">Lantern Tennessee</a></h2>		\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethton, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n													<a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Raleigh-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-raleigh/\">Lantern Raleigh</a></h2>		\n					<ul>\n							<li>\n										4909 Unicon Drive, Ste 105, Wake Forest NC 27587\n									</li>\n								<li>\n											<a href=\"tel:9194261561\">\n										(919) 426-1561\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:matt@carolinaeliterealtygroup.com\">\n										matt@carolinaeliterealtygroup.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9194261561\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:matt@carolinaeliterealtygroup.com\" role=\"button\">\n						Send Message\n					</a>','Lantern Offices','','inherit','closed','closed','','1279-revision-v1','','','2022-05-26 00:56:16','2022-05-26 00:56:16','',1279,'https://lantern-realty.com/?p=2671',0,'revision','',0),(2672,1,'2022-05-26 01:03:02','2022-05-26 01:03:02','<h2>Lantern Realty  - Tennessee Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Tennessee\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjU3NywidXJsIjoiaHR0cHM6XC9cL2xhbnRlcm4tcmVhbHR5LmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDRcL1Rlbm5lc3NlZS5wbmcifQ%3D%3D\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethton, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethton%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethton, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethton, TN 37643\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:9803338085\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Tennessee Office Agents</h2>		\n        <!--start agents module-->\n                            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Tennessee','','publish','closed','closed','','lantern-tennessee','','','2022-05-26 01:12:04','2022-05-26 01:12:04','',1279,'https://lantern-realty.com/?page_id=2672',0,'page','',0),(2685,1,'2022-05-26 01:56:17','2022-05-26 01:56:17','<!-- wp:paragraph -->\n<p>Buying and selling real estate can be quite stressful. A Realtor’s® job is to help you navigate through the process smoothly. Marguerite has a proven track record of going the extra mile to help you do just that. As a first-time homebuyer, she can help you navigate the loan qualification process and then can help you build the home you want or find one already built in the area you desire. If you have a home to sell, she is part of a team of experts ready to prepare your home to sell quickly and for top dollar. Contact her today to start the process. Through her training and experience with seniors, Marguerite works extensively with folks who are retired or nearing retirement. She is part of a team of professionals who can provide an array of helpful services often sought by seniors. Call her today and let her walk with you through this important transition. If you are selling real estate as part of an estate settlement, she also has specific training and experience to help you successfully complete this process. Marguerite has worked with several estate attorneys in the northern Charlotte metroplex, helping executors quickly dispose of real estate they must sell. If you are between these stages of life and need to buy or sell a home, reach out to Marguerite. She works hard to stay abreast of local trends and inventory, so she knows how to find homes in your niche, and also knows how to position your home to sell. She will help navigate the myriad details, such as pricing, staging for top dollar, financing, negotiating for your best outcome, inspections, and paperwork. Her passion is to serve you based on what YOU want or need. Her former clients often tout her integrity, her exceptional communication skills, and her ability to make the process smooth. Marguerite grew up in Northern Virginia, has lived in Winston-Salem, NC; Vancouver, BC; and Castle Rock, CO. She currently lives near Salisbury, NC with her husband. Give her a call today. Thank you!</p>\n<!-- /wp:paragraph -->','Marguerite Keller','','inherit','closed','closed','','576-revision-v1','','','2022-05-26 01:56:17','2022-05-26 01:56:17','',576,'https://lantern-realty.com/?p=2685',0,'revision','',0),(2673,1,'2022-05-26 01:03:02','2022-05-26 01:03:02','<h2>Lantern Realty  - Asheville Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										23 Mill Stone Drive, Asheville NC 28803</li>\n 	<li>\n					<a href=\"tel:8287720220\">\n(828) 772-0220\n</a></li>\n 	<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">\nklawingrealtor@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:8287720220\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:8287720220\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Asheville Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Tennesse','','inherit','closed','closed','','2672-revision-v1','','','2022-05-26 01:03:02','2022-05-26 01:03:02','',2672,'https://lantern-realty.com/?p=2673',0,'revision','',0),(2676,1,'2022-05-26 01:10:52','2022-05-26 01:10:52','<h2>Lantern Realty  - Asheville Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										23 Mill Stone Drive, Asheville NC 28803</li>\n 	<li>\n					<a href=\"tel:8287720220\">\n(828) 772-0220\n</a></li>\n 	<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">\nklawingrealtor@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:8287720220\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:8287720220\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Asheville Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Tennessee','','inherit','closed','closed','','2672-revision-v1','','','2022-05-26 01:10:52','2022-05-26 01:10:52','',2672,'https://lantern-realty.com/?p=2676',0,'revision','',0),(2675,1,'2022-05-26 01:07:28','2022-05-26 01:07:28','<h2>Lantern Realty  - Asheville Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										23 Mill Stone Drive, Asheville NC 28803</li>\n 	<li>\n					<a href=\"tel:8287720220\">\n(828) 772-0220\n</a></li>\n 	<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">\nklawingrealtor@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:8287720220\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:8287720220\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Asheville Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Tennessee','','inherit','closed','closed','','2672-revision-v1','','','2022-05-26 01:07:28','2022-05-26 01:07:28','',2672,'https://lantern-realty.com/?p=2675',0,'revision','',0),(2677,1,'2022-05-26 01:10:52','2022-05-26 01:10:52','<h2>Lantern Realty  - Asheville Office</h2>\n<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\">\n<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\">								</a>\n<ul>\n 	<li>\n										23 Mill Stone Drive, Asheville NC 28803</li>\n 	<li>\n					<a href=\"tel:8287720220\">\n(828) 772-0220\n</a></li>\n 	<li>\n					<a href=\"mailto:klawingrealtor@gmail.com\">\nklawingrealtor@gmail.com\n</a></li>\n</ul>\n<a href=\"tel:8287720220\" role=\"button\">\nCall\n</a>\n<a href=\"mailto:klawingrealtor@gmail.com\" role=\"button\">\nSend Message\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" title=\"23 Mill Stone Drive, Asheville NC 28803\" aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"></iframe>\n<a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\nValuation Request\n</a>\n<a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\nLocal Market Report\n</a>\n<a href=\"tel:8287720220\" data-text=\"\">\nContact an Agent\n</a>\n<h2>Asheville Office Agents</h2>\n<!--start agents module-->\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Michael Farlow</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\">		</a>\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\nLicensed Agent                                , Lantern Realty and Development\n<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n<!-- agent-module -->\n<!--end post agents module-->','Lantern Tennessee','','inherit','closed','closed','','2672-revision-v1','','','2022-05-26 01:10:52','2022-05-26 01:10:52','',2672,'https://lantern-realty.com/?p=2677',0,'revision','',0),(2681,1,'2022-05-26 01:12:04','2022-05-26 01:12:04','<h2>Lantern Realty  - Tennessee Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Tennessee\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjU3NywidXJsIjoiaHR0cHM6XC9cL2xhbnRlcm4tcmVhbHR5LmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMlwvMDRcL1Rlbm5lc3NlZS5wbmcifQ%3D%3D\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee.png 580w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-300x235.png 300w, https://lantern-realty.com/wp-content/uploads/2022/04/Tennessee-496x389.png 496w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethton, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=416%20E.%20Elk%20Ave.%2C%20Elizabethton%2C%20TN%2037643&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"416 E. Elk Ave., Elizabethton, TN 37643\"\n					aria-label=\"416 E. Elk Ave., Elizabethton, TN 37643\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:9803338085\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Tennessee Office Agents</h2>		\n        <!--start agents module-->\n                            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Tennessee','','inherit','closed','closed','','2672-revision-v1','','','2022-05-26 01:12:04','2022-05-26 01:12:04','',2672,'https://lantern-realty.com/?p=2681',0,'revision','',0),(2682,1,'2022-05-26 01:13:16','2022-05-26 01:13:16','','Ashley Ferlauto','','inherit','closed','closed','','645-revision-v1','','','2022-05-26 01:13:16','2022-05-26 01:13:16','',645,'https://lantern-realty.com/?p=2682',0,'revision','',0),(2684,1,'2022-05-26 01:53:09','2022-05-26 01:53:09','<!-- wp:paragraph -->\n<p>Don\'t miss out, let\'s make your dreams come true! Melissa, licensed in 2003, is a Relator &amp; Broker. She has chosen Lantern Realty &amp; Development for their amazing culture and believes. Melissa is the Founder and CEO of 3 with MV, LLC a holistic/spiritual based business; which includes VRE (Valley Real Estate) and (VIP) Valley Investment Properties. She holds a MBA and a Bachelors Degree in Human Resources. She started her career as a temp at local real estate company back in 1997. She moved into an apartment on a Tax Credit community and fell in love with the staff and industry, and work her way through the ranks of the property management and asset management field. She has a total of over 25 years of experience in both single family and multi-family housing. She has worked along side many property management companies, asset management companies, syndicators, Investors, Developers, and Lenders. Melissa is passionate about helping people and assisting them in achieving their dreams. Melissa is committed to loving all people and making sure the are treated with respect and kindness. Melissa is a native to Salisbury and lives here with her husband Troy Valley. Troy owns his own property preservation and handyman company that is committed to excellence. They has a wild cat named \"Shu-Shu\" and a poodle named \"Froto\". They have two amazing children; Marc and Madison. Melissa has earned the name of \"Gran-nay\" with (8) grandchildren and a 9th on the way. Melissa\'s favorite place is the beach and she loves Christmas so much, her tree stays up year-round. Melissa is a Breast Cancer Warrior with a passion to make sure others get their mammograms. She is a member of Cornerstone Church and serves on the Events Committee for Rowan Pregnancy Support Center. She also has a desire to help the homeless and less fortunate. Melissa has pledged to donate a percentage of all her earning to these charities. Whether buying, selling, renting, investing, or property management; Melissa is here for you.</p>\n<!-- /wp:paragraph -->','Melissa Shannon Morefield-Valley','','inherit','closed','closed','','2292-revision-v1','','','2022-05-26 01:53:09','2022-05-26 01:53:09','',2292,'https://lantern-realty.com/?p=2684',0,'revision','',0),(2678,1,'2022-05-26 01:10:52','2022-05-26 01:10:52','<h2>Lantern Realty  - Tennessee Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTYxNiwidXJsIjoiaHR0cHM6XC9cL2xhbnRlcm4tcmVhbHR5LmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMVwvMDJcL0xhbnRlcm4tQXNoZXZpbGxlLnBuZyJ9\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethton, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:9803338085\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Tennessee','','inherit','closed','closed','','2672-revision-v1','','','2022-05-26 01:10:52','2022-05-26 01:10:52','',2672,'https://lantern-realty.com/?p=2678',0,'revision','',0),(2679,1,'2022-05-26 01:12:04','2022-05-26 01:12:04','<h2>Lantern Realty  - Tennessee Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTYxNiwidXJsIjoiaHR0cHM6XC9cL2xhbnRlcm4tcmVhbHR5LmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMVwvMDJcL0xhbnRlcm4tQXNoZXZpbGxlLnBuZyJ9\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethton, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:9803338085\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Tennessee','','inherit','closed','closed','','2672-revision-v1','','','2022-05-26 01:12:04','2022-05-26 01:12:04','',2672,'https://lantern-realty.com/?p=2679',0,'revision','',0),(2680,1,'2022-05-26 01:12:04','2022-05-26 01:12:04','<h2>Lantern Realty  - Tennessee Office</h2>		\n													<a href=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"Lantern Asheville\" e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTYxNiwidXJsIjoiaHR0cHM6XC9cL2xhbnRlcm4tcmVhbHR5LmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyMVwvMDJcL0xhbnRlcm4tQXNoZXZpbGxlLnBuZyJ9\">\n							<img width=\"580\" height=\"455\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 496w, https://lantern-realty.com/wp-content/uploads/2021/02/Lantern-Asheville.png 580w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n					<ul>\n							<li>\n										416 E. Elk Ave., Elizabethton, TN 37643\n									</li>\n								<li>\n											<a href=\"tel:9803338085\">\n										(980) 333-8085\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:ashleyferlauto@gmail.com\">\n										ashleyferlauto@gmail.com\n											</a>\n									</li>\n						</ul>\n			<a href=\"tel:9803338085\" role=\"button\">\n						Call\n					</a>\n			<a href=\"mailto:ashleyferlauto@gmail.com\" role=\"button\">\n						Send Message\n					</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=23%20Mill%20Stone%20Drive%2C%20Asheville%20NC%2028803&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"23 Mill Stone Drive, Asheville NC 28803\"\n					aria-label=\"23 Mill Stone Drive, Asheville NC 28803\"\n			></iframe>\n            <a href=\"https://lantern-realty.com/valuation-form/\" data-text=\"Valuation Request\">\n                    Valuation Request\n            </a>\n            <a href=\"https://lantern-realty.com/market-report/Asheville/1753763/\" data-text=\"\">\n                    Local Market Report\n            </a>\n            <a href=\"tel:9803338085\" data-text=\"\">\n                    Contact an Agent\n            </a>\n			<h2>Asheville Office Agents</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','Lantern Tennessee','','inherit','closed','closed','','2672-revision-v1','','','2022-05-26 01:12:04','2022-05-26 01:12:04','',2672,'https://lantern-realty.com/?p=2680',0,'revision','',0),(2686,0,'2022-05-26 13:09:08','2022-05-26 13:09:08','','AJHeadshots-1 (1)','','inherit','','closed','','ajheadshots-1-1','','','2022-05-26 13:09:08','2022-05-26 13:09:08','',0,'https://lantern-realty.com/ajheadshots-1-1/',0,'attachment','image/jpeg',0),(2689,0,'2022-05-26 13:46:17','2022-05-26 13:46:17','','Screenshot (2)','','inherit','','closed','','screenshot-2','','','2022-05-26 13:46:17','2022-05-26 13:46:17','',0,'https://lantern-realty.com/screenshot-2/',0,'attachment','image/png',0),(2690,6,'2022-05-27 18:46:56','2022-05-27 18:46:56','<div class=\"postie-post\"><div dir=\"ltr\">Good Afternoon, below are a few notes to help kickstart your weekend!<div><br></div><div>- If you haven&#39;t signed up for the FREE Locker Room Coaching event in Raleigh on 6/30 please do so ASAP before it gets booked up.  I know we already have some Kannapolis agents signed up to go. Attached is a brochure to give you an idea of what you will experience.  Here is the registration link...</div><div><span style=\"color:rgb(255,255,255);background-color:rgb(38,38,38);font-family:sans-serif\"> Event Registration LInk: </span><a href=\"https://bit.ly/af63022\" target=\"_blank\" style=\"font-family:sans-serif\" rel=\"noopener\">https://bit.ly/af63022</a></div><div><br></div><div>- One last date left for our Cannon Ballers suite.  7/27.  Let me know if you are interested.  $500 and you get 20 tickets and 4 parking passes.</div><div><br></div><div>- We continue to grow!  I have attached an updated roster.  </div><div><br></div><div>- We now have access to the FlexMLS through Neuse River Realtor Assoc.  This gives you access to Coastal NC &amp; SC listings.  If you are interested in getting access, please contact Matt Bergevin in our Raleigh office.  </div><div><br></div><div>- Lastly, <b><i>DONT FORGET TO RENEW YOUR LICENSE!!!!!!!</i></b>  This includes your personal license and firm license if you have one.  It&#39;s simple and easy.  </div><div><br></div><div>Hope you have a wonderful and safe weekend.<br clear=\"all\"><div><br></div><div class=\"postie-attachments\"><a href=\"https://lantern-realty.com/wp-content/uploads/2022/05/Agent-Fundamentals-MLD-6-30-2022-1.pdf\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/pdf-48.png\' alt=\'pdf icon\' /> Agent-Fundamentals-MLD-6-30-2022-1.pdf</a><br />\n<a href=\"https://lantern-realty.com/wp-content/uploads/2022/05/LRD-Roster_012422-4.xlsx\"><img src=\'https://lantern-realty.com/wp-content/plugins/postie/icons/metro/xls-48.png\' alt=\'xls icon\' /> LRD-Roster_012422-4.xlsx</a><br /></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-50','','','2022-05-27 18:46:56','2022-05-27 18:46:56','',0,'https://lantern-realty.com/?p=2690',0,'post','',0),(2691,6,'2022-05-27 18:46:53','2022-05-27 18:46:53','','Agent-Fundamentals-MLD-6-30-2022-1.pdf','','inherit','closed','closed','','agent-fundamentals-mld-6-30-2022-1','','','2022-05-27 18:46:54','2022-05-27 18:46:54','',2690,'https://lantern-realty.com/wp-content/uploads/2022/05/Agent-Fundamentals-MLD-6-30-2022-1.pdf',0,'attachment','application/pdf',0),(2692,6,'2022-05-27 18:46:55','2022-05-27 18:46:55','','LRD-Roster_012422-4.xlsx','','inherit','closed','closed','','lrd-roster_012422-4','','','2022-05-27 18:46:56','2022-05-27 18:46:56','',2690,'https://lantern-realty.com/wp-content/uploads/2022/05/LRD-Roster_012422-4.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2696,0,'2022-06-07 19:53:40','2022-06-07 19:53:40','','Andrew Jason Wetherbee','','inherit','closed','closed','','screenshot-2-2','','','2022-06-24 01:05:55','2022-06-24 01:05:55','',0,'https://lantern-realty.com/screenshot-2-2/',0,'attachment','image/png',0),(2697,6,'2022-06-07 20:16:01','2022-06-07 20:16:01','<div class=\"postie-post\"><div dir=\"ltr\">Good Afternoon, below are links to our YouTube page and the classes we had last week.  ENJOY!<div><br></div><div>Client Care by Sarah Romesburg</div><div><a href=\"https://youtu.be/MOHNh-tv374\">https://youtu.be/MOHNh-tv374</a></div><div><br></div><div>Dotloop Class</div><div><a href=\"https://youtu.be/JDJcRKai2Fw\">https://youtu.be/JDJcRKai2Fw</a><br clear=\"all\"><div><br></div></div>','Last Weeks classes','','publish','closed','open','','last-weeks-classes','','','2022-06-07 20:16:01','2022-06-07 20:16:01','',0,'https://lantern-realty.com/?p=2697',0,'post','',0),(2698,0,'2022-06-07 20:49:39','2022-06-07 20:49:39','','D03ACF24-7D7D-44C0-BCB1-9898B4A24CC0','','inherit','','closed','','d03acf24-7d7d-44c0-bcb1-9898b4a24cc0','','','2022-06-07 20:49:39','2022-06-07 20:49:39','',0,'https://lantern-realty.com/d03acf24-7d7d-44c0-bcb1-9898b4a24cc0/',0,'attachment','image/jpeg',0),(2699,6,'2022-06-08 20:06:01','2022-06-08 20:06:01','<div class=\"postie-post\"><div dir=\"ltr\">Good Afternoon, I hope everyone is well.  Here are a few notes....<div><br></div><div>- <b>RENEW YOUR LICENSE!!!!! </b>You have until June 30th to pay your fee.  </div><div>- Make sure you have taken your CE &amp; GENUP/BICUP.  That is due by the end of the day <b>THIS FRIDAY!</b></div><div>- Also, make sure you have renewed your <b>privilege license</b>.  This is done through the NC Department of Revenue. NO, I can not help you with it.  It&#39;s your responsibility as a business owner in North Carolina.  If you haven&#39;t received anything in the mail, contact the NC Dept. of Revenue. </div><div>- If you wish to get on our call time rotation please contact Melissa Jackling.  If you are not on it you are missing out on some great leads.</div><div><div><br></div><div><br clear=\"all\"><div><br></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-51','','','2022-06-08 20:06:01','2022-06-08 20:06:01','',0,'https://lantern-realty.com/?p=2699',0,'post','',0),(2700,6,'2022-06-10 12:36:29','2022-06-10 12:36:29','<div class=\"postie-post\"><div dir=\"ltr\">Today is the LAST day to make sure you are updated on your CE &amp; Update.  You HAVE to have 4 hours of CE and 4 hours of Update by the end of day today, or your license will go INACTIVE.  <div><br></div><div>Go to your profile on NCREC.gov and check your status.  NO EXCUSES!!!!!<br clear=\"all\"><div><br></div></div>','WARNING!!!! WARNING!!!!','','publish','closed','open','','warning-warning','','','2022-06-10 12:36:29','2022-06-10 12:36:29','',0,'https://lantern-realty.com/?p=2700',0,'post','',0),(2701,0,'2022-06-15 18:47:13','2022-06-15 18:47:13','','IMG_20210112_113535_2','','inherit','','closed','','img_20210112_113535_2','','','2022-06-15 18:47:13','2022-06-15 18:47:13','',0,'https://lantern-realty.com/img_20210112_113535_2/',0,'attachment','image/jpeg',0),(2702,6,'2022-06-20 19:05:58','2022-06-20 19:05:58','<div class=\"postie-post\"><div dir=\"ltr\">Good Afternoon, below are a few notes as we head into the last full week of June<div><br></div><div>- Make sure you get your license renewed!!!!!!!!!!!!!!!!!!! That ends on June 30th.</div><div><br></div><div>- If you have interest in being on the call time calendar please contact Melissa Jackling.</div><div><br></div><div>- If you are NOT currently a member of our closed Facebook group, shoot me an email.  We have had a lot of new agents recently and I want to make sure no one is missed.</div><div><br></div><div>- Dont forget our Tuesday Morning Mastermind session in the Kannapolis office.  They start approximately at 930.  Brian Floyd w/ Fairway Mortgage will be in tomorrow to speak concerning the shifting markets and where he sees interest rates heading.</div><div><br></div><div>- You still have time to register for the Locker Room FREE coaching at our Raleigh/Wake Forest location on 6/30.  You need to register by 6/24.  Here is a link for registration. <a href=\"https://bit.ly/af63022\">https://bit.ly/af63022</a></div><div><br></div><div><br><div><div dir=\"ltr\" class=\"gmail_signature\" data-smartmail=\"gmail_signature\"><div dir=\"ltr\"><div><div dir=\"ltr\"><div><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\"><div dir=\"ltr\">Chris Puckett REALTOR ®, GRI, SRES, SFR, CDEI</div><div>NC/SC Licensed</div><div dir=\"ltr\">Owner/Broker<br></div><div dir=\"ltr\"><div>Lantern Realty &amp; Development</div><div><span style=\"font-size:12.8px\">c. 704-298-5872</span><br></div><div><a href=\"mailto:ch2realty@gmail.com\" target=\"_blank\" rel=\"noopener\"><a href=\"mailto:ch2realty@gmail.com\" >ch2realty@gmail.com</a></a></div><div><a href=\"https://Lantern-Realty.com\" target=\"_blank\" rel=\"noopener\">https://Lantern-Realty.com</a></div><div><br></div><br><br></div><div dir=\"ltr\"><br></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>','News &amp; Notes','','publish','closed','open','','news-notes-52','','','2022-06-20 19:05:58','2022-06-20 19:05:58','',0,'https://lantern-realty.com/?p=2702',0,'post','',0),(2703,6,'2022-06-23 15:15:57','2022-06-23 15:15:57','<div class=\"postie-post\"><div dir=\"ltr\">Here is the link to sign up for the webinar.  Good info to use heading into the second half of the year.<div><br></div><div><a href=\"https://win.buffiniandcompany.com/products/bold-predictions/bold-predictions-2022-mid-year-update/?mkt_tok=Mzc1LUVLRS04ODEAAAGFKznyMI9G41lLpzoWufFPG79lbHBeSlhyLDu2lFxoAS4WW_dtQSWqQ9sO_jSen4OJ9xkau6zNcPLsPwhmPY0H2e4kJbpjxP9d7tZfuhb8fEpDd9bTkPQhVVQ\">https://win.buffiniandcompany.com/products/bold-predictions/bold-predictions-2022-mid-year-update/?mkt_tok=Mzc1LUVLRS04ODEAAAGFKznyMI9G41lLpzoWufFPG79lbHBeSlhyLDu2lFxoAS4WW_dtQSWqQ9sO_jSen4OJ9xkau6zNcPLsPwhmPY0H2e4kJbpjxP9d7tZfuhb8fEpDd9bTkPQhVVQ</a><br clear=\"all\"><div><br></div></div>','Buffini Mid Year Update - 2022 predictions','','publish','closed','open','','buffini-mid-year-update-2022-predictions','','','2022-06-23 15:15:57','2022-06-23 15:15:57','',0,'https://lantern-realty.com/?p=2703',0,'post','',0),(2724,9,'2022-07-05 13:45:55','2022-07-05 13:45:55','<div class=\"postie-post\"><div dir=\"ltr\"><div>Don&#39;t miss our upcoming meeting.  Terry will help us understand what a 2-1 Buydown is all about and how it can benefit our buyers with these recent rate increases. And, we will hear from Matthew Young and how he and GEICO can bring value to you and your clients. <i>Please note: the new 2022-2023 NC RE Forms are available. Please make sure those are what you use going forward and make sure those are the forms other agents are sending you too.  We have a class on the 13th at 3pm hosted by Nick Lovelace of Knipp Law. He will go over what we need to know about the changes to these forms.</i><br><br><b>Topic: Team Meeting - \"What is a 2-1 buydown?\"  w/Terry Whitesell of Fairway Mortgage<br>Time: Jul 6, 2022 11:00 AM Eastern Time (US and Canada)</b><br><br>Join Zoom Meeting<br><a href=\"https://us02web.zoom.us/j/86446381174?pwd=aBlzwP-arQ0uFbEJOCNyA9qPBX6npr.1\">https://us02web.zoom.us/j/86446381174?pwd=aBlzwP-arQ0uFbEJOCNyA9qPBX6npr.1</a><br><br>Meeting ID: 864 4638 1174<br>Passcode: 765022<br>One tap mobile<br>+16469313860,,86446381174#,,,,*765022# US<br>+19292056099,,86446381174#,,,,*765022# US (New York)<br><br>Dial by your location<br>        +1 646 931 3860 US<br>        +1 929 205 6099 US (New York)<br>        +1 301 715 8592 US (Washington DC)<br>        +1 312 626 6799 US (Chicago)<br>        +1 669 444 9171 US<br>        +1 669 900 6833 US (San Jose)<br>        +1 253 215 8782 US (Tacoma)<br>        +1 346 248 7799 US (Houston)<br>Meeting ID: 864 4638 1174<br>Passcode: 765022<br>Find your local number: <a href=\"https://us02web.zoom.us/u/kdBkahnIQW\">https://us02web.zoom.us/u/kdBkahnIQW</a><br><br></div><div><br></div><br clear=\"all\"><div><br></div></div>','Lantern Realty Zoom Link - Team Meeting - \"What is a 2-1 buydown?\" w/Terry Whitesell of Fairway Mortgage - Wednesday July 6 at 11am','','publish','closed','open','','lantern-realty-zoom-link-team-meeting-what-is-a-2-1-buydown-w-terry-whitesell-of-fairway-mortgage-wednesday-july-6-at-11am','','','2022-07-05 13:45:55','2022-07-05 13:45:55','',0,'https://lantern-realty.com/?p=2724',0,'post','',0),(2705,1,'2022-06-24 00:00:58','2022-06-24 00:00:58','<!-- wp:paragraph -->\n<p>Brianne is a life-long resident of Rowan County and resides in China Grove. An honor graduate of South Rowan High School, she also attended Catawba College and Superior School of Real Estate. She is very family-oriented, loves making fun memories with her niece and three nephews, and is dog-mom to her fur babies Dutch and Chaos. In addition to real estate, she likes to spend her time hiking, snowboarding, and traveling the world. She earned her NC Real Estate license in 2016 and began a career that she absolutely fell in love with! Offering a full-time residential service to both buyers and sellers, she strives to always bring the best customer service to her clients. Her dedication, stellar work ethic, attention to detail, and drive to succeed have allowed her business to flourish. She is loyal, exceptionally knowledgeable in her field, stays on top of communication, and an excellent negotiator. Brianne is definitely the agent that you want representing you and in your corner!</p>\n<!-- /wp:paragraph -->','Brianne Watson','','inherit','closed','closed','','563-revision-v1','','','2022-06-24 00:00:58','2022-06-24 00:00:58','',563,'https://lantern-realty.com/?p=2705',0,'revision','',0),(2706,1,'2022-06-24 00:21:27','2022-06-24 00:21:27','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in upstate New York, I moved to Concord with my family...	\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...	\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a native of New Jersey, but I have resided in the Charlotte...	\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Erin Hyman. I have lived in Kannapolis all my life, graduating...	\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Sarah Horn. I was born and raised in North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....	\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born in Lexington, Kentucky, which might explain my love for horses and...	\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Tammy Fox and I have lived in the Kannapolis area my...	\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...	\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a people person by nature. I have a desire and passion in...	\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...	\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! Thank you for taking the time to see a little about me and...	\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education...	\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! My name is Dawn and I was born and raised in Cabarrus County....	\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Richard, originally from Florida, has made North Carolina his permanent home. However, he is...	\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Wendell is a lifelong resident of the Charlotte Metro area which is a plus...	\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Let me put my 20 years of experience in our local market (Cabarrus &amp;...	\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A NC native, resident of Cabarrus County for over 30 years and a graduate...	\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Metro Charlotte area is a great place to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Sandra has lived in North Carolina her whole life. Her passion is to help...	\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...	\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is...	\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ben has resided in the Rowan and Cabarrus County area of North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney loves helping others reach their goals! She has experience working residential sales, land...	\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in...	\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...	\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thank you for checking out my profile! I moved to NC in 1996 and...	\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		With over 25 years buying and selling real estate, we can assist you with...	\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		After working with a few different real estate agents and purchasing several properties &#8211;...	\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I grew up as a Rowan County resident and moved to Richfield when my...	\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My passion is helping people achieve the goals they have set out before them....	\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2022-06-24 00:21:27','2022-06-24 00:21:27','',101,'https://lantern-realty.com/?p=2706',0,'revision','',0),(2707,1,'2022-06-24 00:21:27','2022-06-24 00:21:27','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		Welcome! I appreciate you taking the time to see what I am all about....	\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have...	\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                , Lantern Realty and Development\n		My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development....	\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in upstate New York, I moved to Concord with my family...	\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and...	\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago...	\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in...	\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Cabarrus/Rowan area my whole life. My children were raised...	\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have been a resident of Cabarrus County for almost 30 years and absolutely...	\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born and raised in the small town of Mount Pleasant she is embedded with...	\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have lived in the Concord area since 2003, and have enjoyed watching our...	\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My real estate career started with a fire. Three months into our new marriage,...	\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a native of New Jersey, but I have resided in the Charlotte...	\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Erin Hyman. I have lived in Kannapolis all my life, graduating...	\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Sarah Horn. I was born and raised in North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago ....	\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity...	\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born in Lexington, Kentucky, which might explain my love for horses and...	\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Tammy Fox and I have lived in the Kannapolis area my...	\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in...	\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate...	\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Helping folks find a home that fits their needs, or helping someone sell a...	\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the...	\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sandi-Laney-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandi-laney/\"><strong>Sandi Laney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sandi-laney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,...	\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant...	\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The right Realtor really does make all the difference! Since 1998 it is my...	\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I was born and raised in Cabarrus County and now reside in Concord. I...	\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am a people person by nature. I have a desire and passion in...	\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that...	\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		&#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still...	\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! Thank you for taking the time to see a little about me and...	\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education...	\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Hi! My name is Dawn and I was born and raised in Cabarrus County....	\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Kimberly Trask and I have lived in Cabarrus County since 2013....	\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Brianne_Watson-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Richard, originally from Florida, has made North Carolina his permanent home. However, he is...	\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Wendell is a lifelong resident of the Charlotte Metro area which is a plus...	\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Let me put my 20 years of experience in our local market (Cabarrus &amp;...	\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A NC native, resident of Cabarrus County for over 30 years and a graduate...	\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		The Metro Charlotte area is a great place to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Sandra has lived in North Carolina her whole life. Her passion is to help...	\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional...	\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is...	\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I have over twenty years experience in New home construction and Real estate sales....	\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Ben has resided in the Rowan and Cabarrus County area of North Carolina for...	\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Courtney loves helping others reach their goals! She has experience working residential sales, land...	\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson...	\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in...	\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant...	\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Maranda brings experience as both a Realtor and insurance agent to assist her clients...	\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Thank you for checking out my profile! I moved to NC in 1996 and...	\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is...	\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Janice provides all of her clients with a level of service that includes going...	\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Whether you&#8217;re a first-time home buyer in search of your dream home, a seller...	\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		With over 25 years buying and selling real estate, we can assist you with...	\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		After working with a few different real estate agents and purchasing several properties &#8211;...	\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Born in the beautiful and modern city of Ningbo, China, I worked as a...	\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		As a Realtor, Sheila’s first priority is to make her clients happy and build...	\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Brenda Bingham and I have lived in the Concord area since...	\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Amanda Cody and I have over 16 years&#8217; experience as a...	\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My name is Mike Fullerton, I have been selling Real Estate in the Stanly...	\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I grew up as a Rowan County resident and moved to Richfield when my...	\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A North Carolinian for the last 18 years, I am originally from New Jersey....	\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		My passion is helping people achieve the goals they have set out before them....	\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Asheville and Western North Carolina are great places to live and work, which is...	\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I&#8217;ve been in all aspects of real estate for well over 20 years. I...	\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		A native of Asheville, I have enjoyed a career in Accounting and Tax preparation....	\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Casey is a North Carolina native and has been living in the amazing Asheville...	\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because...	\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Having lived in the Asheville area all my life, I understand why it’s one...	\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the...	\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                , Lantern Realty and Development\n		Love Where You Live&#8230;For me this has always been the most important factor when...	\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2022-06-24 00:21:27','2022-06-24 00:21:27','',101,'https://lantern-realty.com/?p=2707',0,'revision','',0),(2708,1,'2022-06-24 00:21:28','2022-06-24 00:21:28','<a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\" rel=\"nofollow\">\n							<img width=\"1024\" height=\"389\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1024x389.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-300x114.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-768x292.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-150x57.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-350x133.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726071387-1263x480.jpg 1263w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />								</a>\n			<h1>Meet the Lantern Team</h1>		\n		<p>     The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.</p>		\n			<h2>Lantern Founders</h2>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/deanaAGENT-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deana-petty/\"><strong>Deana Petty</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome! I appreciate you taking the time to see what I am all about.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deana-petty/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Paula_Severt_1-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paula-severt/\"><strong>Paula Severt</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Paula Severt, Owner/Broker at Lantern Realty and Development, LLC. I have... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paula-severt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Chris-Puckett-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chris-puckett/\"><strong>Chris Puckett</strong></a>\n			                Owner/Broker                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Chris Puckett and I am co-owner/broker at Lantern Realty &amp; Development.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chris-puckett/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-kannapolis/\">Kannapolis Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - </br>Covering Kannapolis and Southern Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/11/Jeremy_Aldridge.jpg 599w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"><strong>Jeremy Aldridge</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jeremy-aldridge/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Katie_Abell-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katie-abell/\"><strong>Katie Abell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in upstate New York, I moved to Concord with my family... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katie-abell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sabine_Amoakon-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"><strong>Sabine Amoakon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sabine-amoakon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Casey-Barber-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-barber/\"><strong>Casey Barber</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-barber/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Cheryl_Baxter.jpg 293w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"><strong>Cheryl Baxter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheryl-baxter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Amy_Bundy-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-bundy/\"><strong>Amy Bundy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-bundy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Toni_Benton-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/toni-benton/\"><strong>Toni Benton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/toni-benton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/Annie_Boger.jpg 960w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/annie-boger/\"><strong>Annie Boger Kamp</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in Cabarrus County, Annie Boger graduated from Concord High School and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/annie-boger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Elizabeth_Brown-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"><strong>Elizabeth Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/elizabeth-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/10/Brendas-Photo-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-brown/\"><strong>Brenda Brown</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brenda Brown has been a life-long resident of the Rowan and Cabarrus Counties in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-brown/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dale_Bullock-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dale-bullock/\"><strong>Dale Bullock</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Cabarrus/Rowan area my whole life. My children were raised... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dale-bullock/\"></a>\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/11/Crystal_Cauble.jpg 302w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"><strong>Crystal Cauble</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have been a resident of Cabarrus County for almost 30 years and absolutely... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/crystal-cauble/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Evonne_Caudill-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"><strong>Evonne Caudill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evonne-caudill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/3E99A0E8-6277-4155-8911-0005466BBA00-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tan-crawford/\"><strong>Tan Crawford</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tan-crawford/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jenna_Cook-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-cook/\"><strong>Jenna Cook</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born and raised in the small town of Mount Pleasant she is embedded with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-cook/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-davis/\"><strong>Michael Davis</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-davis/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-300x298.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-768x763.jpg 768w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-604x600.jpg 604w, https://lantern-realty.com/wp-content/uploads/2021/10/new-profile-pic-e1637540685341-496x493.jpg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"><strong>Kim Drakulich</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have lived in the Concord area since 2003, and have enjoyed watching our... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-drakulich/\"></a>\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/China_Dunphy-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"><strong>Australia Dunphy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/australia-dunphy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Ivonne_Erion-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"><strong>Ivonne Erion</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivonne-erion/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Amy-Evans-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amy-evans/\"><strong>Amy Evans</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amy-evans/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Taylor_McClure.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"><strong>Taylor David McClure</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My real estate career started with a fire. Three months into our new marriage,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taylor-david-mcclure/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\">\n			<img width=\"130\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Cecilia-Profile-Picture-130x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"><strong>Cecilia Maria Ferrari</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a native of New Jersey, but I have resided in the Charlotte... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cecilia-maria-ferrari/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Principal Broker - Tennessee                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/3F16EC84-96CD-4CBF-8074-153E48832C84-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/erin-hyman/\"><strong>Erin Hyman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Erin Hyman. I have lived in Kannapolis all my life, graduating... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/erin-hyman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/file1662-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"><strong>Evelin lisseth Hernandez</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Mother of 3 girls and one grandbaby. Moved from MD 4 yrs ago .... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/evelin-lisseth-hernandez/\"></a>\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Yira_Garcia-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/yira-garcia/\"><strong>Yira Garcia</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/yira-garcia/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Sarah_Grace_Horn-443x444.jpeg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"><strong>Sarah Grace Horn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Sarah Horn. I was born and raised in North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-grace-horn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lynnette-Gearing-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"><strong>Lynnette Gearing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a lifelong resident of the Kannapolis/Concord area, I am grateful for the opportunity... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lynnette-gearing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Cathy_Hager-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cathy-hager/\"><strong>Cathy Hager</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cathy-hager/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/tammy_fox.jpg 176w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tammy-fox/\"><strong>Tammy Fox</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Tammy Fox and I have lived in the Kannapolis area my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tammy-fox/\"></a>\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/conard-haywood/\"><strong>Conard Haywood</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/conard-haywood/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/10/head-shot-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"><strong>Lezli Rae Leath</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born in Lexington, Kentucky, which might explain my love for horses and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lezli-rae-leath/\"></a>\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Liz_Hallman.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/liz-hallman/\"><strong>Liz Hallman</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/liz-hallman/\"></a>\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/DSC2804-79-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"><strong>Stephanie E Morgan</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-e-morgan/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-300x297.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-768x761.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-1024x1014.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Hosanna_Hill-350x347.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"><strong>Hosanna Hill</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hosanna-hill/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Melissa-Jackling-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"><strong>Melissa Jackling</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-jackling/\"></a>\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Christine_Jalynski-350x350.jpeg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"><strong>Christine Jalynski</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/christine-jalynski/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-768x775.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-1014x1024.jpg 1014w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/07/kelly_keller.jpg 1744w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-keller/\"><strong>Kelly Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Rochelle_Shanae_Ogburn-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"><strong>Rochelle Shanae Ogburn</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rochelle-shanae-ogburn/\"></a>\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/real-estate-pic-1-e1630721380450-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"><strong>Misty Lynn Moss</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/misty-lynn-moss/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Melissa-LaCroix-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"><strong>Melissa LaCroix</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Helping folks find a home that fits their needs, or helping someone sell a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-lacroix/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Dawn_Lamb-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"><strong>Dawn Lamb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Welcome to Lantern Realty and Development!&nbsp; I have been an active member of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-lamb/\"></a>\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Helen_Matthews-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/helen-matthews/\"><strong>Helen Robb</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/helen-matthews/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/11/Amanda_Lambert.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"><strong>Amanda Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant,... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/01/Lindsey_McCauley-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"><strong>Lindsey McCauley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/lindsey-mccauley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Jerry_Lambert.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"><strong>Jerry Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jerry-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Connie_Merrell-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/connie-merrell/\"><strong>Connie Merrell</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/connie-merrell/\"></a>\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/pam_lambert-1.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/pam-lambert/\"><strong>Pam Lambert</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The right Realtor really does make all the difference! Since 1998 it is my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/pam-lambert/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Julie_Nutter-2-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-nutter/\"><strong>Julie Nutter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-nutter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/09/Jason_Overcash-337x340.jpg 337w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jason-overcash/\"><strong>Jason Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jason-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Laura-Overcash-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/laura-overcash/\"><strong>Laura Overcash</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/laura-overcash/\"></a>\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Alicia_Love_Hammel.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"><strong>Alicia Love Hammel</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I was born and raised in Cabarrus County and now reside in Concord. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/alicia-love-hammel/\"></a>\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Charity_K_Meachum-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"><strong>Charity K Meachum</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am a people person by nature. I have a desire and passion in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/charity-k-meachum/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Kelly_Robinson-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"><strong>Kelly Robinson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kelly-robinson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/Viviana_Martinez_Campos.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"><strong>Viviana Martinez Campos</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/viviana-martinez-campos/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg 1536w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg 496w, https://lantern-realty.com/wp-content/uploads/2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg 1834w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kim-sadler/\"><strong>Kim Sadler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* &#8220;Hi!&nbsp; My name is Kim Bass Sadler and I was born, raised and still... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kim-sadler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Chelsi_Sherin-789x785.jpg 789w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"><strong>Chelsi Sherin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsi-sherin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/09/Holden_Sides.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/holden-sides/\"><strong>Holden Sides</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! Thank you for taking the time to see a little about me and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/holden-sides/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Chad_Rothlin-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"><strong>Chad Rothlin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hey, I&#8217;m Chad Rothlin and my passion is helping people! I taught special education... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chad-rothlin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Ethan_Stillinger-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"><strong>Ethan Stillinger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ethan-stillinger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Tricia_Strickland-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"><strong>Tricia Strickland</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tricia-strickland/\"></a>\n		<a href=\"https://lantern-realty.com/agent/john-suther/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/John-Suther-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/john-suther/\"><strong>John Suther</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/john-suther/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Dawn_Wetherbee-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"><strong>Dawn Wetherbee</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Hi! My name is Dawn and I was born and raised in Cabarrus County.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-wetherbee/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Brittney_Steele-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brittney-steele/\"><strong>Brittney Steele</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brittney-steele/\"></a>\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Kimberly_Trask-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"><strong>Kimberly Trask</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Kimberly Trask and I have lived in Cabarrus County since 2013.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kimberly-trask/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/03/VideoCapture_20210526-184249-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brianne-watson/\"><strong>Brianne Watson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Brianne is a life-long resident of Rowan County and resides in China Grove. An... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brianne-watson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/rick_wilson.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-wilson/\"><strong>Rick Wilson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Richard, originally from Florida, has made North Carolina his permanent home. However, he is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-wilson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/wendell_rummage.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"><strong>Wendell Rummage</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Wendell is a lifelong resident of the Charlotte Metro area which is a plus... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/wendell-rummage/\"></a>\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-768x772.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-1018x1024.jpg 1018w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-350x352.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley-477x480.jpg 477w, https://lantern-realty.com/wp-content/uploads/2019/02/Todd-Wooley.jpg 1427w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/todd-wooley/\"><strong>Todd Wooley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/todd-wooley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/11/Sherri_Wiles_Argabright.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"><strong>Sherri Wiles Argabright</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Let me put my 20 years of experience in our local market (Cabarrus &amp;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sherri-wiles-argabright/\"></a>\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/03/taina_shaw.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/taina-shaw/\"><strong>Taina Shaw</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A NC native, resident of Cabarrus County for over 30 years and a graduate... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/taina-shaw/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Michele_Tichnor.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"><strong>Michele Tichnor</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michele-tichnor/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-150x150.jpeg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-300x300.jpeg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-1024x1024.jpeg 1024w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-768x768.jpeg 768w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-e1627855253369.jpeg 600w, https://lantern-realty.com/wp-content/uploads/2021/06/headshot-1-496x496.jpeg 496w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"><strong>Amber Tsumas</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* The Metro Charlotte area is a great place to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amber-tsumas/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-salisbury/\">Salisbury Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 </br>Covering Rowan County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Sandra_Bean-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sandra-bean/\"><strong>Sandra Bean</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Sandra has lived in North Carolina her whole life. Her passion is to help... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sandra-bean/\"></a>\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Robbie_Bendig-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"><strong>Robbie Bendig</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/robbie-bendig/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1-496x495.jpg 496w, https://lantern-realty.com/wp-content/uploads/2019/06/Jessica_Cloward-1.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"><strong>Jessica Cloward</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jessica-cloward/\"></a>\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/11/MY-Profile-Photo-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"><strong>Carmady King Kruger</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Please visit my website at: https://www.carmadykruger.com/ Buying or selling a home is an emotional... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/carmady-king-kruger/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"><strong>Deborah Griffin</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deborah-griffin/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Melissa_Shannon_Morefield-Valley-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"><strong>Melissa Shannon Morefield-Valley</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Don&#8217;t miss out, let&#8217;s make your dreams come true! Melissa, licensed in 2003, is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-shannon-morefield-valley/\"></a>\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Marguerite_Keller-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"><strong>Marguerite Keller</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Buying and selling real estate can be quite stressful. A Realtor’s® job is to... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/marguerite-keller/\"></a>\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Cheyenne_Kidd-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"><strong>Cheyenne Kidd</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/cheyenne-kidd/\"></a>\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-768x765.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-1024x1020.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-350x349.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard-482x480.jpg 482w, https://lantern-realty.com/wp-content/uploads/2019/06/Bret_Leonard.jpg 1537w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/bret-leonard/\"><strong>Bret Leonard</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/bret-leonard/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-e1602979990537.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rodney-queen/\"><strong>Rodney Queen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I have over twenty years experience in New home construction and Real estate sales.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rodney-queen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2022/02/Benjamin_Allen_Surratt.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"><strong>Benjamin Allen Surratt</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Ben has resided in the Rowan and Cabarrus County area of North Carolina for... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/benjamin-allen-surratt/\"></a>\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 496w, https://lantern-realty.com/wp-content/uploads/2020/12/Courtney_Sloan_Holshouser.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"><strong>Courtney Sloan Holshouser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Courtney loves helping others reach their goals! She has experience working residential sales, land... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/courtney-sloan-holshouser/\"></a>\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2020/01/Melissa_Yates-350x350.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/melissa-yates/\"><strong>Melissa Yates</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Melissa loves people and has been proudly serving Rowan, Cabarrus, Iredell, Mecklenburg, and Davidson... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/melissa-yates/\"></a>\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Paige_Wiser.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/paige-wiser/\"><strong>Paige Wiser</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;m so happy you&#8217;re here! I grew up here in Charlotte, I&#8217;ve lived in... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/paige-wiser/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-harrisburg/\">Harrisburg Office Agents</a></h2>		\n		<p style=\"text-align: center;\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Headshot-Cutout-150x150.png\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"><strong>Dawn Fisher</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dawn-fisher/\"></a>\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Maranda_Allen.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/maranda-allen/\"><strong>Maranda Allen</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Maranda brings experience as both a Realtor and insurance agent to assist her clients... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/maranda-allen/\"></a>\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/Karie_Arem-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"><strong>Karie Arem</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Thank you for checking out my profile! I moved to NC in 1996 and... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/karie-sturdevant/\"></a>\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Janice_Cannon.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/janice-cannon/\"><strong>Janice Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Janice provides all of her clients with a level of service that includes going... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/janice-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Emily_Chandler-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/emily-chandler/\"><strong>Emily Chandler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I am originally from Alabama, but North Carolina has captured my&nbsp;heart and it is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/emily-chandler/\"></a>\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Tracie_Clark-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/tracie-clark/\"><strong>Tracie Clark</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Whether you&#8217;re a first-time home buyer in search of your dream home, a seller... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/tracie-clark/\"></a>\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/Me-and-baby-1-e1627854109785-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"><strong>David G Cannon</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* With over 25 years buying and selling real estate, we can assist you with... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/david-g-cannon/\"></a>\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Donna_Hiner-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/donna-hiner/\"><strong>Donna Hiner</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/donna-hiner/\"></a>\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Aaron_Forsyth-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"><strong>Aaron Forsyth</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* After working with a few different real estate agents and purchasing several properties &#8211;... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/aaron-forsyth/\"></a>\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-1024x1024.jpg 1024w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-768x768.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2019/11/Deanna_Miltz.jpg 1365w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"><strong>Deanna Miltz</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/deanna-miltz/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew-150x150.png 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Rick_Rhew.png 178w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rick-rhew/\"><strong>Rick Rhew</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rick-rhew/\"></a>\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Hayley_Rogers-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"><strong>Hayley Rogers</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/hayley-rogers/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Jamie_Stewart-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"><strong>Jamie Stewart</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jamie-stewart/\"></a>\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Susan_Starnes-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/susan-starnes/\"><strong>Susan Starnes</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/susan-starnes/\"></a>\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-481x480.jpg 481w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang-400x400.jpg 400w, https://lantern-realty.com/wp-content/uploads/2020/04/Min_Zhang.jpg 720w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/min-zhang/\"><strong>Min Zhang</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Born in the beautiful and modern city of Ningbo, China, I worked as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/min-zhang/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-albemarle/\">Albemarle Office Agents</a></h2>		\n		<p style=\"text-align: center;\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-298x300.jpg 298w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-768x774.jpg 768w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-1016x1024.jpg 1016w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-350x353.jpg 350w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison-476x480.jpg 476w, https://lantern-realty.com/wp-content/uploads/2019/02/Sheila-Allison.jpg 1714w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sheila-allison/\"><strong>Sheila Allison</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* As a Realtor, Sheila’s first priority is to make her clients happy and build... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sheila-allison/\"></a>\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/01/Brenda_Sue_Bingham.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"><strong>Brenda Bingham</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Brenda Bingham and I have lived in the Concord area since... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/brenda-sue-bingham/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Jody_Clodfelter-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"><strong>Jody Clodfelter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jody-clodfelter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2020/04/Amanda_Cody-400x400.jpg 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/amanda-cody/\"><strong>Amanda Cody</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Amanda Cody and I have over 16 years&#8217; experience as a... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/amanda-cody/\"></a>\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/04/Mike_Fullerton-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"><strong>Mike Fullerton</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My name is Mike Fullerton, I have been selling Real Estate in the Stanly... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/mike-fullerton/\"></a>\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler-496x496.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/06/Chelsea_Trexler.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"><strong>Chelsea Trexler</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I grew up as a Rowan County resident and moved to Richfield when my... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/chelsea-trexler/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Mooresville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 </br>Covering Iredell County and Lake Norman Area</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-434x430.jpg 434w, https://lantern-realty.com/wp-content/uploads/2019/11/April_Bird-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/april-bird/\"><strong>April Bird</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/april-bird/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Ivan_Henrickson-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"><strong>Ivan Henrickson</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ivan-henrickson/\"></a>\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Rachel_Monrad-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"><strong>Rachel Monrad</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/rachel-monrad/\"></a>\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/09/Sarah_Romesburg-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"><strong>Sarah Romesburg</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/sarah-romesburg/\"></a>\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Dominique_Walter.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/dominique-walter/\"><strong>Dominique Walter</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A North Carolinian for the last 18 years, I am originally from New Jersey.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/dominique-walter/\"></a>\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 298w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 496w, https://lantern-realty.com/wp-content/uploads/2021/02/ashley_uttecht.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"><strong>Ashley Uttecht</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* My passion is helping people achieve the goals they have set out before them.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-uttecht/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Asheville Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 23 Mill Stone Drive -</p><p style=\"text-align: center;\">Asheville, North Carolina 28803</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-350x350.jpg 350w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-480x480.jpg 480w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-270x270.jpg 270w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-192x192.jpg 192w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-180x180.jpg 180w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo-32x32.jpg 32w, https://lantern-realty.com/wp-content/uploads/2018/08/cropped-Facebook-Logo.jpg 512w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"><strong>Kathy Gurney</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/kathy-gurney/\"></a>\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\">\n			<img width=\"140\" height=\"140\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/Julie_Arader.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/julie-arader/\"><strong>Julie Arader</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Asheville and Western North Carolina are great places to live and work, which is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/julie-arader/\"></a>\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2022/02/Colleen_Crane-443x444.jpg 443w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/colleen-crane/\"><strong>Colleen Crane</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* “Almost” a native of Western North Carolina, I moved to Asheville 42 years ago... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/colleen-crane/\"></a>\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/09/thumbnail-1-e1630720664685-150x150.jpeg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"><strong>IIona Kenrick</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I&#8217;ve been in all aspects of real estate for well over 20 years. I... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/iiona-kenrick/\"></a>\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow-300x300.jpg 300w, https://lantern-realty.com/wp-content/uploads/2021/02/Micheal-Farlow.jpg 449w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/michael-farlow/\"><strong>Micheal Farlow</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* A native of Asheville, I have enjoyed a career in Accounting and Tax preparation.... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/michael-farlow/\"></a>\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/WEB-3-e1630720870122-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"><strong>Casey Paige Maness</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Casey is a North Carolina native and has been living in the amazing Asheville... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/casey-paige-maness/\"></a>\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/02/Katherine_Lawing-1-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"><strong>Katherine Lawing</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Having lived in the Asheville area all my life, I understand why it’s one... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/katherine-lawing/\"></a>\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/06/IMG_2205-4-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"><strong>Doreen Shaughnessy</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/doreen-shaughnessy/\"></a>\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\">\n			<img width=\"120\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/07/from-boomtown.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"><strong>Claire Sonnier</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/claire-sonnier/\"></a>\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2021/08/me-10.21-1-e1630721198355-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"><strong>Jenna Stoll</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Love Where You Live&#8230;For me this has always been the most important factor when... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/jenna-stoll/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Lexington Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 105 N State Street -</p><p style=\"text-align: center;\">Lexington, North Carolina 27293</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2022/02/Stephanie_Knight-150x150.jpg\" alt=\"\" loading=\"lazy\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"><strong>Stephanie Knight</strong></a>\n			                Licensed Agent                                 <br> Lantern Realty and Development \n	<!--\n		/* Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is... */\n	-->\n		<a href=\"https://lantern-realty.com/agent/stephanie-knight/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Tennessee Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 416 E. Elk Avenue -</p><p style=\"text-align: center;\">Elizabethton, Tennessee 37643</p>		\n        <!--start agents module-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\">\n			<img width=\"150\" height=\"150\" src=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-150x150.jpg 150w, https://lantern-realty.com/wp-content/uploads/2020/05/Ashley-Ferlauto-350x350.jpg 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />		</a>\n			<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"><strong>Ashley Ferlauto</strong></a>\n			                Principal Broker - Tennessee                                 <br> Lantern Realty and Development \n	<!--\n		/*  */\n	-->\n		<a href=\"https://lantern-realty.com/agent/ashley-ferlauto/\"></a>\n            <!-- agent-module -->\n                <!--end post agents module-->\n			<h2><a href=\"https://lantern-realty.com/lantern-offices/lantern-mooresville/\">Raleigh Office Agents</a></h2>		\n		<p style=\"text-align: center;\">- 4909 Unicon Drive, Ste. 105 -</p>\n<p style=\"text-align: center;\">Wake Forest, North Carolina 27587</p>		\n        <!--start agents module-->\n                            <!-- agent-module -->\n                <!--end post agents module-->','The Lantern Team','','inherit','closed','closed','','101-revision-v1','','','2022-06-24 00:21:28','2022-06-24 00:21:28','',101,'https://lantern-realty.com/?p=2708',0,'revision','',0),(2709,1,'2022-06-24 00:29:46','2022-06-24 00:29:46','<!-- wp:paragraph -->\n<p>Welcome! I\'m thrilled you\'ve found me and I\'d love to help you prepare for the best real estate experience possible! My roots run deep in Cabarrus County - born and raised here. My heart is ecstatic to see downtown Kannapolis come back to life and our county grow at the rate it has through my lifetime! This community is home to my family, church and my business. When I\'m not helping you buy or sell a house, you can find me at games with my son, concerts with my hubby, serving at Sojo Church, or at Lovely Lines Boutique (my other passion). I\'m obsessed with great customer service so expect nothing less. I\'m excited to help you through one of the most important decisions in life!</p>\n<!-- /wp:paragraph -->','Jessica Eudy','','publish','closed','closed','','jessica-eudy','','','2022-06-24 00:29:49','2022-06-24 00:29:49','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2709',20,'houzez_agent','',0),(2710,1,'2022-06-24 00:29:46','2022-06-24 00:29:46','<!-- wp:paragraph -->\n<p>Welcome! I\'m thrilled you\'ve found me and I\'d love to help you prepare for the best real estate experience possible! My roots run deep in Cabarrus County - born and raised here. My heart is ecstatic to see downtown Kannapolis come back to life and our county grow at the rate it has through my lifetime! This community is home to my family, church and my business. When I\'m not helping you buy or sell a house, you can find me at games with my son, concerts with my hubby, serving at Sojo Church, or at Lovely Lines Boutique (my other passion). I\'m obsessed with great customer service so expect nothing less. I\'m excited to help you through one of the most important decisions in life!</p>\n<!-- /wp:paragraph -->','Jessica Eudy','','inherit','closed','closed','','2709-revision-v1','','','2022-06-24 00:29:46','2022-06-24 00:29:46','',2709,'https://lantern-realty.com/?p=2710',0,'revision','',0),(2711,1,'2022-06-24 00:35:25','2022-06-24 00:35:25','<!-- wp:paragraph -->\n<p>Just a little about myself—My husband Danny and I have been married for over 34 years. We have 2 amazing children, our daughter in law and first grandbaby, who we absolutely adore! My desire in life is to be of help to people whenever possible and I have found that working in Real Estate has enabled me to do just that! Since beginning my Real Estate career, I have tried my best to make sure those I am helping KNOW that I truly care about THEM, not just the transaction. To me they are never just clients, but they are new Friends! I love working with people who are looking for a new home whether it is a first time home buyer or a seasoned buyer, and listening to their wants/needs is something that I take seriously and helps me to guide them in the right way. Also, constant communication is the key to success in all aspects of life and is an essential part of the Real Estate world. Keeping clients up to date throughout the entire process is my main goal! I would love to help you or anyone you may know that is wanting to buy or sale!!</p>\n<!-- /wp:paragraph -->','Melinda R Mesimerr','','publish','closed','closed','','melinda-r-mesimerr','','','2022-06-24 00:35:30','2022-06-24 00:35:30','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2711',60,'houzez_agent','',0),(2712,1,'2022-06-24 00:35:25','2022-06-24 00:35:25','<!-- wp:paragraph -->\n<p>Just a little about myself—My husband Danny and I have been married for over 34 years. We have 2 amazing children, our daughter in law and first grandbaby, who we absolutely adore! My desire in life is to be of help to people whenever possible and I have found that working in Real Estate has enabled me to do just that! Since beginning my Real Estate career, I have tried my best to make sure those I am helping KNOW that I truly care about THEM, not just the transaction. To me they are never just clients, but they are new Friends! I love working with people who are looking for a new home whether it is a first time home buyer or a seasoned buyer, and listening to their wants/needs is something that I take seriously and helps me to guide them in the right way. Also, constant communication is the key to success in all aspects of life and is an essential part of the Real Estate world. Keeping clients up to date throughout the entire process is my main goal! I would love to help you or anyone you may know that is wanting to buy or sale!!</p>\n<!-- /wp:paragraph -->','Melinda R Mesimerr','','inherit','closed','closed','','2711-revision-v1','','','2022-06-24 00:35:25','2022-06-24 00:35:25','',2711,'https://lantern-realty.com/?p=2712',0,'revision','',0),(2713,1,'2022-06-24 00:40:42','2022-06-24 00:40:42','<!-- wp:paragraph -->\n<p>My name is Megan and I am a native of Locust, North Carolina, born and raised. Stanly County is where my roots are but my desire to branch out is is in full bloom. I have worked in the mental health and substance abuse field since 2008, my career is very rewarding. I enjoy helping others become the best version of themselves. My plan is to continue serving the community by helping others achieve their goals of homeownership and relocation. It is my belief that every one should have a place they can call home and I am here to help make that happen.</p>\n<!-- /wp:paragraph -->','Megan Owens','','publish','closed','closed','','megan-owens','','','2022-06-24 00:40:46','2022-06-24 00:40:46','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2713',70,'houzez_agent','',0),(2714,1,'2022-06-24 00:40:42','2022-06-24 00:40:42','<!-- wp:paragraph -->\n<p>My name is Megan and I am a native of Locust, North Carolina, born and raised. Stanly County is where my roots are but my desire to branch out is is in full bloom. I have worked in the mental health and substance abuse field since 2008, my career is very rewarding. I enjoy helping others become the best version of themselves. My plan is to continue serving the community by helping others achieve their goals of homeownership and relocation. It is my belief that every one should have a place they can call home and I am here to help make that happen.</p>\n<!-- /wp:paragraph -->','Megan Owens','','inherit','closed','closed','','2713-revision-v1','','','2022-06-24 00:40:42','2022-06-24 00:40:42','',2713,'https://lantern-realty.com/?p=2714',0,'revision','',0),(2716,1,'2022-06-24 00:50:51','2022-06-24 00:50:51','<!-- wp:paragraph -->\n<p>My name is Colleen Viteri and I’m excited to work with you on finding your dream home! I have been in the Customer Service business since 2000. I am very passionate about helping people and will go above and beyond to fulfill your expectations. I currently live in Mt Pleasant with my husband and two children. I have lived in Cabarrus County since 2010 and absolutely love the community. Looking forward to building long lasting relationships!</p>\n<!-- /wp:paragraph -->','Colleen Viteri','','publish','closed','closed','','colleen-viteri','','','2022-06-24 00:50:55','2022-06-24 00:50:55','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2716',120,'houzez_agent','',0),(2717,1,'2022-06-24 00:50:51','2022-06-24 00:50:51','<!-- wp:paragraph -->\n<p>My name is Colleen Viteri and I’m excited to work with you on finding your dream home! I have been in the Customer Service business since 2000. I am very passionate about helping people and will go above and beyond to fulfill your expectations. I currently live in Mt Pleasant with my husband and two children. I have lived in Cabarrus County since 2010 and absolutely love the community. Looking forward to building long lasting relationships!</p>\n<!-- /wp:paragraph -->','Colleen Viteri','','inherit','closed','closed','','2716-revision-v1','','','2022-06-24 00:50:51','2022-06-24 00:50:51','',2716,'https://lantern-realty.com/?p=2717',0,'revision','',0),(2718,1,'2022-06-24 00:57:02','2022-06-24 00:57:02','<!-- wp:paragraph -->\n<p>Alexis has lived in Salisbury for her whole life. Her goal for her real estate career is to help people make their dreams come true. She is a 2020 graduate from East Rowan High School. Alexis’s favorite place to vacation is the beach and Disney World. She loves animals, hanging out with my family, and helping anyway she can. I would love to offer my services to help you buy or sell a home. She attended Rowan Cabarrus Community College and realized my real passion was Real Estate. My job is to help make this experience pleasant for you so that you can enjoy it. I look forward to helping you in this amazing step in your life.</p>\n<!-- /wp:paragraph -->','Alexis Devine Smith','','publish','closed','closed','','alexis-devine-smith','','','2022-06-24 00:57:05','2022-06-24 00:57:05','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2718',90,'houzez_agent','',0),(2719,1,'2022-06-24 00:57:02','2022-06-24 00:57:02','<!-- wp:paragraph -->\n<p>Alexis has lived in Salisbury for her whole life. Her goal for her real estate career is to help people make their dreams come true. She is a 2020 graduate from East Rowan High School. Alexis’s favorite place to vacation is the beach and Disney World. She loves animals, hanging out with my family, and helping anyway she can. I would love to offer my services to help you buy or sell a home. She attended Rowan Cabarrus Community College and realized my real passion was Real Estate. My job is to help make this experience pleasant for you so that you can enjoy it. I look forward to helping you in this amazing step in your life.</p>\n<!-- /wp:paragraph -->','Alexis Devine Smith','','inherit','closed','closed','','2718-revision-v1','','','2022-06-24 00:57:02','2022-06-24 00:57:02','',2718,'https://lantern-realty.com/?p=2719',0,'revision','',0),(2720,1,'2022-06-24 01:02:17','2022-06-24 01:02:17','<!-- wp:paragraph -->\n<p>Mitzi is a native to Rowan County and a graduate of East Rowan High.  For many years she was a stay at home mother, dedicated to her family.  She has also worked for McDaniel Awning Company. Mitzi loves to vacation at the beach and spend time with family and friends.  Mitzi and her daughter became agents together and plan to work hard and show their determination to represent you.  Mitzi loves utilizing her skills and knowledge to help others achieve their dreams! With excellent customer service experience and access to a large team with knowledge, working with Mitzi means you will be in good hands!</p>\n<!-- /wp:paragraph -->','Mitzi Mcdaniel Smith','','publish','closed','closed','','mitzi-mcdaniel-smith','','','2022-06-24 01:02:23','2022-06-24 01:02:23','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2720',70,'houzez_agent','',0),(2721,1,'2022-06-24 01:02:17','2022-06-24 01:02:17','<!-- wp:paragraph -->\n<p>Mitzi is a native to Rowan County and a graduate of East Rowan High.  For many years she was a stay at home mother, dedicated to her family.  She has also worked for McDaniel Awning Company. Mitzi loves to vacation at the beach and spend time with family and friends.  Mitzi and her daughter became agents together and plan to work hard and show their determination to represent you.  Mitzi loves utilizing her skills and knowledge to help others achieve their dreams! With excellent customer service experience and access to a large team with knowledge, working with Mitzi means you will be in good hands!</p>\n<!-- /wp:paragraph -->','Mitzi Mcdaniel Smith','','inherit','closed','closed','','2720-revision-v1','','','2022-06-24 01:02:17','2022-06-24 01:02:17','',2720,'https://lantern-realty.com/?p=2721',0,'revision','',0),(2722,1,'2022-06-24 01:06:08','2022-06-24 01:06:08','<!-- wp:paragraph -->\n<p>Hey! My name is Andrew, but everyone calls me AJ. Me and my lovely wife were both raised in Charlotte/ Concord area and just purchased a house in 2020, we have one son with another on the way! I started my real estate journey for the simple reason that I love meeting new people and making lasting relationships. My main goal is to help you find a perfect place to call home with as little stress as possible. Beyond that, I promise to work tirelessly so that you can have a wonderful and unforgettable experience! In the past I have worked in landscaping, and I was a Sales office manager for a residential solar company. With my former experience, I gained ample understanding and knowledge about the Charlotte/ Concord area, and I am confident in taking on the huge responsibility of finding you your perfect home! Just reach out to me anytime and we will begin your new and exciting journey.</p>\n<!-- /wp:paragraph -->','Andrew Jason Wetherbee','','publish','closed','closed','','andrew-jason-wetherbee','','','2022-06-24 01:06:15','2022-06-24 01:06:15','',0,'https://lantern-realty.com/?post_type=houzez_agent&#038;p=2722',110,'houzez_agent','',0),(2723,1,'2022-06-24 01:06:08','2022-06-24 01:06:08','<!-- wp:paragraph -->\n<p>Hey! My name is Andrew, but everyone calls me AJ. Me and my lovely wife were both raised in Charlotte/ Concord area and just purchased a house in 2020, we have one son with another on the way! I started my real estate journey for the simple reason that I love meeting new people and making lasting relationships. My main goal is to help you find a perfect place to call home with as little stress as possible. Beyond that, I promise to work tirelessly so that you can have a wonderful and unforgettable experience! In the past I have worked in landscaping, and I was a Sales office manager for a residential solar company. With my former experience, I gained ample understanding and knowledge about the Charlotte/ Concord area, and I am confident in taking on the huge responsibility of finding you your perfect home! Just reach out to me anytime and we will begin your new and exciting journey.</p>\n<!-- /wp:paragraph -->','Andrew Jason Wetherbee','','inherit','closed','closed','','2722-revision-v1','','','2022-06-24 01:06:08','2022-06-24 01:06:08','',2722,'https://lantern-realty.com/?p=2723',0,'revision','',0),(2725,0,'2022-07-06 02:17:05','2022-07-06 02:17:05','','238289776_10104327108332416_32970513820961977_n','','inherit','','closed','','238289776_10104327108332416_32970513820961977_n-2','','','2022-07-06 02:17:05','2022-07-06 02:17:05','',0,'https://lantern-realty.com/238289776_10104327108332416_32970513820961977_n-2/',0,'attachment','image/jpeg',0),(2726,6,'2022-07-06 13:36:50','2022-07-06 13:36:50','<div class=\"postie-post\"><div dir=\"ltr\">Good Morning All, here are some very important items we have coming up to be aware of.  <div><br></div><div>- Our Lantern Loves team has started meeting.  We have a few exciting projects lined up to help serve the communities we work in.  We would like participation from all offices.  If you or your office is interested in participating please contact Melissa Yates at <a href=\"mailto:melissayates4u@gmail.com\"><a href=\"mailto:melissayates4u@gmail.com\" >melissayates4u@gmail.com</a></a>. Here is what we have so far....</div><div><br></div><div><div style=\"color:rgb(0,0,0)\"><b>Raffle </b>- We will be raffling off the remaining box seats for the July 27th game (16 entry tickets and 4 parking passes are included).  These proceeds will go to the Lantern Loves account to help with future projects.  So far the bid is up to $200 by Ryan Ivory.</div><div style=\"color:rgb(0,0,0)\"><ul><li style=\"margin-left:15px\">We spoke about reaching out to our affiliates to assist with items for a <i>raffle basket</i> full of prizes.  Nick Lovelass has agreed to place items in the basket as well as a few others.  This income will also assist with the Lanter Loves account to support future projects.</li></ul><div><b>Food Drive</b> - Starting today - July 5 through August 3 - we will be collecting items from the attached list <i><b>(Canned Vegetables,  Canned Meat - Spam, Chicken, Tuna, Beef Stew, Chicken &amp; Dumplings, etc, Any canned or dried beans, Any canned tomatoes, Any canned ravioli, spaghetti, etc, Any Starches - mac-n-cheese, rice, potatoes, ttc, Any breakfast food cereals, pop tarts, muffin mix, etc.) </b></i>  to support Rowan Helping Ministries in their efforts to gain additional items in their pantry.  The agent to bring in the <b>MOST ITEMS</b> will win a $50 gift card!! Melissa will place a tote at the Salisbury and Kannapolis office on Wednesday, July 6, 2022.</div><div><br></div><div><b>SOS (Season of Service) - </b>If your office has a service project in the works for 2022, we would love to know about it and help out!</div><div><ul><li style=\"margin-left:15px\"><b>Salisbury</b> - BlockWork - Saturday, October 22, 2022 at 8am - location TBD.  They have a facebook page so go ahead and register to help out!  (2022 BlockWork)</li><li style=\"margin-left:15px\"><b>Kannapolis </b>- Habitat House - Nick Loveless is working to get us a date to assist with the HH this fall.  Stay tuned.</li><li style=\"margin-left:15px\"><b>Albemarle</b> - TBD</li><li style=\"margin-left:15px\"><b>Mooresville</b> - TBD</li><li style=\"margin-left:15px\"><b>Asheville</b> - TBD</li><li style=\"margin-left:15px\"><b>Lexington</b> - TBD</li><li style=\"margin-left:15px\"><b>Wake Forest / Raleigh</b> - TBD</li><li style=\"margin-left:15px\"><b>Tennessee</b> - TBD</li></ul></div></div><div>- Our Tuesday Morning Think Tank sessions have been a rousing success. We certainly appreciate the hard work Liz Hallman has put into leading those discussions.  Our next meeting will be <b>WEDNESDAY August 3rd at 930</b>.  Please note the change of day from Tuesday to Wednesday.  That will be our only meeting in August, the following meeting will be <b>Wednesday September the 7th at 930</b>.  </div><div><br></div><div>- We are in the planning stages of having a Lantern Family Day at Dan Nicholas Park in Salisbury, NC from 1-4pm on Sunday Sept. 18th.  We will be renting several shelters so agents can bring their families and enjoy what the park has to offer and get to socialize with other Lantern families. </div><div><br></div><div>- We will be sending out our updated Education Calendar in a few days.  We have taken off the summer for the most part so folks can enjoy vacation.  Education is still a huge part of what we do at Lantern and we will be picking up where we left off very soon!</div><div><br></div><div>- Dont forget about our team call today. Melissa sent the Zoom link out on Tuesday.  <span style=\"color:rgb(0,0,0)\">Don&#39;t miss our upcoming meeting.  Terry will help us understand what a 2-1 Buydown is all about and how it can benefit our buyers with these recent rate increases. And, we will hear from Matthew Young and how he and GEICO can bring value to you and your clients. </span></div><div><i style=\"color:rgb(0,0,0)\"><br></i></div><div><i style=\"color:rgb(0,0,0)\">- Please note: the new 2022-2023 NC RE Forms are available. Please make sure those are what you use going forward and make sure those are the forms other agents are sending you too.  We have a class on the 13th at 3pm hosted by Nick Lovelace of Knipp Law. He will go over what we need to know about the changes to these forms.</i></div><br style=\"color:rgb(0,0,0)\"><b style=\"color:rgb(0,0,0)\">Topic: Team Meeting - \"What is a 2-1 buydown?\"  w/Terry Whitesell of Fairway Mortgage<br>Time: Jul 6, 2022 11:00 AM Eastern Time (US and Canada)</b><br style=\"color:rgb(0,0,0)\"><br style=\"color:rgb(0,0,0)\"><span style=\"color:rgb(0,0,0)\">Join Zoom Meeting</span><br style=\"color:rgb(0,0,0)\"><a href=\"https://us02web.zoom.us/j/86446381174?pwd=aBlzwP-arQ0uFbEJOCNyA9qPBX6npr.1\" target=\"_blank\" rel=\"noopener\">https://us02web.zoom.us/j/86446381174?pwd=aBlzwP-arQ0uFbEJOCNyA9qPBX6npr.1</a><br style=\"color:rgb(0,0,0)\"><div><br></div><div>- Lastly, at 8:20am this morning i received a text of another person I knew had committed suicide.  It hits me like a hammer every time.  I call our business a meat grinder because it can chew you up and spit you out with emotions.  </div><div><br></div><div>I&#39;m so thankful for the work Larry Laughter has done with the Mental Health America (MHA) of Central Carolina that promotes mental wellness. </div><div><br></div><div>You have options, folks.  If you ever need someone to speak with call MHA, the National Suicide Prevention Lifeline at 800-273-8255 or call one of your fellow Lantern family members.  Call me, call Paula or call Deana.  Let&#39;s support each other in ALL ways!!!</div><div><br></div><div>Love Y&#39;all!</div></div>','News &amp; Notes','','publish','closed','open','','news-notes-53','','','2022-07-06 13:36:50','2022-07-06 13:36:50','',0,'https://lantern-realty.com/?p=2726',0,'post','',0),(2727,0,'2022-07-07 03:51:45','2022-07-07 03:51:45','','280007879_104782758898297_1036531613923554789_n','','inherit','','closed','','280007879_104782758898297_1036531613923554789_n','','','2022-07-07 03:51:45','2022-07-07 03:51:45','',0,'https://lantern-realty.com/280007879_104782758898297_1036531613923554789_n/',0,'attachment','image/jpeg',0);
/*!40000 ALTER TABLE `lrwp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_revslider_css`
--

DROP TABLE IF EXISTS `lrwp_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `hover` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `advanced` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `handle_index` (`handle`(64))
) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_css`
--

LOCK TABLES `lrwp_revslider_css` WRITE;
/*!40000 ALTER TABLE `lrwp_revslider_css` DISABLE KEYS */;
INSERT INTO `lrwp_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}','[]'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','[]'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Power2.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"Power3.easeInOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"Power3.easeInOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Back.easeOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power2.easeInOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}');
/*!40000 ALTER TABLE `lrwp_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_revslider_css_bkp`
--

DROP TABLE IF EXISTS `lrwp_revslider_css_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_css_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `hover` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `advanced` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_css_bkp`
--

LOCK TABLES `lrwp_revslider_css_bkp` WRITE;
/*!40000 ALTER TABLE `lrwp_revslider_css_bkp` DISABLE KEYS */;
INSERT INTO `lrwp_revslider_css_bkp` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}','[]'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','[]'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Power2.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"Power3.easeInOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"Power3.easeInOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Back.easeOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power2.easeInOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}');
/*!40000 ALTER TABLE `lrwp_revslider_css_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_revslider_layer_animations`
--

DROP TABLE IF EXISTS `lrwp_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `params` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_layer_animations`
--

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

--
-- Table structure for table `lrwp_revslider_layer_animations_bkp`
--

DROP TABLE IF EXISTS `lrwp_revslider_layer_animations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_layer_animations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `params` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_layer_animations_bkp`
--

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

--
-- Table structure for table `lrwp_revslider_navigations`
--

DROP TABLE IF EXISTS `lrwp_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `css` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `markup` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_navigations`
--

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

--
-- Table structure for table `lrwp_revslider_navigations_bkp`
--

DROP TABLE IF EXISTS `lrwp_revslider_navigations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_navigations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `css` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `markup` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_navigations_bkp`
--

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

--
-- Table structure for table `lrwp_revslider_sliders`
--

DROP TABLE IF EXISTS `lrwp_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `alias` tinytext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `type_index` (`type`(8))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_sliders`
--

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

--
-- Table structure for table `lrwp_revslider_sliders_bkp`
--

DROP TABLE IF EXISTS `lrwp_revslider_sliders_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_sliders_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `alias` tinytext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_sliders_bkp`
--

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

--
-- Table structure for table `lrwp_revslider_slides`
--

DROP TABLE IF EXISTS `lrwp_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_slides`
--

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

--
-- Table structure for table `lrwp_revslider_slides_bkp`
--

DROP TABLE IF EXISTS `lrwp_revslider_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_slides_bkp`
--

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

--
-- Table structure for table `lrwp_revslider_static_slides`
--

DROP TABLE IF EXISTS `lrwp_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_static_slides`
--

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

--
-- Table structure for table `lrwp_revslider_static_slides_bkp`
--

DROP TABLE IF EXISTS `lrwp_revslider_static_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_revslider_static_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_revslider_static_slides_bkp`
--

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

--
-- Table structure for table `lrwp_smush_dir_images`
--

DROP TABLE IF EXISTS `lrwp_smush_dir_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_smush_dir_images` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `path` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `path_hash` char(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `resize` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lossy` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `error` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image_size` int(10) unsigned DEFAULT NULL,
  `orig_size` int(10) unsigned DEFAULT NULL,
  `file_time` int(10) unsigned DEFAULT NULL,
  `last_scan` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `meta` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `path_hash` (`path_hash`),
  KEY `image_size` (`image_size`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_smush_dir_images`
--

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

--
-- Table structure for table `lrwp_term_relationships`
--

DROP TABLE IF EXISTS `lrwp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_term_relationships`
--

LOCK TABLES `lrwp_term_relationships` WRITE;
/*!40000 ALTER TABLE `lrwp_term_relationships` DISABLE KEYS */;
INSERT INTO `lrwp_term_relationships` VALUES (1,1,0),(4,2,0),(5,2,0),(6,2,0),(7,2,0),(114,3,0),(105,3,0),(37,3,0),(206,2,0),(150,2,0),(166,2,0),(14,2,0),(15,2,0),(16,2,0),(149,2,0),(151,2,0),(156,2,0),(157,2,0),(167,2,0),(111,4,0),(126,4,0),(129,6,0),(138,6,0),(135,4,0),(424,10,0),(436,6,0),(503,4,0),(141,4,0),(144,6,0),(211,2,0),(208,2,0),(210,2,0),(209,2,0),(207,2,0),(212,2,0),(214,2,0),(216,2,0),(218,2,0),(217,2,0),(215,2,0),(213,2,0),(247,2,0),(304,5,0),(305,5,0),(306,5,0),(303,5,0),(361,6,0),(322,4,0),(132,6,0),(468,4,0),(370,4,0),(1637,14,0),(1640,4,0),(380,4,0),(383,4,0),(358,6,0),(390,4,0),(393,4,0),(400,4,0),(411,4,0),(416,4,0),(546,7,0),(373,6,0),(424,4,0),(2639,16,0),(430,4,0),(434,4,0),(319,6,0),(439,4,0),(2274,7,0),(444,4,0),(123,6,0),(470,4,0),(2169,4,0),(476,4,0),(549,4,0),(481,4,0),(484,4,0),(1633,4,0),(1677,4,0),(1545,4,0),(546,4,0),(497,4,0),(503,7,0),(421,6,0),(37,7,0),(114,7,0),(105,7,0),(370,7,0),(411,7,0),(416,7,0),(111,7,0),(468,7,0),(126,7,0),(470,7,0),(383,7,0),(135,7,0),(380,7,0),(393,7,0),(608,6,0),(1640,22,0),(489,6,0),(390,7,0),(322,10,0),(2169,10,0),(424,7,0),(2638,16,0),(476,7,0),(400,7,0),(322,7,0),(430,7,0),(497,7,0),(481,7,0),(484,7,0),(141,7,0),(439,7,0),(1633,10,0),(1633,7,0),(1677,7,0),(444,7,0),(1545,10,0),(434,7,0),(2274,4,0),(517,2,0),(518,2,0),(528,4,0),(1398,10,0),(528,7,0),(1393,7,0),(535,2,0),(478,6,0),(549,7,0),(551,4,0),(551,7,0),(553,4,0),(553,7,0),(555,4,0),(555,7,0),(558,4,0),(558,7,0),(560,4,0),(560,7,0),(563,4,0),(563,7,0),(565,4,0),(565,7,0),(573,4,0),(573,7,0),(576,4,0),(576,7,0),(579,4,0),(579,7,0),(1398,7,0),(1398,4,0),(598,4,0),(598,7,0),(601,4,0),(601,7,0),(604,4,0),(604,7,0),(1637,7,0),(1637,4,0),(1393,4,0),(1393,10,0),(1919,16,0),(1921,16,0),(617,4,0),(617,7,0),(620,4,0),(620,7,0),(623,4,0),(623,7,0),(645,4,0),(645,7,0),(686,8,0),(687,8,0),(688,8,0),(689,8,0),(690,8,0),(691,8,0),(692,8,0),(693,8,0),(694,8,0),(695,8,0),(696,8,0),(697,8,0),(698,8,0),(699,8,0),(700,8,0),(701,8,0),(702,8,0),(703,8,0),(704,8,0),(705,8,0),(706,8,0),(707,8,0),(708,8,0),(709,8,0),(710,8,0),(711,8,0),(712,8,0),(713,8,0),(714,8,0),(716,8,0),(715,8,0),(717,9,0),(718,9,0),(719,9,0),(720,9,0),(721,9,0),(722,9,0),(723,9,0),(724,9,0),(725,9,0),(726,9,0),(727,9,0),(728,9,0),(729,9,0),(730,9,0),(744,4,0),(744,7,0),(744,10,0),(781,7,0),(781,4,0),(781,10,0),(370,10,0),(411,13,0),(416,10,0),(468,11,0),(546,10,0),(377,6,0),(111,10,0),(126,10,0),(528,10,0),(380,10,0),(549,10,0),(598,13,0),(470,11,0),(1467,16,0),(601,13,0),(1677,10,0),(383,10,0),(135,10,0),(645,10,0),(604,13,0),(551,10,0),(393,10,0),(573,11,0),(553,10,0),(419,6,0),(1464,16,0),(555,10,0),(1402,10,0),(1463,16,0),(497,11,0),(1554,6,0),(390,10,0),(476,10,0),(481,10,0),(503,10,0),(400,10,0),(558,12,0),(576,11,0),(484,10,0),(120,6,0),(430,10,0),(2305,22,0),(434,12,0),(1915,16,0),(1662,16,0),(141,10,0),(439,10,0),(2274,10,0),(563,10,0),(444,10,0),(560,10,0),(487,6,0),(617,12,0),(579,11,0),(620,10,0),(623,12,0),(785,10,0),(785,4,0),(785,7,0),(788,10,0),(788,4,0),(788,7,0),(791,12,0),(791,4,0),(791,7,0),(2025,6,0),(2165,4,0),(2165,10,0),(798,12,0),(798,4,0),(798,7,0),(801,10,0),(801,4,0),(801,7,0),(803,10,0),(803,4,0),(803,7,0),(805,10,0),(805,4,0),(805,7,0),(808,10,0),(808,4,0),(808,7,0),(442,6,0),(2277,4,0),(2277,12,0),(814,10,0),(814,4,0),(814,7,0),(816,12,0),(816,4,0),(816,7,0),(811,6,0),(2280,10,0),(2277,7,0),(822,11,0),(822,4,0),(822,7,0),(825,10,0),(825,4,0),(825,7,0),(828,10,0),(828,4,0),(828,7,0),(831,14,0),(831,4,0),(831,7,0),(834,11,0),(834,4,0),(834,7,0),(836,10,0),(836,4,0),(836,7,0),(839,12,0),(839,4,0),(839,7,0),(842,14,0),(842,4,0),(842,7,0),(845,10,0),(845,4,0),(845,7,0),(848,10,0),(848,4,0),(848,7,0),(1539,16,0),(1541,16,0),(1540,16,0),(853,10,0),(853,4,0),(853,7,0),(1365,16,0),(1078,5,0),(1083,15,0),(1113,16,0),(1151,17,0),(1151,18,0),(1152,19,0),(1152,18,0),(1153,17,0),(1153,18,0),(1154,17,0),(1154,18,0),(1155,17,0),(1155,18,0),(1156,17,0),(1156,18,0),(1157,17,0),(1157,18,0),(1158,17,0),(1158,18,0),(1159,17,0),(1159,18,0),(1160,17,0),(1160,18,0),(1161,17,0),(1161,18,0),(1162,17,0),(1162,18,0),(1163,17,0),(1163,18,0),(1164,17,0),(1164,18,0),(1165,17,0),(1165,18,0),(1166,17,0),(1166,18,0),(1194,16,0),(1196,16,0),(1235,21,0),(1235,20,0),(1241,20,0),(1241,21,0),(1301,8,0),(1366,16,0),(1369,16,0),(1370,16,0),(1371,16,0),(1373,16,0),(1374,16,0),(1375,16,0),(1376,16,0),(1377,16,0),(1378,16,0),(1379,16,0),(1380,16,0),(1381,16,0),(1382,16,0),(1383,16,0),(1466,16,0),(2724,16,0),(1402,4,0),(1402,7,0),(1595,16,0),(2726,16,0),(1408,10,0),(1408,4,0),(1408,7,0),(1424,16,0),(1426,16,0),(1427,16,0),(1428,16,0),(1429,16,0),(1429,6,0),(1430,16,0),(1430,6,0),(1432,16,0),(1435,16,0),(1436,16,0),(1437,16,0),(1438,16,0),(1439,16,0),(1440,16,0),(1441,16,0),(1443,16,0),(1444,16,0),(1445,16,0),(1449,11,0),(1449,4,0),(1449,7,0),(1456,16,0),(1457,16,0),(1458,16,0),(1459,16,0),(1468,16,0),(1469,16,0),(1470,16,0),(1471,16,0),(1472,16,0),(1473,16,0),(1474,16,0),(1475,16,0),(1476,16,0),(1477,16,0),(1478,16,0),(1479,16,0),(1480,16,0),(1482,16,0),(1484,16,0),(1485,16,0),(1486,16,0),(1487,16,0),(1488,16,0),(1489,16,0),(1490,16,0),(1492,16,0),(1493,16,0),(1495,16,0),(1496,16,0),(1500,16,0),(1503,16,0),(1507,11,0),(1507,4,0),(1510,10,0),(1510,4,0),(1514,12,0),(1514,4,0),(795,6,0),(2167,10,0),(2165,7,0),(1514,7,0),(1510,7,0),(1507,7,0),(1520,13,0),(1520,4,0),(1520,7,0),(1523,12,0),(1523,4,0),(1523,7,0),(1663,16,0),(1545,7,0),(1548,14,0),(1548,4,0),(1548,7,0),(1551,14,0),(1551,4,0),(1551,7,0),(1517,6,0),(2167,7,0),(2167,4,0),(1557,10,0),(1557,4,0),(1557,7,0),(1561,16,0),(1562,16,0),(1565,16,0),(1566,16,0),(1567,16,0),(1568,16,0),(1569,16,0),(1570,16,0),(1576,16,0),(1577,16,0),(1578,16,0),(1579,16,0),(1582,16,0),(565,14,0),(1640,7,0),(1642,22,0),(1642,4,0),(1642,7,0),(1653,8,0),(1655,10,0),(1655,4,0),(1655,7,0),(1658,16,0),(1666,16,0),(1668,16,0),(1669,16,0),(1670,16,0),(1671,16,0),(1756,16,0),(1682,10,0),(1682,4,0),(1682,7,0),(1685,10,0),(1685,4,0),(1685,7,0),(1689,16,0),(1690,16,0),(1694,16,0),(1696,16,0),(1697,16,0),(1698,16,0),(1699,16,0),(1700,16,0),(1702,16,0),(1703,16,0),(1704,16,0),(1705,16,0),(1707,16,0),(1710,16,0),(1717,16,0),(1719,16,0),(1721,16,0),(1722,16,0),(1724,16,0),(1727,16,0),(1728,16,0),(1729,16,0),(1834,16,0),(1837,16,0),(1837,6,0),(1838,16,0),(1839,16,0),(1840,16,0),(1840,6,0),(1841,16,0),(1842,16,0),(1844,16,0),(1847,16,0),(1848,16,0),(1848,6,0),(1849,16,0),(1850,16,0),(1854,16,0),(1855,16,0),(1857,16,0),(1858,16,0),(1859,16,0),(1860,16,0),(1861,16,0),(1862,16,0),(1864,16,0),(1865,16,0),(1866,16,0),(1867,16,0),(1868,16,0),(1870,16,0),(1871,16,0),(1874,16,0),(1876,16,0),(1879,16,0),(1880,16,0),(1881,16,0),(1883,16,0),(1892,10,0),(1892,4,0),(1892,7,0),(1895,22,0),(1895,4,0),(1895,7,0),(1898,13,0),(1898,4,0),(1898,7,0),(1901,11,0),(1901,4,0),(1901,7,0),(1904,10,0),(1904,4,0),(1904,7,0),(1907,10,0),(1907,4,0),(1907,7,0),(1981,16,0),(1922,16,0),(1925,16,0),(1925,6,0),(1926,16,0),(1927,16,0),(1938,16,0),(1939,16,0),(1962,16,0),(1966,16,0),(1968,16,0),(1969,16,0),(1969,6,0),(1970,16,0),(1970,6,0),(1971,16,0),(1971,6,0),(1972,16,0),(1982,16,0),(1984,16,0),(1988,16,0),(1991,16,0),(1991,6,0),(1992,16,0),(1993,16,0),(1996,16,0),(1996,6,0),(1997,16,0),(1998,16,0),(1999,16,0),(2001,16,0),(2002,16,0),(2003,16,0),(2003,6,0),(2004,16,0),(2005,16,0),(2009,16,0),(2009,6,0),(2010,16,0),(2011,16,0),(2012,16,0),(2012,6,0),(2013,16,0),(2014,16,0),(2015,16,0),(2021,12,0),(2021,4,0),(2021,7,0),(2023,12,0),(2023,4,0),(2023,7,0),(2163,10,0),(2163,7,0),(2163,4,0),(2027,10,0),(2027,4,0),(2027,7,0),(2029,22,0),(2029,4,0),(2029,7,0),(2031,22,0),(2031,4,0),(2031,7,0),(2033,22,0),(2033,4,0),(2033,7,0),(2035,12,0),(2035,4,0),(2035,7,0),(2037,16,0),(2040,16,0),(2042,16,0),(2043,16,0),(2044,16,0),(2045,16,0),(2046,16,0),(2047,16,0),(2047,6,0),(2048,16,0),(2049,16,0),(2050,16,0),(2050,6,0),(2053,16,0),(2058,16,0),(2061,16,0),(2064,16,0),(2069,16,0),(2077,22,0),(2077,4,0),(2077,7,0),(2079,22,0),(2079,4,0),(2079,7,0),(2082,10,0),(2082,4,0),(2082,7,0),(2084,22,0),(2084,4,0),(2084,7,0),(2086,10,0),(2086,4,0),(2086,7,0),(2088,16,0),(2091,16,0),(2092,16,0),(2093,16,0),(2094,16,0),(2095,16,0),(2096,16,0),(2097,16,0),(2100,16,0),(2101,16,0),(2104,16,0),(2105,16,0),(2106,16,0),(2107,16,0),(2110,16,0),(2114,16,0),(2115,16,0),(2116,16,0),(2117,16,0),(2118,16,0),(2120,16,0),(2120,6,0),(2121,16,0),(2124,16,0),(2127,16,0),(2128,16,0),(2129,16,0),(2130,16,0),(2133,16,0),(2136,16,0),(2139,16,0),(2140,16,0),(2141,16,0),(2142,16,0),(2144,16,0),(2145,16,0),(2150,16,0),(2153,16,0),(473,6,0),(2169,7,0),(2171,10,0),(2171,4,0),(2171,7,0),(2173,11,0),(2173,4,0),(2173,7,0),(2178,16,0),(2182,16,0),(2183,16,0),(2184,16,0),(2185,16,0),(2186,16,0),(2193,16,0),(2194,16,0),(2197,16,0),(2199,16,0),(2200,16,0),(2202,16,0),(2202,6,0),(2209,16,0),(2212,16,0),(2213,16,0),(2213,6,0),(2214,16,0),(2214,6,0),(2215,16,0),(2216,16,0),(2218,16,0),(2221,16,0),(2224,16,0),(2224,6,0),(2227,16,0),(2228,16,0),(2236,16,0),(2237,16,0),(2237,6,0),(2240,16,0),(2244,16,0),(2246,16,0),(2247,16,0),(2249,16,0),(2252,16,0),(2254,16,0),(819,6,0),(2280,4,0),(2280,7,0),(2283,10,0),(2283,4,0),(2283,7,0),(2286,10,0),(2286,4,0),(2286,7,0),(2289,12,0),(2289,4,0),(2289,7,0),(2292,11,0),(2292,4,0),(2292,7,0),(2298,4,0),(2298,7,0),(2298,23,0),(2302,11,0),(2302,4,0),(2302,7,0),(2637,16,0),(2305,4,0),(2305,7,0),(2308,10,0),(2308,4,0),(2308,7,0),(2320,16,0),(2320,6,0),(2327,16,0),(2329,16,0),(2330,16,0),(2330,6,0),(2331,16,0),(2332,16,0),(2334,16,0),(2336,16,0),(2337,16,0),(2338,16,0),(2339,16,0),(2342,16,0),(2343,16,0),(2344,16,0),(2344,6,0),(2345,16,0),(2346,16,0),(2347,16,0),(2347,6,0),(2348,16,0),(2349,16,0),(2350,16,0),(2352,16,0),(2353,16,0),(2353,6,0),(2354,16,0),(2356,16,0),(2357,16,0),(2360,24,0),(2361,16,0),(2365,16,0),(2366,16,0),(2366,6,0),(2367,16,0),(2367,6,0),(2418,16,0),(2419,16,0),(2420,16,0),(2421,16,0),(2422,16,0),(2423,16,0),(2598,15,0),(427,6,0),(2644,16,0),(2647,16,0),(2648,16,0),(2652,16,0),(2656,16,0),(2658,16,0),(2659,16,0),(2659,6,0),(2660,16,0),(2660,6,0),(2665,16,0),(2666,16,0),(2666,6,0),(645,25,0),(2690,16,0),(2693,16,0),(2694,16,0),(2697,16,0),(2699,16,0),(2700,16,0),(2702,16,0),(2703,16,0),(2709,10,0),(2709,7,0),(2709,4,0),(2711,10,0),(2711,7,0),(2711,4,0),(2713,10,0),(2713,7,0),(2713,4,0),(2716,10,0),(2716,7,0),(2716,4,0),(2718,7,0),(2718,4,0),(2718,11,0),(2720,7,0),(2720,4,0),(2720,11,0),(2722,7,0),(2722,10,0),(2722,4,0),(1405,6,0);
/*!40000 ALTER TABLE `lrwp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_term_taxonomy`
--

DROP TABLE IF EXISTS `lrwp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_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=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_term_taxonomy`
--

LOCK TABLES `lrwp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `lrwp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `lrwp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,31),(3,3,'agent_category','',0,3),(4,4,'agent_category','',0,131),(5,5,'nav_menu','',0,5),(6,6,'agent_category','',0,0),(7,7,'agent_category','',0,134),(8,8,'nav_menu','',0,33),(9,9,'nav_menu','Optima Express default menu',0,14),(10,10,'agent_category','',0,77),(11,11,'agent_category','',0,16),(12,12,'agent_category','',0,15),(13,13,'agent_category','',0,6),(14,14,'agent_category','',0,6),(15,15,'elementor_library_type','',0,2),(16,16,'category','',0,256),(17,17,'mec_location','',0,15),(18,18,'mec_organizer','',0,16),(19,19,'mec_location','',0,1),(20,20,'calendar_feed','',0,2),(21,21,'calendar_type','',0,2),(22,22,'agent_category','',0,10),(23,23,'agent_category','',0,1),(24,24,'wp_theme','',0,1),(25,25,'agent_category','',0,1),(26,26,'agent_category','',0,0);
/*!40000 ALTER TABLE `lrwp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_termmeta`
--

DROP TABLE IF EXISTS `lrwp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_termmeta`
--

LOCK TABLES `lrwp_termmeta` WRITE;
/*!40000 ALTER TABLE `lrwp_termmeta` DISABLE KEYS */;
INSERT INTO `lrwp_termmeta` VALUES (1,17,'address','Kannapolis Office'),(2,17,'latitude','0'),(3,17,'longitude','0'),(4,17,'url',''),(5,17,'thumbnail',''),(6,18,'tel',''),(7,18,'email','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(8,18,'url',''),(9,18,'thumbnail',''),(10,19,'address','Undecided'),(11,19,'latitude','0'),(12,19,'longitude','0'),(13,19,'url',''),(14,19,'thumbnail','');
/*!40000 ALTER TABLE `lrwp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_terms`
--

DROP TABLE IF EXISTS `lrwp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_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=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_terms`
--

LOCK TABLES `lrwp_terms` WRITE;
/*!40000 ALTER TABLE `lrwp_terms` DISABLE KEYS */;
INSERT INTO `lrwp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Optima Express New','optima-express-new',0),(3,'Owner/Broker','owner-broker',0),(4,'Licensed Agent','licensed-agent',0),(5,'Footer Menu','footer-menu',0),(6,'REMOVE-ARCHIVE','remove-archive',0),(7,'Front Page','front-page',0),(8,'Primary','primary',0),(9,'Optima Express','optima-express',0),(10,'Kannapolis','kannapolis',0),(11,'Salisbury','salisbury',0),(12,'Harrisburg','harrisburg',0),(13,'Albemarle','albemarle',0),(14,'Mooresville','mooresville',0),(15,'section','section',0),(16,'Announcements','announcements',0),(17,'Kannapolis Office','kannapolis-office',0),(18,'Lantern Realty','lantern-realty',0),(19,'Undecided','undecided',0),(20,'google','google',0),(21,'default-calendar','default-calendar',0),(22,'Asheville','asheville',0),(23,'Lexington','lexington',0),(24,'houzez','houzez',0),(25,'Tennessee','tennessee',0),(26,'Raleigh','raleigh',0);
/*!40000 ALTER TABLE `lrwp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_um_metadata`
--

DROP TABLE IF EXISTS `lrwp_um_metadata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_um_metadata` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `um_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `um_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id_indx` (`user_id`),
  KEY `meta_key_indx` (`um_key`(250)),
  KEY `meta_value_indx` (`um_value`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_um_metadata`
--

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

--
-- Table structure for table `lrwp_user_registration_sessions`
--

DROP TABLE IF EXISTS `lrwp_user_registration_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_user_registration_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_user_registration_sessions`
--

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

--
-- Table structure for table `lrwp_usermeta`
--

DROP TABLE IF EXISTS `lrwp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=344 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_usermeta`
--

LOCK TABLES `lrwp_usermeta` WRITE;
/*!40000 ALTER TABLE `lrwp_usermeta` DISABLE KEYS */;
INSERT INTO `lrwp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'lrwp_capabilities','a:5:{s:13:\"administrator\";b:1;s:14:\"erp_hr_manager\";b:1;s:15:\"erp_crm_manager\";b:1;s:14:\"erp_ac_manager\";b:1;s:8:\"pm_admin\";b:1;}'),(13,1,'lrwp_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy,plugin_editor_notice,theme_editor_notice,vc_pointers_backend_editor,vc_pointers_frontend_editor,addtoany_settings_pointer,tp09_edit_drag_drop_sort'),(15,1,'show_welcome_panel','0'),(33,1,'closedpostboxes_dashboard','a:3:{i:0;s:20:\"e-dashboard-overview\";i:1;s:19:\"dashboard_right_now\";i:2;s:18:\"dashboard_activity\";}'),(211,2,'fave_author_title',''),(34,1,'metaboxhidden_dashboard','a:2:{i:0;s:19:\"dashboard_right_now\";i:1;s:17:\"dashboard_primary\";}'),(17,1,'lrwp_user-settings','libraryContent=browse&edit_element_vcUIPanelWidth=983&edit_element_vcUIPanelLeft=453px&edit_element_vcUIPanelTop=50px&editor=tinymce&uploader=1&urlbutton=file&hidetb=1&advImgDetails=show'),(18,1,'lrwp_user-settings-time','1649948035'),(19,1,'lrwp_dashboard_quick_press_last_post_id','2704'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"75.117.240.0\";}'),(21,1,'meta-box-order_vc_grid_item','a:7:{s:8:\"form_top\";s:0:\"\";s:16:\"before_permalink\";s:0:\"\";s:11:\"after_title\";s:0:\"\";s:12:\"after_editor\";s:0:\"\";s:4:\"side\";s:9:\"submitdiv\";s:6:\"normal\";s:49:\"wpb_visual_composer,slugdiv,mymetabox_revslider_0\";s:8:\"advanced\";s:0:\"\";}'),(22,1,'screen_layout_vc_grid_item','2'),(37,1,'lrwp_r_tru_u_x','a:2:{s:2:\"id\";i:0;s:7:\"expires\";i:1549742588;}'),(36,1,'metaboxhidden_houzez_agent','a:0:{}'),(66,1,'tgmpa_dismissed_notice_houzez','1'),(23,1,'nav_menu_recently_edited','2'),(24,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(25,1,'metaboxhidden_nav-menus','a:19:{i:0;s:22:\"add-post-type-property\";i:1;s:27:\"add-post-type-houzez_agency\";i:2;s:26:\"add-post-type-houzez_agent\";i:3;s:33:\"add-post-type-houzez_testimonials\";i:4;s:28:\"add-post-type-houzez_partner\";i:5;s:28:\"add-post-type-houzez_invoice\";i:6;s:29:\"add-post-type-houzez_packages\";i:7;s:27:\"add-post-type-user_packages\";i:8;s:12:\"add-post_tag\";i:9;s:15:\"add-post_format\";i:10;s:17:\"add-property_type\";i:11;s:19:\"add-property_status\";i:12;s:20:\"add-property_feature\";i:13;s:18:\"add-property_label\";i:14;s:17:\"add-property_city\";i:15;s:17:\"add-property_area\";i:16;s:18:\"add-property_state\";i:17;s:18:\"add-agent_category\";i:18;s:14:\"add-agent_city\";}'),(26,1,'closedpostboxes_page','a:7:{i:0;s:22:\"fave_page_content_area\";i:1;s:22:\"fave_agencies_template\";i:2;s:8:\"passster\";i:3;s:20:\"fave_advanced_search\";i:4;s:21:\"houzez-page-metaboxes\";i:5;s:25:\"slider_revolution_metabox\";i:6;s:15:\"passster_global\";}'),(27,1,'metaboxhidden_page','a:4:{i:0;s:19:\"wpb_visual_composer\";i:1;s:21:\"fave_listing_template\";i:2;s:20:\"fave_agents_template\";i:3;s:30:\"fave_default_template_settings\";}'),(29,1,'jetpack_tracks_wpcom_id','143797581'),(249,1,'lrwp_googlesitekit_transient_timeout_googlesitekit_user_input_settings','1607392823'),(248,1,'lrwp_googlesitekit_user_input_state','missing'),(32,1,'show_try_gutenberg_panel','0'),(35,1,'closedpostboxes_houzez_agent','a:1:{i:0;s:14:\"tsf-inpost-box\";}'),(38,1,'autodescription-user-settings','a:1:{s:12:\"counter_type\";i:0;}'),(67,1,'pm_capability','pm_admin'),(68,2,'pm_capability','pm_manager'),(166,6,'syntax_highlighting','true'),(165,6,'rich_editing','true'),(164,6,'description',''),(40,2,'nickname','ckeziah@elon.edu'),(41,2,'first_name',''),(42,2,'last_name',''),(43,2,'description',''),(44,2,'rich_editing','true'),(45,2,'syntax_highlighting','true'),(46,2,'comment_shortcuts','false'),(47,2,'admin_color','fresh'),(48,2,'use_ssl','0'),(49,2,'show_admin_bar_front','true'),(50,2,'locale',''),(51,2,'lrwp_capabilities','a:2:{s:10:\"pm_manager\";b:1;s:5:\"owner\";b:1;}'),(52,2,'lrwp_user_level','2'),(53,2,'dismissed_wp_pointers',''),(54,2,'ur_form_id','648'),(55,2,'ur_user_status','0'),(56,1,'ur_first_access','1'),(57,1,'account_status','approved'),(58,1,'um_member_directory_data','a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}'),(59,2,'account_status','approved'),(60,2,'um_member_directory_data','a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}'),(61,1,'lrwp_wpse_sheet_sessions','a:1:{s:12:\"houzez_agent\";a:0:{}}'),(252,1,'session_tokens','a:1:{s:64:\"1ab611721ea096f04b097d255baf9b8d747d3afb878919d26237a777381d4188\";a:4:{s:10:\"expiration\";i:1656201486;s:2:\"ip\";s:14:\"75.117.240.244\";s:2:\"ua\";s:133:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36 Edg/102.0.1245.39\";s:5:\"login\";i:1656028686;}}'),(64,1,'edit_houzez_agent_per_page','100'),(65,1,'elementor_introduction','a:2:{s:10:\"rightClick\";b:1;s:19:\"colorPickerDropping\";b:1;}'),(163,6,'last_name','Puckett'),(162,6,'first_name','Chris'),(63,1,'manageedit-houzez_agentcolumnshidden','a:2:{i:0;s:16:\"tsf-seo-bar-wrap\";i:1;s:14:\"tsf-quick-edit\";}'),(161,6,'nickname','ch2realty@gmail.com'),(241,2,'lrwp_dashboard_quick_press_last_post_id','1362'),(250,1,'lrwp_googlesitekit_transient_googlesitekit_user_input_settings','a:2:{s:4:\"role\";a:3:{s:6:\"values\";a:0:{}s:5:\"scope\";s:4:\"user\";s:10:\"answeredBy\";i:0;}s:13:\"postFrequency\";a:3:{s:6:\"values\";a:0:{}s:5:\"scope\";s:4:\"user\";s:10:\"answeredBy\";i:0;}}'),(155,1,'lrwp_googlesitekit_refresh_token','dRDlxUM3QGlN11gK9+lkJVdTNS80TERha056QXYwNC9lVnAwdUgwdVNvOGZHVFh3eVArUVUweDhjcy9aK1BjTzMxL1BYMmllK1VPOU5wYTJrRGNXWHFiRmlLdGczVHNnMlN3WXg5QzREK0JlODd5ZkNpWEpENmV0MTFWOVdISkRoTjVQdmg3K0NlQkxRbHJ2NFBHa0JTT3U1aWdzZE1vem5wT3M5UEUxM2lQdksvNDlEajNPM1U2WGJSdmt6RFFqMFg3Q3NkVTZhRldsM0owZTliYU5wRjhFdE9IT2lNYnVtYzRPRGFRdjR4RDNyR1lCcEErQnZJUldCQVJFWFQ2TURJb3dhLzZpeDFYc2tDZ0VMR3IrVHJWU3dVMXlwUm9tTUQ5T3lKUTAyakhoOUtRb0I1bUVJSlNUOTFHeFRxekxlWFZ5N0tZcS9CUFJyU0dP'),(154,1,'lrwp_googlesitekit_access_token','YFewE5Cw7Dqyhnyu58jNZjdjWTA3RWNpSzFlb1h2OFAyZC9TQkMxZ0laSlFJcXNEdEFkT05TcjErRVlNR1pndCs2V1daUlBtQ2F3eHJjWWlyd0dselpWckJEL2pPakZHTFovYldqSUtac01SMjJyVUJwZUlnaEhPbTZvTERlRHZWdE5QRWkwRmNnR3F1UHZId2VkZG9PZnh6dUpYYmFxOGo0dzhtRmJkcktjL0ErSXBIbnBicWNUeVNVS0x1N1hyUjhCNG1GMDdrdmR1OHJUaHFQT2JDWWZET0ZVbDA1TUlob0l6ZlY4a0VQdDlxekJtVVNNS1BoMlBmeDZhYUtjenhkK25rUWFEdmUrNkErRHdoR28rYVg1QkJZM0N2bWdvOGlHQWsxcXVuSTZOYTlwL3I1Q1pGWjNtZnI2SUhkV2Z0RlE9'),(159,1,'lrwp_googlesitekit_site_verified_meta','verified'),(152,1,'lrwp_googlesitekit_access_token_expires_in','3599'),(153,1,'lrwp_googlesitekit_access_token_created_at','1656028693'),(158,1,'lrwp_googlesitekit_profile','a:2:{s:5:\"email\";s:20:\"ckeziah127@gmail.com\";s:5:\"photo\";s:120:\"https://lh4.googleusercontent.com/-yvpi17plZkA/AAAAAAAAAAI/AAAAAAAAAAA/AMZuuckITb5XbC7u31F5J3bGknoEjHH5-Q/s100/photo.jpg\";}'),(157,1,'lrwp_googlesitekit_additional_auth_scopes','a:0:{}'),(205,1,'user_last_view_date','20201018030310'),(206,1,'user_last_view_date_events','20201018030310'),(156,1,'lrwp_googlesitekit_auth_scopes','a:6:{i:0;s:6:\"openid\";i:1;s:48:\"https://www.googleapis.com/auth/siteverification\";i:2;s:48:\"https://www.googleapis.com/auth/userinfo.profile\";i:3;s:42:\"https://www.googleapis.com/auth/webmasters\";i:4;s:50:\"https://www.googleapis.com/auth/analytics.readonly\";i:5;s:46:\"https://www.googleapis.com/auth/userinfo.email\";}'),(239,2,'autodescription-user-settings','a:2:{s:13:\"facebook_page\";s:0:\"\";s:12:\"twitter_page\";s:0:\"\";}'),(167,6,'comment_shortcuts','false'),(168,6,'admin_color','fresh'),(169,6,'use_ssl','0'),(170,6,'show_admin_bar_front','true'),(171,6,'locale',''),(172,6,'lrwp_capabilities','a:1:{s:6:\"author\";b:1;}'),(173,6,'lrwp_user_level','2'),(174,6,'dismissed_wp_pointers',''),(175,7,'nickname','deana327@gmail.com'),(176,7,'first_name','Deana'),(177,7,'last_name','Petty'),(178,7,'description',''),(179,7,'rich_editing','true'),(180,7,'syntax_highlighting','true'),(181,7,'comment_shortcuts','false'),(182,7,'admin_color','fresh'),(183,7,'use_ssl','0'),(184,7,'show_admin_bar_front','true'),(185,7,'locale',''),(186,7,'lrwp_capabilities','a:1:{s:6:\"author\";b:1;}'),(187,7,'lrwp_user_level','2'),(188,7,'dismissed_wp_pointers',''),(189,8,'nickname','paulasevert@yahoo.com'),(190,8,'first_name','Paula'),(191,8,'last_name','Severt'),(192,8,'description',''),(193,8,'rich_editing','true'),(194,8,'syntax_highlighting','true'),(195,8,'comment_shortcuts','false'),(196,8,'admin_color','fresh'),(197,8,'use_ssl','0'),(198,8,'show_admin_bar_front','true'),(199,8,'locale',''),(200,8,'lrwp_capabilities','a:1:{s:6:\"author\";b:1;}'),(201,8,'lrwp_user_level','2'),(202,8,'dismissed_wp_pointers',''),(203,1,'essential_adons_elementor_opt_in','1'),(204,1,'wpdeveloper_notices_seen','a:2:{s:24:\"wpdeveloper_notice_4_3_1\";a:1:{s:25:\"essential_adons_elementor\";a:1:{i:0;s:6:\"opt_in\";}}s:24:\"wpdeveloper_notice_4_3_7\";a:1:{s:25:\"essential_adons_elementor\";a:1:{i:0;s:6:\"review\";}}}'),(254,9,'nickname','ckeziah127@gmail.com'),(245,1,'meta-box-order_houzez_agent','a:3:{s:6:\"normal\";s:41:\"agent-information,tsf-inpost-box,agencies\";s:4:\"side\";s:0:\"\";s:8:\"advanced\";s:0:\"\";}'),(207,1,'lrwp_tablepress_user_options','{\"user_options_db_version\":43,\"admin_menu_parent_page\":\"middle\",\"message_first_visit\":true}'),(208,1,'managetablepress_listcolumnshidden','a:1:{i:0;s:22:\"table_last_modified_by\";}'),(209,1,'meta-box-order_page','a:3:{s:6:\"normal\";s:192:\"wpb_visual_composer,fave_page_content_area,fave_listing_template,fave_agencies_template,fave_agents_template,fave_page_settings,fave_default_template_settings,fave_menu_settings,tsf-inpost-box\";s:4:\"side\";s:77:\"passster,fave_advanced_search,houzez-page-metaboxes,slider_revolution_metabox\";s:8:\"advanced\";s:0:\"\";}'),(210,1,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:81:\"e-dashboard-overview,dashboard_site_health,dashboard_right_now,dashboard_activity\";s:4:\"side\";s:41:\"dashboard_primary,google_dashboard_widget\";s:7:\"column3\";s:21:\"dashboard_quick_press\";s:7:\"column4\";s:0:\"\";}'),(212,2,'fave_author_agent_id',''),(213,2,'fave_author_tax_no',''),(214,2,'fave_author_license',''),(215,2,'fave_author_agency_id',''),(216,2,'fave_author_language',''),(217,2,'fave_author_company',''),(218,2,'fave_author_phone',''),(219,2,'fave_author_fax',''),(220,2,'fave_author_mobile',''),(221,2,'fave_author_whatsapp',''),(222,2,'fave_author_skype',''),(223,2,'fave_author_currency',''),(224,2,'fave_author_custom_picture',''),(225,2,'package_id',''),(226,2,'package_activation',''),(227,2,'package_listings',''),(228,2,'package_featured_listings',''),(229,2,'fave_paypal_profile',''),(230,2,'fave_stripe_user_profile',''),(231,2,'fave_author_facebook',''),(232,2,'fave_author_linkedin',''),(233,2,'fave_author_twitter',''),(234,2,'fave_author_pinterest',''),(235,2,'fave_author_instagram',''),(236,2,'fave_author_youtube',''),(237,2,'fave_author_vimeo',''),(238,2,'fave_author_googleplus',''),(242,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"161.69.123.0\";}'),(243,2,'managetablepress_listcolumnshidden','a:1:{i:0;s:22:\"table_last_modified_by\";}'),(251,1,'essential_adons_elementor_review','1'),(253,1,'lrwp_googlesitekitpersistent_initial_version','1.26.0'),(256,9,'last_name','Jackling'),(255,9,'first_name','Melissa'),(257,9,'description',''),(258,9,'rich_editing','true'),(259,9,'syntax_highlighting','true'),(260,9,'comment_shortcuts','false'),(261,9,'admin_color','fresh'),(262,9,'use_ssl','0'),(263,9,'show_admin_bar_front','true'),(264,9,'locale',''),(265,9,'lrwp_capabilities','a:1:{s:6:\"author\";b:1;}'),(266,9,'lrwp_user_level','2'),(267,9,'dismissed_wp_pointers',''),(268,1,'lrwp_googlesitekitpersistent_dismissed_tours','a:2:{i:0;s:14:\"helpVisibility\";i:1;s:16:\"unifiedDashboard\";}'),(269,1,'lrwp_googlesitekitpersistent_dismissed_tours','a:2:{i:0;s:14:\"helpVisibility\";i:1;s:16:\"unifiedDashboard\";}'),(270,1,'closedpostboxes_','a:0:{}'),(271,1,'metaboxhidden_','a:0:{}'),(272,10,'nickname','quote'),(273,10,'first_name','Quote'),(274,10,'last_name','Quote'),(275,10,'description',''),(276,10,'rich_editing','true'),(277,10,'syntax_highlighting','true'),(278,10,'comment_shortcuts','false'),(279,10,'admin_color','fresh'),(280,10,'use_ssl','0'),(281,10,'show_admin_bar_front','true'),(282,10,'locale',''),(283,10,'lrwp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(284,10,'lrwp_user_level','10'),(285,10,'dismissed_wp_pointers',''),(286,10,'fave_author_title',''),(287,10,'fave_author_agent_id',''),(288,10,'fave_author_tax_no',''),(289,10,'fave_author_license',''),(290,10,'fave_author_agency_id',''),(291,10,'fave_author_language',''),(292,10,'fave_author_company',''),(293,10,'fave_author_phone',''),(294,10,'fave_author_fax',''),(295,10,'fave_author_mobile',''),(296,10,'fave_author_whatsapp',''),(297,10,'fave_author_skype',''),(298,10,'fave_author_currency',''),(299,10,'fave_author_custom_picture',''),(300,10,'package_id',''),(301,10,'package_activation',''),(302,10,'package_listings',''),(303,10,'package_featured_listings',''),(304,10,'fave_paypal_profile',''),(305,10,'fave_stripe_user_profile',''),(306,10,'fave_author_facebook',''),(307,10,'fave_author_linkedin',''),(308,10,'fave_author_twitter',''),(309,10,'fave_author_pinterest',''),(310,10,'fave_author_instagram',''),(311,10,'fave_author_youtube',''),(312,10,'fave_author_vimeo',''),(313,10,'fave_author_googleplus',''),(314,10,'autodescription-user-settings','a:3:{s:12:\"counter_type\";i:3;s:13:\"facebook_page\";s:0:\"\";s:12:\"twitter_page\";s:0:\"\";}'),(315,10,'session_tokens','a:2:{s:64:\"8964b2f5747bf596bf999c3d28e0ec4412006400f98937773913f01fe788e74f\";a:4:{s:10:\"expiration\";i:1650127169;s:2:\"ip\";s:12:\"45.22.216.84\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36\";s:5:\"login\";i:1649954369;}s:64:\"1b3a793325ef48be9ad7b967179f2c6099c483145281204cf1d5b7ecaebefec4\";a:4:{s:10:\"expiration\";i:1651243566;s:2:\"ip\";s:13:\"98.17.233.122\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36\";s:5:\"login\";i:1650033966;}}'),(316,10,'lrwp_dashboard_quick_press_last_post_id','2359'),(317,10,'community-events-location','a:1:{s:2:\"ip\";s:11:\"98.17.233.0\";}'),(318,10,'extendifysdk_uuid','6c84e1e960dfe39ecc7efe9b483329de'),(319,11,'nickname','rcpilotchristian'),(320,11,'first_name','David'),(321,11,'last_name','Christian'),(322,11,'description',''),(323,11,'rich_editing','true'),(324,11,'syntax_highlighting','true'),(325,11,'comment_shortcuts','false'),(326,11,'admin_color','fresh'),(327,11,'use_ssl','0'),(328,11,'show_admin_bar_front','true'),(329,11,'locale',''),(330,11,'lrwp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(331,11,'lrwp_user_level','10'),(332,11,'dismissed_wp_pointers',''),(333,10,'extendifysdk_user_data','{\"state\":{\"firstLoadedOn\":\"2022-04-15T15:21:25.267Z\",\"email\":\"\",\"apiKey\":\"\",\"uuid\":\"6c84e1e960dfe39ecc7efe9b483329de\",\"sdkPartner\":\"Redux\",\"noticesDismissedAt\":{},\"modalNoticesDismissedAt\":{},\"imports\":0,\"runningImports\":0,\"allowedImports\":0,\"freebieImports\":0,\"entryPoint\":\"not-set\",\"enabled\":true,\"canInstallPlugins\":true,\"canActivatePlugins\":true,\"preferredOptions\":{\"taxonomies\":{},\"type\":\"\",\"search\":\"\"},\"preferredOptionsHistory\":{\"siteType\":[]},\"isAdmin\":true},\"version\":0}'),(334,11,'session_tokens','a:1:{s:64:\"5f6c8466cdd875a9605f1d16d8e8c147fa38984fbdcadbb91fa282f1f0d90ad4\";a:4:{s:10:\"expiration\";i:1651076231;s:2:\"ip\";s:13:\"98.17.233.122\";s:2:\"ua\";s:116:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36\";s:5:\"login\";i:1650903431;}}'),(335,11,'lrwp_dashboard_quick_press_last_post_id','2417'),(336,11,'community-events-location','a:1:{s:2:\"ip\";s:11:\"98.17.233.0\";}'),(339,11,'extendifysdk_uuid','c4ceb50a86b5a64f20be67805355c493'),(340,11,'extendifysdk_user_data','{\"state\":{\"firstLoadedOn\":\"2022-04-20T19:01:05.900Z\",\"email\":\"\",\"apiKey\":\"\",\"uuid\":\"c4ceb50a86b5a64f20be67805355c493\",\"sdkPartner\":\"Redux\",\"noticesDismissedAt\":[],\"modalNoticesDismissedAt\":[],\"imports\":0,\"runningImports\":0,\"allowedImports\":0,\"freebieImports\":0,\"entryPoint\":\"not-set\",\"enabled\":true,\"canInstallPlugins\":true,\"canActivatePlugins\":true,\"preferredOptions\":{\"taxonomies\":[],\"type\":\"\",\"search\":\"\"},\"preferredOptionsHistory\":{\"siteType\":[]},\"isAdmin\":true},\"version\":0}'),(337,1,'extendifysdk_uuid','0ddc4fdc971dbe0f2803902158a2233c'),(338,1,'extendifysdk_user_data','{\"state\":{\"firstLoadedOn\":\"2022-05-26T01:35:50.563Z\",\"email\":\"\",\"apiKey\":\"\",\"uuid\":\"0ddc4fdc971dbe0f2803902158a2233c\",\"sdkPartner\":\"Redux\",\"noticesDismissedAt\":[],\"modalNoticesDismissedAt\":[],\"imports\":0,\"runningImports\":0,\"allowedImports\":0,\"freebieImports\":0,\"entryPoint\":\"not-set\",\"enabled\":true,\"canInstallPlugins\":true,\"canActivatePlugins\":true,\"participatingTestsGroups\":{\"main-button-text2\":\"B\"},\"preferredOptions\":{\"taxonomies\":[],\"type\":\"\",\"search\":\"\"},\"isAdmin\":true},\"version\":0}'),(341,11,'lrwp_user-settings','editor=tinymce&edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=960px&edit_element_vcUIPanelTop=74px'),(342,11,'lrwp_user-settings-time','1650904330'),(343,11,'managetablepress_listcolumnshidden','a:1:{i:0;s:22:\"table_last_modified_by\";}');
/*!40000 ALTER TABLE `lrwp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_users`
--

DROP TABLE IF EXISTS `lrwp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_users`
--

LOCK TABLES `lrwp_users` WRITE;
/*!40000 ALTER TABLE `lrwp_users` DISABLE KEYS */;
INSERT INTO `lrwp_users` VALUES (1,'admin','$P$BTCQX/NvDFrHwrT7kO3c.Fvk3bWFG..','admin','ckeziah127@gmail.com','','2018-08-20 00:26:23','',0,'admin'),(2,'ckeziah@elon.edu','$P$B7uw18p8GG0ieoFyY0CS86qC/4hGvS/','ckeziahelon-edu','ckeziah@elon.edu','','2020-05-01 13:50:57','',0,'ckeziah@elon.edu'),(7,'deana327@gmail.com','$P$B0dDWJoji//5VIPy6WBCOQ74/SB95X/','deana327gmail-com','deana327@gmail.com','','2020-10-16 00:48:00','',0,'Deana Petty'),(6,'ch2realty@gmail.com','$P$BnwDzrcLJ0.G7AtIQQgCQwRP.G6bNE1','ch2realtygmail-com','ch2realty@gmail.com','','2020-10-16 00:47:34','',0,'Chris Puckett'),(8,'paulasevert@yahoo.com','$P$B2kbcV4ZKhIj1zlPfeXwTsGiktkmy91','paulasevertyahoo-com','paulasevert@yahoo.com','','2020-10-16 00:48:23','',0,'Paula Severt'),(9,'ckeziah127@gmail.com','$P$BTvI4BqzP.3787.m1YOeg/M5nzt5ib0','ckeziah127gmail-com','onlymyrealtormelissa@gmail.com','','2021-04-14 00:09:25','',0,'Melissa Jackling'),(10,'quote','$P$Bwxx1WFjDbr0AoyA//lFDh90LdQ2l2/','quote','quote@lantern-realty.com','','2022-04-14 14:29:31','',0,'Quote Quote'),(11,'rcpilotchristian','$P$BYlC.Geai3gzjNjoz4MsBMyyY.SDHw/','rcpilotchristian','david@ktowndesign.com','https://ktowndesign.com','2022-04-15 15:00:46','1650034846:$P$BnFK1XDQtH1GKx119zrtJZ7JDqKh0G/',0,'David Christian');
/*!40000 ALTER TABLE `lrwp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_weforms_entries`
--

DROP TABLE IF EXISTS `lrwp_weforms_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_weforms_entries` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` int(11) unsigned DEFAULT NULL,
  `user_device` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `referer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'publish',
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=140 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_weforms_entries`
--

LOCK TABLES `lrwp_weforms_entries` WRITE;
/*!40000 ALTER TABLE `lrwp_weforms_entries` DISABLE KEYS */;
INSERT INTO `lrwp_weforms_entries` VALUES (1,936,0,2890417747,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','trash','2020-10-12 14:13:19'),(2,936,0,2890417747,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','trash','2020-10-12 14:33:50'),(3,972,0,2890417747,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','trash','2020-10-12 14:34:54'),(4,936,1,2890417747,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','trash','2020-10-12 14:51:53'),(5,936,0,680432811,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2020-10-12 15:07:58'),(6,972,1,2890417747,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','trash','2020-10-12 15:19:38'),(7,936,0,680433606,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','trash','2020-10-15 22:25:37'),(8,972,0,1264142298,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2020-10-16 13:04:30'),(9,972,0,1264142298,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2020-10-16 13:21:15'),(10,972,0,1193169113,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2020-10-16 13:27:05'),(11,936,0,1195900021,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2020-10-16 14:07:05'),(12,972,0,2931951980,'Google Chrome/Linux','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2020-10-17 13:07:39'),(13,936,0,2890459442,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2020-10-18 19:13:29'),(14,972,0,1800268009,'Google Chrome/Unknown','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2020-10-20 14:10:46'),(15,936,0,1166297716,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2020-10-22 20:13:18'),(16,936,0,2335651291,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2020-10-23 00:55:43'),(17,936,0,2335651291,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2020-10-23 01:26:19'),(18,972,0,2251834646,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2020-11-10 22:11:10'),(19,972,0,1160299899,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2020-11-14 18:07:36'),(20,936,0,1160299899,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2020-11-14 19:05:49'),(21,972,0,680433606,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2020-11-24 18:35:12'),(22,972,0,2251839991,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2020-12-11 01:10:18'),(23,936,0,1102596311,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2020-12-11 21:17:00'),(24,972,0,1133368075,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2020-12-14 16:02:55'),(25,936,0,408433205,'Internet Explorer/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2020-12-14 19:58:24'),(26,936,0,2890421155,'Internet Explorer/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-01-06 21:21:10'),(27,936,0,2335691946,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-01-18 22:33:59'),(28,936,0,2251839991,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-01-19 18:58:03'),(29,972,0,1269995395,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-01-25 18:40:04'),(30,972,0,2890423419,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-01-25 18:45:36'),(31,936,0,1269995395,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-01-28 15:29:38'),(32,936,0,1645261448,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-01-29 16:49:54'),(33,936,0,680431083,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-01-29 18:50:03'),(34,936,0,1102594056,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-01-29 19:37:13'),(35,936,0,2908500779,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-01-29 20:50:10'),(36,936,0,2732742119,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-01-29 23:29:27'),(37,972,0,2732742119,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-01-30 00:22:22'),(38,972,0,1195852498,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-02-06 16:50:08'),(39,936,0,1102595241,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-02-08 23:04:24'),(40,936,0,417364587,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-02-18 18:34:33'),(41,936,0,2890463102,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-02-23 07:48:02'),(42,936,0,1166298599,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-03-06 00:36:55'),(43,936,0,407549450,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-03-11 22:33:27'),(44,936,0,1270768303,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-03-13 02:02:43'),(45,936,0,1632821094,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-03-17 14:51:32'),(46,936,0,1632821094,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-03-17 15:45:23'),(47,936,0,1270179047,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-03-19 00:45:12'),(48,972,0,2251834646,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-03-21 14:38:51'),(49,972,0,2251834646,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-03-21 14:40:55'),(50,936,0,1632821094,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-03-29 15:05:57'),(51,936,0,414361834,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-04-02 14:16:01'),(52,972,0,1270768303,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-04-05 18:40:50'),(53,936,0,1632821094,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-04-10 15:52:24'),(54,936,0,407521153,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-04-15 00:17:10'),(55,972,0,414361834,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-04-17 01:27:18'),(56,936,0,1195853477,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-05-08 18:04:31'),(57,936,0,1195655804,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-05-31 17:42:24'),(58,972,0,3483047685,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-06-08 13:24:04'),(59,936,0,1109061738,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-06-08 14:02:51'),(60,936,0,2933555331,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-06-08 14:40:16'),(61,936,0,1160300376,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-06-09 15:37:25'),(62,936,0,2893861225,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-06-10 03:35:56'),(63,972,0,595958732,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-06-10 19:40:05'),(64,972,0,1804351597,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-06-23 17:29:16'),(65,936,0,2893861225,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-06-25 02:46:24'),(66,972,0,418820715,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-07-06 23:27:03'),(67,972,0,407548876,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-07-13 23:14:05'),(68,936,0,1632814196,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-07-14 18:06:19'),(69,936,0,2890417800,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-07-15 00:19:54'),(70,936,0,1269995395,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-07-21 15:24:26'),(71,936,0,1266020391,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-08-04 12:25:57'),(72,936,0,1613007457,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-08-10 18:04:21'),(73,972,0,797381695,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-08-13 12:39:27'),(74,936,0,1266020391,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-08-16 16:11:16'),(75,936,0,1613007457,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-08-16 18:27:49'),(76,972,0,1166292163,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-08-16 20:04:39'),(77,936,0,797381695,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-08-25 12:54:10'),(78,936,0,3483047685,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-08-30 18:32:50'),(79,936,0,418820189,'Mozilla Firefox/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-08-31 14:15:04'),(80,936,0,2889522567,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-09-01 13:44:44'),(81,972,0,3483047685,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-09-30 12:43:50'),(82,936,0,3091091187,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-09-30 20:44:21'),(83,972,0,1269994377,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-10-04 16:58:44'),(84,936,0,1270771538,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-10-13 19:35:40'),(85,972,0,414361834,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-10-13 19:37:34'),(86,972,0,414361834,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-10-13 20:13:01'),(87,936,0,2908543840,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-10-13 20:45:45'),(88,936,0,2890585924,'Unknown/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-10-19 00:33:50'),(89,936,0,407519649,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-11-01 12:41:40'),(90,972,0,1264140624,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-11-10 20:28:27'),(91,972,0,2251834646,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-11-18 18:17:07'),(92,936,0,1195900312,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-11-19 12:26:30'),(93,972,0,1195900312,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-11-19 13:00:39'),(94,972,0,3483047685,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2021-12-10 14:59:24'),(95,936,0,1166308498,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2021-12-26 20:21:13'),(96,936,0,2890481864,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2022-01-04 21:27:03'),(97,936,0,2933015007,'Google Chrome/Linux','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2022-01-05 21:17:56'),(98,936,0,1270754609,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2022-01-09 00:59:02'),(99,936,0,2908493118,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2022-01-11 18:44:31'),(100,972,0,2908500779,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-01-17 03:20:52'),(101,972,0,3483047685,'Mozilla Firefox/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-01-19 16:07:27'),(102,936,0,1826782953,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2022-01-25 14:17:09'),(103,972,0,1803497794,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-01-26 21:17:00'),(104,972,0,2908500779,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-01-27 03:01:44'),(105,936,0,1166308769,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2022-01-27 13:24:08'),(106,972,0,1264140624,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-01-28 20:56:06'),(107,936,0,757367959,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2022-01-31 20:39:27'),(108,972,0,1264140624,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-02-01 20:42:09'),(109,936,0,1270180189,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2022-02-03 22:07:36'),(110,972,0,1802874906,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-02-03 22:22:30'),(111,972,0,1802874906,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-02-03 22:25:52'),(112,972,0,407519291,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-02-04 01:48:10'),(113,972,0,1270754609,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-02-08 20:14:39'),(114,972,0,1632821094,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-02-10 12:55:22'),(115,972,0,1264140624,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-02-10 18:36:07'),(116,936,0,393244487,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2022-02-15 16:31:47'),(117,936,0,2926318030,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/new-agent-registration/','publish','2022-02-17 00:41:06'),(118,972,0,1196111083,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-02-22 16:47:24'),(119,972,0,1102596578,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-03-07 20:31:07'),(120,936,0,1817249072,'Google Chrome/Windows','https://lantern-realty.com/new-agent-registration/','publish','2022-03-11 07:50:25'),(121,972,0,3483047685,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-03-21 15:05:15'),(122,936,0,757367854,'Google Chrome/Windows','https://lantern-realty.com/new-agent-registration/','publish','2022-03-25 15:18:53'),(123,936,0,680432622,'Google Chrome/MAC OS','https://lantern-realty.com/new-agent-registration/','publish','2022-04-07 21:37:36'),(124,972,0,1264140624,'Google Chrome/Windows','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-04-26 22:23:36'),(125,936,0,1166298915,'Google Chrome/Windows','https://lantern-realty.com/new-agent-registration/','publish','2022-05-04 17:09:35'),(126,936,0,680102709,'Google Chrome/Windows','https://lantern-realty.com/new-agent-registration/','publish','2022-05-05 15:06:59'),(127,936,0,1166298915,'Google Chrome/Windows','https://lantern-realty.com/new-agent-registration/','publish','2022-05-05 22:30:28'),(128,972,0,1267260236,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-05-06 16:50:46'),(129,972,0,407548876,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-05-10 17:08:08'),(130,936,0,1195879714,'Google Chrome/MAC OS','https://lantern-realty.com/new-agent-registration/','publish','2022-05-15 17:09:05'),(131,936,0,1645683129,'Apple Safari/MAC OS','https://lantern-realty.com/new-agent-registration/','publish','2022-05-18 20:58:15'),(132,936,0,1645683129,'Apple Safari/MAC OS','https://lantern-realty.com/new-agent-registration/','publish','2022-05-18 21:23:23'),(133,936,0,1262106560,'Google Chrome/Windows','https://lantern-realty.com/new-agent-registration/','publish','2022-05-26 14:41:31'),(134,972,0,1267260236,'Google Chrome/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-06-03 14:50:43'),(135,936,0,1802977546,'Apple Safari/MAC OS','https://lantern-realty.com/new-agent-registration/','publish','2022-06-07 21:29:33'),(136,972,0,3483047685,'Google Chrome/Unknown','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-06-15 19:04:49'),(137,972,0,680432622,'Apple Safari/MAC OS','https://lantern-realty.com/the-lantern-team/team-portal/website-change-request/','publish','2022-06-22 16:20:31'),(138,936,0,1102595565,'Apple Safari/MAC OS','https://lantern-realty.com/new-agent-registration/','publish','2022-07-06 02:21:57'),(139,936,0,1119872371,'Apple Safari/MAC OS','https://lantern-realty.com/new-agent-registration/','publish','2022-07-07 03:53:04');
/*!40000 ALTER TABLE `lrwp_weforms_entries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_weforms_entrymeta`
--

DROP TABLE IF EXISTS `lrwp_weforms_entrymeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_weforms_entrymeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `weforms_entry_id` bigint(20) unsigned DEFAULT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(250)),
  KEY `entry_id` (`weforms_entry_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1167 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_weforms_entrymeta`
--

LOCK TABLES `lrwp_weforms_entrymeta` WRITE;
/*!40000 ALTER TABLE `lrwp_weforms_entrymeta` DISABLE KEYS */;
INSERT INTO `lrwp_weforms_entrymeta` VALUES (1,1,'format','Christopher| Davis| Keziah'),(2,1,'phone_number','7042249769'),(3,1,'email_address_6031894746','ckeziah127@gmail.com'),(4,1,'mls_id','123456'),(5,1,'nc_license__','654321'),(6,1,'birthday','12/07'),(7,1,'headshot_upload','a:1:{i:0;s:4:\"1052\";}'),(8,1,'home_office','Kannapolis'),(9,1,'website_bio','Here\'s my bio!'),(10,1,'comment','Additional comments for the team. Hi im very excited'),(11,2,'format','Christopher| Davis| Keziah'),(12,2,'phone_number','7042249769'),(13,2,'email_address_6031894746','ckeziah127@gmail.com'),(14,2,'mls_id','145748'),(15,2,'nc_license__','1514'),(16,2,'birthday','12/07'),(17,2,'headshot_upload','a:1:{i:0;s:4:\"1055\";}'),(18,2,'home_office','Kannapolis'),(19,2,'website_bio','bio section here'),(20,2,'comment','comments section here'),(21,3,'name','Chris'),(22,3,'email_address','ckeziah127@gmail.com'),(23,3,'phone_number','7042249769'),(24,3,'nature_of_request','Update Content'),(25,3,'describe_your_request','I think you should add a link to team outings'),(26,3,'image_upload_7340038198','a:0:{}'),(27,4,'format','Paula| G| Severt'),(28,4,'phone_number','56486168198'),(29,4,'email_address_6031894746','ckeziah127@gmail.com'),(30,4,'mls_id','12312312'),(31,4,'nc_license__','213213'),(32,4,'birthday','12/07'),(33,4,'headshot_upload','a:1:{i:0;s:4:\"1057\";}'),(34,4,'home_office','Kannapolis'),(35,4,'website_bio','bio area'),(36,4,'comment','comments section'),(37,5,'format','Jenna| A| Cook'),(38,5,'phone_number','7049605591'),(39,5,'email_address_6031894746','4jennacook@gmail.com'),(40,5,'mls_id','53960'),(41,5,'nc_license__','293117'),(42,5,'birthday','04/27/1997'),(43,5,'headshot_upload','a:1:{i:0;s:4:\"1060\";}'),(44,5,'home_office','Kannapolis'),(45,5,'website_bio','Born and raised in the small town of Mount Pleasant she is embedded with the qualities that it takes to be an exceptional agent: loyalty, honesty, and confidence. If Jenna isn’t working she is usually with her family and friends, including her 10 nieces and nephews who she adores. Her biggest pride is her baby Milo, he is a 100 pound Blue Tick Coon Hound who is a big ole lap dog. Jenna is a social media and technology devotee. She stays up to date with what is happening in the real estate world and combines that knowledge with her wits in social media. Make sure to follow Jenna for update knowledge of the market. How did Jenna Get Started In Her Dream Career? Jenna\'s love for real estate began at a very young age. Growing up she always had an eye for decor: rearranging or changing her room every few months, watching any and all real estate shows, and constantly looking up homes for sale online to see what was out there. After attending UNC Charlotte she decided that her heart was elsewhere and that is when she found herself in real estate school. Jenna is headstrong and this showed while in school: spending weekends and late nights in a book, shadowing agents, and becoming knowledgeable about her real estate endeavor she was about to embark on. At the young age of 19 Jenna began her real estate career and never looked back. What Makes Jenna The Right Agent For You? Her caring attributes shine bright through each transaction that she has: even organizing a moving team consisting of her local high school student council members to help an elderly client move. She is always looking for opportunities to give back: being a big sister, volunteering at local events, and giving back to the community through charities. Working with first time home buyers, second/third time home buyers, investors, and commercial clients she is well rounded in her knowledge. She makes sure she keeps her clients up to date throughout the entire transaction. Staying in constant communication is the key to success. For Jenna, it is not just another transaction. It’s finding the place where your child takes their first steps and where friends gather. It is finding not just a house but a home. If you are looking for an agent who cares for her clients, who builds relationships not just transactions then give Jenna a call.'),(46,5,'comment',''),(47,6,'name','Chris'),(48,6,'email_address','ckeziah127@gmail.com'),(49,6,'phone_number','7042249769'),(50,6,'nature_of_request','Update Content'),(51,6,'describe_your_request','update some stuff'),(52,6,'image_upload_7340038198','a:1:{i:0;s:4:\"1063\";}'),(53,7,'format','Test| A| Smith'),(54,7,'phone_number','12343524'),(55,7,'email_address_6031894746','ckeziah127@gmail.com'),(56,7,'mls_id','13214'),(57,7,'nc_license__','124123412'),(58,7,'birthday','10/01'),(59,7,'headshot_upload','a:1:{i:0;s:4:\"1080\";}'),(60,7,'home_office','Kannapolis'),(61,7,'website_bio','BIO AREA'),(62,7,'comment','COMMENTS AREA'),(63,8,'name','Lantern Realty and Development LLC Albemarle'),(64,8,'email_address','lrdalbemarle@gmail.com'),(65,8,'phone_number','980-318-4961'),(66,8,'nature_of_request','Update Content'),(67,8,'describe_your_request','Lantern Realty and Development LLC Albemarle is made of of local agents who have been in the Real Estate business for years. We are made up of the familiar faces you are used to seeing around town, but have joined together to open an innovative Real Estate company that has a unique mission to treat our customers better with great customer service and allowing each agent to take control of their business. We all look forward to growing our business here in Albemarle, serving the surrounding counties and beyond and showing our community that we are here for them and serve their needs.'),(68,8,'image_upload_7340038198','a:1:{i:0;s:4:\"1122\";}'),(69,9,'name','Mike Fullerton'),(70,9,'email_address','mikefullerton72@gmail.com'),(71,9,'phone_number','980-318-4961'),(72,9,'nature_of_request','Update Agent Profile'),(73,9,'describe_your_request','My name is Mike Fullerton, I have been selling Real Estate in the Stanly County and surrounding areas since 2016. My family moved to Albemarle North Carolina in 1986 and we have established deep roots in this welcoming community. I went into the United States Marine Corps after high school, then moved around for awhile before comin back home to Albemarle where I now call home again to raise my two wonderful daughters. I love my profession in Real Estate and take great pride in the service I provide my clients. In the end, if you decided to buy, sell or neither I am glad to have created a a friendship that will last forever.'),(74,9,'image_upload_7340038198','a:1:{i:0;s:4:\"1123\";}'),(75,10,'name','Sheila Allison'),(76,10,'email_address','sheila.allison10@gmail.com'),(77,10,'phone_number','828-712-7843'),(78,10,'nature_of_request','Update Agent Profile'),(79,10,'describe_your_request','As a Realtor, Sheila\'s first priority is to make her clients happy and build a long-term relationship. A focused listener, able advisor, and fierce, yet fair, advocate, Sheila is known for her intuition and diligence while employing encouragement and genuine concern as she creates a positive experience for both sides in any property transaction. Her business approach is direct and successful: she listens to her client\'s needs and matches them to the right property, then assures an honest and efficient transaction. Sheila has been an active member of her community for over 8 years now, and is so excited to be turning that community focus toward real estate. With a passion for real estate services in the area, Sheila is ready to help with your home buying and selling needs. As a proud member of the Lantern family, Sheila carries the values of hard work, integrity, and outstanding client service into everything she does. When Sheila isn’t making home ownership dreams come true for her clients, she enjoys spending time with family, camping, and participating in social events.'),(80,10,'image_upload_7340038198','a:0:{}'),(81,11,'format','Alan| | Aylesworth'),(82,11,'phone_number','(980) 330-8401'),(83,11,'email_address_6031894746','alan.aylesworth.lantern@gmail.com'),(84,11,'mls_id','69474'),(85,11,'nc_license__','308001'),(86,11,'birthday','08/05'),(87,11,'headshot_upload','a:1:{i:0;s:4:\"1124\";}'),(88,11,'home_office','Salisbury'),(89,11,'website_bio','Husband, Father &amp; Pop to 6 Grandkids. My belief system in business is simple Client first and I am here to serve. Down time I enjoy spending time with family and Golf.. My experience 2 years in Real Estate, 14 years in mortgage industry and over 35 years in sales helping families achieve their goals.'),(90,11,'comment',''),(91,12,'name','amanda cody'),(92,12,'email_address','amandaearnhardt@yahoo.com'),(93,12,'phone_number','9805811399'),(94,12,'nature_of_request','Update Agent Profile'),(95,12,'describe_your_request','Please add correct Facebook link @amandacodyrealestate'),(96,12,'image_upload_7340038198','a:0:{}'),(97,13,'format','Sherri| Wiles| Argabright'),(98,13,'phone_number','704-202-0806'),(99,13,'email_address_6031894746','sherriargabright@gmail.com'),(100,13,'mls_id','97879'),(101,13,'nc_license__','220340'),(102,13,'birthday','04/27'),(103,13,'headshot_upload','a:1:{i:0;s:4:\"1244\";}'),(104,13,'home_office','Kannapolis'),(105,13,'website_bio','Let me put my 20 years of experience in our local market (Cabarrus &amp; Rowan Counties) to work for you! Attentive to detail, being responsive in this competitive market, professional and knowledgeable, and treating others as I would like to be treated (the Golden Rule), are all character traits that you\'ll see in me if you allow me the privilege and opportunity to serve as your Real Estate Agent. As complex as a real estate transaction can be, I strive to make it as pleasant, hassle-free and as smooth a process as possible for my clients, both Buyers and Sellers. As a former school teacher, I enjoy making sure that my clients understand the details of all the moving parts of what can sometimes be a tricky endeavor to navigate! Let me guide you home!'),(106,13,'comment','Hi, Team I am thrilled to join Lantern Realty &amp; Development. I am fluent reading, writing and speaking Spanish, if you ever need to refer a Spanish-speaking client to me. My husband is a NC Licensed General Contractor if you or your clients are ever in need of GC professional services. I hope to do lots of cross-sales with all of you!'),(107,14,'name','Sarah Romesburh'),(108,14,'email_address','LanternRealtyMooresville@gmail.com'),(109,14,'phone_number','(704) 980-9379'),(110,14,'nature_of_request','Update Content'),(111,14,'describe_your_request','Good Morning, I have set up an email and phone number for the Mooresville office. Can you update that info on the office link for the website? The new email is: LanternRealtyMooresville@gmail.com The new phone number is: (704) 980-9379 I have also uploaded an image to be used for the image for that office. Thanks so much! :-) Sarah Romesburg'),(112,14,'image_upload_7340038198','a:0:{}'),(113,15,'format','Liz| | Hallman'),(114,15,'phone_number','9806219575'),(115,15,'email_address_6031894746','lizphallman@gmail.com'),(116,15,'mls_id','35806'),(117,15,'nc_license__','281082'),(118,15,'birthday','12/02'),(119,15,'headshot_upload','a:1:{i:0;s:4:\"1364\";}'),(120,15,'home_office','Kannapolis'),(121,15,'website_bio','The Charlotte Observer named Liz Hallman as one of Charlotte area’s rising stars in real estate in 2015. She was also named \"Rookie of the Year\" in 2017 by Central Carolina Association of Realtors. Liz has been an active NC real estate broker since 2014. Liz currently resides with her husband, son, Great Dane &amp; English Bulldog in the small town of Mt. Pleasant NC. Since she could remember, Liz has always wanted to work in real estate. After graduating from Mt. Pleasant High School in 2009, the economy had recently crashed so she decided to put her dreams of a real estate career on hold and started taking college courses for the medical field. Realizing this was not the path she wanted to pursue, she took a leap of faith and decided to get her real estate license like she had originally planned. Coming from a strong customer service background, this has helped Liz develop excellent listening skills and patience to better service her clients. Liz became a new homeowner herself in 2016 and has built a strong client base by helping many of her former classmates purchase their first homes, so she understands the hurdles for first time home buyers. Having lived in the area her entire life, Liz can tell you nearly anything you need to know about the area, and if she doesn’t have the answer for you--you can bet she will find it out! She has helped many clients relocate to our area. Whether it’s your first or last home buying experience, you can count on Liz!'),(122,15,'comment',''),(123,16,'format','Amanda| | Lambert'),(124,16,'phone_number','7044000641'),(125,16,'email_address_6031894746','teamlambert.sellsnc@gmail.com'),(126,16,'mls_id','65579'),(127,16,'nc_license__','25766'),(128,16,'birthday','09/29'),(129,16,'headshot_upload','a:1:{i:0;s:4:\"1367\";}'),(130,16,'home_office','Harrisburg'),(131,16,'website_bio','Amanda Lambert is a native of Cabarrus County and currently resides in Mt Pleasant, NC with her husband, Jerry, daughters, Mabry and Quinlee and their dogs, Stella and Riggins. Amanda is a graduate of Central Cabarrus High School and The Art Institute of Charlotte with a degree in Interior Design. Amanda’s love and passion for construction and design started at an early age as she would attend construction job site and client meetings with her father who was a general contractor and land developer here in Cabarrus County. Once Amanda obtained her interior design degree she worked for both large &amp; small architecture firms in the Piedmont Region. Life was full as she also continued to help her father with custom design projects for homes he was building. Amanda knew that a career move into real estate was the perfect fit. Amanda’s knowledge of construction, design, architecture, and the community will make any real estate transaction exceed your expectations.'),(132,16,'comment',''),(133,17,'format','Jerry| | Lambert'),(134,17,'phone_number','704-791-0429'),(135,17,'email_address_6031894746','jerry.teamlambert@gmail.com'),(136,17,'mls_id','81412'),(137,17,'nc_license__','321038'),(138,17,'birthday','10/19'),(139,17,'headshot_upload','a:1:{i:0;s:4:\"1368\";}'),(140,17,'home_office','Harrisburg'),(141,17,'website_bio','Jerry Lambert is a native of Cabarrus County and currently resides in Mt Pleasant with his wife, Amanda, daughters, Mabry and Quinlee and their dogs, Stella and Riggins. Jerry is a graduate of Mt Pleasant High School. After spending 20 years in the racing world, building race cars, Jerry decided to join his wife as a licensed realtor. Together Jerry &amp; Amanda forms The Lambert Team.'),(142,17,'comment',''),(143,18,'name','Christopher Puckett'),(144,18,'email_address','ch2realty@gmail.com'),(145,18,'phone_number','7042985872'),(146,18,'nature_of_request','Add/Remove Agent'),(147,18,'describe_your_request','please remove Ashley Hines, Jessie Henderson, Shelley Arledge, MaClay Miller from our agent site.'),(148,18,'image_upload_7340038198','a:0:{}'),(149,19,'name','Courtney Sloan Holshouser'),(150,19,'email_address','csloansellshomes@gmail.com'),(151,19,'phone_number','7047547104'),(152,19,'nature_of_request','Update Content'),(153,19,'describe_your_request','Hi! I was hoping someone could update the website to include me. I didn\'t see me listed as an agent in the Salisbury office. Let me know what information you need from me, if any. Thank You Cheers, Courtney'),(154,19,'image_upload_7340038198','a:1:{i:0;s:4:\"1433\";}'),(155,20,'format','Courtney| | Sloan Holshouser'),(156,20,'phone_number','7047547104'),(157,20,'email_address_6031894746','csloansellshomes@gmail.com'),(158,20,'mls_id','314926'),(159,20,'nc_license__','314926'),(160,20,'birthday','12/12'),(161,20,'headshot_upload','a:1:{i:0;s:4:\"1434\";}'),(162,20,'home_office','Salisbury'),(163,20,'website_bio','Courtney loves helping others reach their goals! She has experience working residential sales, land sales, and investment properties in Rowan, Davidson, Forsyth and surrounding counties. In her spare time she enjoys singing at local events and being involved in community support. Courtney has a bachelor\'s degree in Psychology from the University of North Carolina at Charlotte and has lived in Rowan county for 20 years. She is also the proud mother of three fabulous and creative boys.'),(164,20,'comment',''),(165,21,'name','Christopher Puckett'),(166,21,'email_address','ch2realty@gmail.com'),(167,21,'phone_number','7042985872'),(168,21,'nature_of_request','Update Content'),(169,21,'describe_your_request','Hey Chris, please update our site and show GEICO on our front page. If its a space issue, replace Knipp Law with GEICO. I have attached a logo for GEICO as well.'),(170,21,'image_upload_7340038198','a:1:{i:0;s:4:\"1442\";}'),(171,22,'name','Paige Wiser'),(172,22,'email_address','paigewiserrealtor@gmail.com'),(173,22,'phone_number','704-904-1903'),(174,22,'nature_of_request','Add/Remove Agent'),(175,22,'describe_your_request','Adding a photo!'),(176,22,'image_upload_7340038198','a:0:{}'),(177,23,'format','Taylor| David| McCLure'),(178,23,'phone_number','9802530223'),(179,23,'email_address_6031894746','taylormcclure23@GMAIL.COM'),(180,23,'mls_id','82269'),(181,23,'nc_license','321999'),(182,23,'birthday','07/23'),(183,23,'headshot_upload','a:1:{i:0;s:4:\"1462\";}'),(184,23,'home_office','Kannapolis'),(185,23,'website_bio',''),(186,23,'comment',''),(187,24,'name','Taylor McClure'),(188,24,'email_address','taylormcclure23@gmail.com'),(189,24,'phone_number','9802530223'),(190,24,'nature_of_request','Update Agent Profile'),(191,24,'describe_your_request','My real estate career started with a fire. Three months into our new marriage, my wife and I woke up to our neighbor’s condo unit on fire. We then watched as our own condo burned down. As it became clear that our insurance would not rescue us from a lengthy rebuild, we met a real estate investor. He bought our condo from us and enabled us to buy a small house in Kannapolis. This turn of events led me to pursue a career in real estate with a desire to help as many young couples as I could. My family has since grown and our little house is a full and happy home. As of right now we are a family with a newborn baby, one dog, one cat, a bearded dragon lizard, and two snakes. I look forward to hearing your story and helping your family thrive in the perfect house you can call home.'),(192,24,'image_upload_7340038198','a:0:{}'),(193,25,'format','Maranda| | Allen'),(194,25,'phone_number','704-819-7111'),(195,25,'email_address_6031894746','Mandee704@hotmail.com'),(196,25,'mls_id','71114'),(197,25,'nc_license','308723'),(198,25,'birthday','05/10/1979'),(199,25,'headshot_upload','a:1:{i:0;s:4:\"1465\";}'),(200,25,'home_office','Harrisburg'),(201,25,'website_bio','Maranda brings experience as both a Realtor and insurance agent to assist her clients with all their real estate and insurance needs. Maranda will be a strong advocate for you rather you are looking to buy, rent or sell your home and due to her many connections in the industry is a good point of contact for all your home needs. She is currently a resident of Harrisburg, NC but has lived in many different areas including NY, FL, TX and NC. When not assisting clients she enjoys traveling and spending time with family and friends.'),(202,25,'comment',''),(203,26,'format','Renee| | Chambers'),(204,26,'phone_number','(704) 925-7938'),(205,26,'email_address_6031894746','NC.Realtor.Renee@gmail.com'),(206,26,'mls_id','82316'),(207,26,'nc_license','316110'),(208,26,'birthday','02/28'),(209,26,'headshot_upload','a:1:{i:0;s:4:\"1483\";}'),(210,26,'home_office','Kannapolis'),(211,26,'website_bio','I am a proud mother of three beautiful girls. Kannapolis native and A.L. Brown graduate! I am very ethical and hard working! I am very dedicated to helping with any of your real estate needs, and I will always have my clients best interest at heart! I would love to guide you home!'),(212,26,'comment','Can my information also be added to the lantern directory? Thanks!'),(213,27,'format','Brenda| Sue| Bingham'),(214,27,'phone_number','704-787-2539'),(215,27,'email_address_6031894746','brenda@bingham.cc'),(216,27,'mls_id','65004'),(217,27,'nc_license','302334'),(218,27,'birthday','07/25'),(219,27,'headshot_upload','a:1:{i:0;s:4:\"1499\";}'),(220,27,'home_office','Albemarle'),(221,27,'website_bio','My name is Brenda Bingham and I have lived in the Concord area since 2007. I was born and raised in Wyoming, and after moving around the country my family and I have decided that the NC climate is the one for us. I have been a realtor since my children graduated high school, having been a stay-at-home mom for years. I discovered all of the extra time I had on my hands was pretty boring. Helping people is something I enjoy doing so I thought that real estate would be a good choice for me. It was. I enjoy meeting new people, making new friends, and hearing a good story (anything about dogs always catches my attention.) Being able to assist these new friends through a major step in their life is a bonus. I believe it\'s my duty to help guide my clients through the process and also educate them. I do this through honesty, integrity, communication, and the desire to help.'),(222,27,'comment',''),(223,28,'format','Paige| | Wiser'),(224,28,'phone_number','704-904-1903'),(225,28,'email_address_6031894746','PaigeWiserRealtor@gmail.com'),(226,28,'mls_id','71081'),(227,28,'nc_license','309172'),(228,28,'birthday','12/11'),(229,28,'headshot_upload','a:1:{i:0;s:4:\"1501\";}'),(230,28,'home_office','Salisbury'),(231,28,'website_bio','I\'m so happy you\'re here! I grew up here in Charlotte, I\'ve lived in Huntersville, Waxhaw, South End, and Concord; therefore, I consider myself well versed in the greater Charlotte region! I am now officially a settled resident and home owner in Salisbury, North Carolina. My husband and I enjoy spending time with our family, trying new restaurants, starting all kinds of house projects and playing with our rescue pups, Bella and Quinn. When I am not assisting my amazing clients with their real estate needs, I enjoy managing my small photography business, gardening and knitting/crafting. Before discovering my passion for real estate, I was a wedding and portrait photographer; one of my favorite things about this job is being there for people on one of the biggest days of their lives. As I was looking for my next \"forever\" adventure, it felt like a natural progression to then help my “client-friends” make one of the biggest purchases of their lives. Since obtaining my license in January of 2019, I have taken great pride in my ability to provide exceptional customer service in every transaction, while utilizing my knowledge of our current market trends to ensure the best possible outcome for each client. Ultimately, I love to watch others GROW and SUCCEED and have found that real estate is truly where I am meant to serve others! I would be honored and elated to become your trusted advisor in real estate - I can promise you unparalleled dedication, care and attention to detail. I will be with you every step of the way to make this transition smooth, enjoyable and FUN!'),(232,28,'comment',''),(233,29,'name','Janice Cannon'),(234,29,'email_address','janiceacannon@gmail.com'),(235,29,'phone_number','2055145124'),(236,29,'nature_of_request','Update Content'),(237,29,'describe_your_request','Please add me to the team roster for Harrisburg. Thanks so much.'),(238,29,'image_upload_7340038198','a:0:{}'),(239,30,'name','Richard Wilson'),(240,30,'email_address','richard.wilson4565@gmail.com'),(241,30,'phone_number','7049969902'),(242,30,'nature_of_request','Add/Remove Agent'),(243,30,'describe_your_request','please add me to roster'),(244,30,'image_upload_7340038198','a:0:{}'),(245,31,'format','Janice| | Cannon'),(246,31,'phone_number','205-514-5124'),(247,31,'email_address_6031894746','janiceacannon@gmail.com'),(248,31,'mls_id','83949'),(249,31,'nc_license','322349'),(250,31,'birthday','03/14'),(251,31,'headshot_upload','a:1:{i:0;s:4:\"1526\";}'),(252,31,'home_office','Harrisburg'),(253,31,'website_bio','Janice provides all of her clients with a level of service that includes going over and above to make sure they are taken care of from start to finish. Her vast knowledge and years of listing, marketing &amp; selling homes in all types of markets has served her and her clients well. Excellence in client representation, professional negotiation, honesty, trust, fairness and mutual respect in business are trademarks of what you can expect from Janice. She recognizes that buying a home can be stressful and the most folks, it\'s the largest and most important investment; she doesn\'t take that lightly. In Janices personal life, you will find her either working out, cooking, social/ballroom dancing, crocheting, entertaining or simply doing a little crochet while watching HGTV. She is married to David Cannon who is retiring from UAB in Birmingham, AL to work alongside her in real estate.'),(254,31,'comment',''),(255,32,'format','Michele| | Tichnor'),(256,32,'phone_number','704.699.8824'),(257,32,'email_address_6031894746','Michele.Tichnor@gmail.com'),(258,32,'mls_id','81688'),(259,32,'nc_license','321191'),(260,32,'birthday','11/20'),(261,32,'headshot_upload','a:1:{i:0;s:4:\"1532\";}'),(262,32,'home_office','Kannapolis'),(263,32,'website_bio',''),(264,32,'comment',''),(265,33,'format','Alicia| Love| Hammel'),(266,33,'phone_number','704-699-7843'),(267,33,'email_address_6031894746','aliciahammelrealtor@gmail.com'),(268,33,'mls_id','64447'),(269,33,'nc_license','301472'),(270,33,'birthday','05/19'),(271,33,'headshot_upload','a:1:{i:0;s:4:\"1533\";}'),(272,33,'home_office','Kannapolis'),(273,33,'website_bio','I was born and raised in Cabarrus County and now reside in Concord. I have been married for 31 years to my husband Bob and we have a wonderful son, Cody, daughter-in-law, Hannah and adorable grandson, Levi. Anyone that knows me knows that I love to bake and will try my hand at any craft. I am on the Board of Directors for the Piedmont Farmers Market and enjoy helping at my church. I have been in real estate for three years and love helping my clients, both buyers and sellers, achieve their real estate dreams.'),(274,33,'comment',''),(275,34,'format','Alexandria| J| Bare'),(276,34,'phone_number','7047835434'),(277,34,'email_address_6031894746','abarehomes@gmail.com'),(278,34,'mls_id','84360'),(279,34,'nc_license','325549'),(280,34,'birthday','09/04'),(281,34,'headshot_upload','a:1:{i:0;s:4:\"1534\";}'),(282,34,'home_office','Salisbury'),(283,34,'website_bio','Alexandria illustrates energy, hard work, and creative service in every detail of your real estate transaction. She grew up in North Carolina and is proud to call it her home. Alexandria attended UNC Pembroke where she completed a Bachelor\'s of Business Administration. While she was there, she played four years as a collegiate golfer and was a four year Academic All American. Shortly after graduation, Alexandria traveled across the states to compete as a professional golfer. While continuing her golf career, she has developed a new passion for real estate. So whether you\'re a first time home buyer, trying to score that perfect distressed property, look for a luxury property, or sell one of your own, Alexandria can help with it all.'),(284,34,'comment',''),(285,35,'format','Ivan| | Henrickson'),(286,35,'phone_number','(704) 309-7841'),(287,35,'email_address_6031894746','ivanbhenrickson@gmail.com'),(288,35,'mls_id','80237'),(289,35,'nc_license','319616'),(290,35,'birthday','09/30'),(291,35,'headshot_upload','a:1:{i:0;s:4:\"1535\";}'),(292,35,'home_office','Mooresville'),(293,35,'website_bio',''),(294,35,'comment',''),(295,36,'format','Dominique| | Walter'),(296,36,'phone_number','828-638-5353'),(297,36,'email_address_6031894746','dwalterhomes4u@gmail.com'),(298,36,'mls_id','78901'),(299,36,'nc_license','318276'),(300,36,'birthday','0414'),(301,36,'headshot_upload','a:1:{i:0;s:4:\"1536\";}'),(302,36,'home_office','Mooresville'),(303,36,'website_bio','A North Carolinian for the last 18 years, I am originally from New Jersey. I began with a career in healthcare, almost 20 years ago, leveraging my passion for patient care, taking care of the families and building relationships based on compassion and understanding. The last 6 of those years I spent focused on direct marketing and sales with great success. I gained numerous company recognitions and awards in a very short time before taking on a leadership role. My drive, compassion for others, always being true to myself and being true to my beliefs makes me to be person people can trust and rely on. I get the job done! When I’m not selling houses or assisting my clients in other ways, my time is spent with family and growing our farm. My husband and I have 4 children (ages 17-7) in 4 different schools and just moved from a neighborhood to a house in the country and began an organic farm from scratch. Having never been farmers before this is a learning experience to say the least and we’re loving every minute of it. I look forward to helping you with your real estate needs.'),(304,36,'comment',''),(305,37,'name','Dominique Walter'),(306,37,'email_address','dwalterhomes4u@gmail.com'),(307,37,'phone_number','8286385353'),(308,37,'nature_of_request','Update Content'),(309,37,'describe_your_request','I accidently uploaded the wrong photo. Please replace with this one. Thank you and I apologize for the inconvenience.'),(310,37,'image_upload_7340038198','a:1:{i:0;s:4:\"1538\";}'),(311,38,'name','Dale Bullock'),(312,38,'email_address','dale.bullock2014realtor@gmail.com'),(313,38,'phone_number','704-791-5457'),(314,38,'nature_of_request','Update Agent Profile'),(315,38,'describe_your_request','I have lived in the Cabarrus/Rowan area my whole life. My children were raised here, and attended school here. I say this to let you know that I have a great deal of knowledge about this area, and I believe I can help you with any of questions you may have about the area. I have seen it come from a mill village to becoming an up and growing very inviting city. My interest in real estate started in high school when I was in drafting class and first started designing house plans. My work career has been in customer service for more than 30 years. If there is any questions you may have about relocating to this area, or a new home, or maybe downsizing please give me a call, and I would love to help you anyway I can.'),(316,38,'image_upload_7340038198','a:0:{}'),(317,39,'format','Tammy| | Fox'),(318,39,'phone_number','704-785-7597'),(319,39,'email_address_6031894746','tammyafox@gmail.com'),(320,39,'mls_id','31636'),(321,39,'nc_license','278107'),(322,39,'birthday','10/02'),(323,39,'headshot_upload','a:1:{i:0;s:4:\"1564\";}'),(324,39,'home_office','Kannapolis'),(325,39,'website_bio','My name is Tammy Fox and I have lived in the Kannapolis area my entire life. It\'s exciting being a part of the new changes and growth to the area. I started my career in 2010 as a Property Manager and became a Realtor in 2013. I enjoy helping people with different transitions in their life whether it be helping them find their first home, forever home, downsizing or upsizing or even becoming an investor. Outside of real estate I enjoy spending as much time as I can with my husband and family of 3 children and 3 grandchildren. I also enjoy community outreach and crafting.'),(326,39,'comment',''),(327,40,'format','Ashley| | Uttecht'),(328,40,'phone_number','704.792.5147'),(329,40,'email_address_6031894746','ashleyuttecht@gmail.com'),(330,40,'mls_id','65845'),(331,40,'nc_license','303298'),(332,40,'birthday','06/23'),(333,40,'headshot_upload','a:1:{i:0;s:4:\"1593\";}'),(334,40,'home_office','Mooresville'),(335,40,'website_bio','My passion is helping people achieve the goals they have set out before them. Every situation is different and I love knowing that I\'m able to be a part of someone\'s story. My dedication to you as your Realtor is to make sure you\'re comfortable, have a solid understanding of what to expect, and eliminating unnecessary stress. My promise to you is that I will be by your side from the beginning, representing you to the highest level of professionalism and maintaining constant communication. I am originally from a small town in Nebraska and moved to Concord in 2008. I currently reside in Mooresville with my boyfriend and our dog. We spend our free time soaking up the sun on Lake Norman. My door is always open!'),(336,40,'comment',''),(337,41,'format','Pam| F| Lambert'),(338,41,'phone_number','704-791-1074'),(339,41,'email_address_6031894746','pamlambert.ncrealtor@gmail.com'),(340,41,'mls_id','16805'),(341,41,'nc_license','216222'),(342,41,'birthday','07/27'),(343,41,'headshot_upload','a:1:{i:0;s:4:\"1597\";}'),(344,41,'home_office','Kannapolis'),(345,41,'website_bio','The right Realtor really does make all the difference! Since 1998 it is my privilege to provide professional excellent Real Estate service. From start to finish my goal is to give you a successful and enjoyable real estate experience. I am personally with you every step of the way... Sellers, together we discuss your goals. A marketing plan is executed to perfection to price your property, to have beautiful professional photography, and staging of your home. Buyers, we work together to find you just the right home, navigating the home search, your contract negotiations, inspections and repairs. Because of happy clients and their referrals of their family and friends, I have received multiple customer service awards, marketing awards, and sales awards year after year. I appreciate you for trusting me to assist you with all of your real estate needs! Education and Memberships: Western Carolina University, Bachelor degree in Business Administration, Marketing. NC Broker/ Realtor since 1998, NAR, NC Assoc of Realtors, CCAR, Carolina MLS. Accredited Relocation Specialist, Accredited Luxury Home Specialist (ALHS), Certified Military Residential Specialist (CMRS). It is a privilege to assist all Veterans and US Military Service Members. Originally from the beautiful beaches of Sarasota Florida, I\'ve lived in NC since college. My husband Greg Lambert is a Kannapolis native and we have enjoyed living here, working, and raising our family. We are the proud parents of 3 very accomplished children that have families of their own now. Through the years I have enjoyed supporting and volunteering with our church, community and public schools. I support the Kannapolis Bible Teaching Association, Cabarrus Arts, Meals on Wheels, Habitat for Humanities, Samaritans Purse and other organizations.'),(346,41,'comment',''),(347,42,'format','Wendell| | Rummage'),(348,42,'phone_number','704-791-7475'),(349,42,'email_address_6031894746','realtor.wendell.rummage@gmail.com'),(350,42,'mls_id','46923'),(351,42,'nc_license','288825'),(352,42,'birthday','12/15'),(353,42,'headshot_upload','a:1:{i:0;s:4:\"1664\";}'),(354,42,'home_office','Kannapolis'),(355,42,'website_bio','Wendell is a lifelong resident of the Charlotte Metro area which is a plus when searching for a knowledgeable realtor. His passion to serve people is evidenced by his 30 year law enforcement career and service to his church and other community groups. In 2015, Wendell was awarded the prestigious Robert Jackson Eury Officer of the Year Award by Cabarrus County Law Enforcement. He is a graduate of the 222nd Session of the FBI National Academy in Quantico, Virginia and obtained his Bachelor Degree from Pfeiffer University. Seeking to achieve an excellent experience with every client, we are proud to have Wendell serving as our Broker In Charge of the Kannapolis office.'),(356,42,'comment',''),(357,43,'format','Taina| | Shaw'),(358,43,'phone_number','704-467-0090'),(359,43,'email_address_6031894746','taina@tshawrealty.com'),(360,43,'mls_id','17219'),(361,43,'nc_license','172196'),(362,43,'birthday','01/05'),(363,43,'headshot_upload','a:1:{i:0;s:4:\"1672\";}'),(364,43,'home_office','Kannapolis'),(365,43,'website_bio','A NC native, resident of Cabarrus County for over 30 years and a graduate of UNC Chapel Hill...GO TAR HEELS!! I have been selling real estate for the past several years and love what I do. I am a very social and talkative person, so I never meet a stranger! It is very rewarding helping my clients find their perfect home or sell their home to start a new chapter in their life. I have sold homes around the area to include Lake Norman and Lake Tillery. Who doesn\'t love a little lake life!! I am ready to help you with your real estate needs and answer any questions you may have about the process!'),(366,43,'comment',''),(367,44,'format','Viviana| | Martinez Campos'),(368,44,'phone_number','7047777245'),(369,44,'email_address_6031894746','12martiv@gmail.com'),(370,44,'mls_id','78947'),(371,44,'nc_license','318492'),(372,44,'birthday','12/02'),(373,44,'headshot_upload','a:1:{i:0;s:4:\"1674\";}'),(374,44,'home_office','Kannapolis'),(375,44,'website_bio','Hola Everyone, this is Viviana. I have lived in Kannapolis for so long, that I am so happy to call this beautiful growing city Home! As a customer service employee for over 10 years helping people is my passion. I feel really blessed to be able to help my Kannapolis community and the surrounding areas finding their dream home, and also selling homes at the best price possible. Please know that I will always prefer having a face to face conversation to communicate with my clients, to help find the trust and need in a conversation. If you have been to El Amigo Mexican Restaurant in the past years, you have probably seen me there, or maybe at the local dental office where I help patients with their dental needs. Please know that I am just a phone call away, and would love to earn your business!'),(376,44,'comment','Hi Team, please know that I am a fluent bilingual real estate agent, and I am available to help out in anyway I can!'),(377,45,'format','Micheal| | Farlow'),(378,45,'phone_number','828-231-5466'),(379,45,'email_address_6031894746','mfarlowrealtor@gmail.com'),(380,45,'mls_id','548502195'),(381,45,'nc_license','49756'),(382,45,'birthday','04/19'),(383,45,'headshot_upload','a:1:{i:0;s:4:\"1691\";}'),(384,45,'home_office','Other (specify in comments)'),(385,45,'website_bio','A native of Asheville, I have enjoyed a career in Accounting and Tax preparation. Following graduation at Western Carolina University I commenced my professional career and became a franchise owner with H&amp;R Block. For the last 20 years I have worked with physicians and tax departments of Healthcare Business Consultants and Doctors Management. Due to the fact that I enjoy real estate and investing myself, I obtained my NC brokerage license in the 80\'s and worked referrals for many of my accounting and tax clients. I am currently pursuing a more active real estate career while staying abreast of the tax laws. This enables me to help guide you through those issues that pertain to both the real estate market and your financial future for those investments. I love to help client\'s find homes and investments in the Asheville, Hendersonville and surrounding areas. Let me go to work to find you the perfect mountain home for your family, whether it be a mountain top home with expansive views of the valleys below or a small West Asheville abode within walking distance of renowned restaurants, entertainment and business. I can and will work diligently to market and promote your current property for the highest and best value. I know Western NC and real estate, let me go to work for you.'),(386,45,'comment','Home Office: Asheville NC'),(387,46,'format','Katherine| | Lawing'),(388,46,'phone_number','828-772-0220'),(389,46,'email_address_6031894746','klawingrealtor@gmail.com'),(390,46,'mls_id','548508248'),(391,46,'nc_license','278966'),(392,46,'birthday','05/25'),(393,46,'headshot_upload','a:1:{i:0;s:4:\"1693\";}'),(394,46,'home_office','Other (specify in comments)'),(395,46,'website_bio','Having lived in the Asheville area all my life, I understand why it\'s one of the top locations in the country to live. With over 21 years of sales experience and in true southern style, my approach to customer service is to get to know you, your personal needs and any potential concerns up front. This enables me to best advise you through your home buying and selling process, helping to avoid and potential problems down the road. Developing a true partnership to offer you up-front and honest advise is important. Aiding you in moving through each step of the sales process as quickly as possible, staying up to date on market changes both financial and legal enables the transaction to move more smoothly. Easing some of the stress and making it as enjoyable as possible is key. Buying or selling a home is not just a \"transaction\" . I am here to become a support and trusted advisor for dealing with your real estate needs. If you or someone you know is ready for their 1st or 2nd home or to purchase an investment property, here in the Western NC mountains - in and around Asheville - or if you are ready to sell, please feel free to contact me. In the end it is really about relationships. I might have helped you sell or purchase a home, but our relationship lasts forever. Your referral is the best compliment you can give and I promise to treat your connections as well as I treat my own. Check out my reviews on Zillow https://www.zillow.com/profile/KLawingrealtor'),(396,46,'comment','location Is Asheville'),(397,47,'format','Chelsea| | Trexler'),(398,47,'phone_number','7043107294'),(399,47,'email_address_6031894746','ctrexler.realtor@gmail.com'),(400,47,'mls_id','85638'),(401,47,'nc_license','327348'),(402,47,'birthday','08/20'),(403,47,'headshot_upload','a:1:{i:0;s:4:\"1695\";}'),(404,47,'home_office','Albemarle'),(405,47,'website_bio','I am a resident of Richfield NC where my husband and I bought and remodeled our first home 3 years ago. Since then I have taken an interest in real estate and want to help other people do the same. I am new to real estate but cant wait to get started! In my spare time I love trail riding ATVs, snowboarding, going fishing and camping with my husband and dogs.'),(406,47,'comment',''),(407,48,'name','Christopher Puckett'),(408,48,'email_address','ch2realty@gmail.com'),(409,48,'phone_number','7042985872'),(410,48,'nature_of_request','Add/Remove Agent'),(411,48,'describe_your_request','Please remove Alan Aylesworth from our roster'),(412,48,'image_upload_7340038198','a:0:{}'),(413,49,'name','Christopher Puckett'),(414,49,'email_address','ch2realty@gmail.com'),(415,49,'phone_number','7042985872'),(416,49,'nature_of_request','Update Content'),(417,49,'describe_your_request','Please add the Asheville office to our Office roster page. Here is the info. CMLS Office Code: 1071203 NCREC Office Code: C29719 HUD NAID# LNTRNR2230 Office Address: 23 Mill Stone Dr, Asheville, NC 28803-2492 Katherine Lawing is the Broker In Charge'),(418,49,'image_upload_7340038198','a:0:{}'),(419,50,'format','Julie| | Arader'),(420,50,'phone_number','828-450-6004'),(421,50,'email_address_6031894746','juliethebroker@gmail.com'),(422,50,'mls_id','JulieA'),(423,50,'nc_license','295527'),(424,50,'birthday','10/19'),(425,50,'headshot_upload','a:1:{i:0;s:4:\"1706\";}'),(426,50,'home_office','Other (specify in comments)'),(427,50,'website_bio','Asheville'),(428,50,'comment','I grew up in Chappaqua, NY, a suburb about 30 miles north of NYC. I moved to NC in 1997, I worked for IBM and moved my job to the Raleigh/Durham area. I found my way to Asheville in 2005 when I met my husband. I love this area and am here to stay. We live in Candler with our 3 cats, 2 goats, and chickens. I like gardening, hiking and going to see live music, and music festivals. I have an AS in Marketing and a BS in Business Administration. I\'ve been an Administrative Assistant for most of my career and have always been interested in being a Real Estate Agent so I finally went for it in early 2017. I love helping people navigate through the home buying process for the first time or 100th time. I live in my perfect for me home, let me help you find your perfect for you home.'),(429,51,'format','Julie| | Arader'),(430,51,'phone_number','828-450-6004'),(431,51,'email_address_6031894746','juliethebroker@gmail.com'),(432,51,'mls_id','juliea'),(433,51,'nc_license','295527'),(434,51,'birthday','10/19'),(435,51,'headshot_upload','a:1:{i:0;s:4:\"1716\";}'),(436,51,'home_office','Other (specify in comments)'),(437,51,'website_bio','I grew up in Chappaqua, NY, a suburb about 30 miles north of NYC. I moved to NC in 1997, I worked for IBM and moved my job to the Raleigh/Durham area. I found my way to Asheville in 2005 when I met my husband. I love this area and am here to stay. We live in Candler with our 3 cats, 2 goats and 4 chickens. I like gardening, hiking and going to see live music, and music festivals. I have an Associates degree in Marketing and a BS in Business Administration. I\'ve been an Administrative Assistant for most of my career and have always been interested in being a Real Estate Agent so I finally went for it in early 2017. I live in my perfect for me home, let me help you find your perfect for you home.'),(438,51,'comment','Home office: Asheville'),(439,52,'name','Viviana Martinez Campos'),(440,52,'email_address','12martiv@gmail.com'),(441,52,'phone_number','7047777245'),(442,52,'nature_of_request','Update Agent Profile'),(443,52,'describe_your_request','I would like to update my profile picture to the one attached to this.'),(444,52,'image_upload_7340038198','a:0:{}'),(445,53,'format','Micheal| | Farlow'),(446,53,'phone_number','828-231-5466'),(447,53,'email_address_6031894746','mfarlowrealtor@gmail.com'),(448,53,'mls_id','548502195'),(449,53,'nc_license','49756'),(450,53,'birthday','04/19'),(451,53,'headshot_upload','a:1:{i:0;s:4:\"1723\";}'),(452,53,'home_office','Other (specify in comments)'),(453,53,'website_bio','A native of Asheville I have enjoyed a lengthy career in Accounting and Tax preparation. After completing my BSBA degree at WCU I began my professional career with H&amp;R Block where I became a franchise owner. I also enjoyed over 20 years experience working with the tax departments of Healthcare Business Consultants and Doctors Management. Having obtained my real estate license in the 1980s I worked with referral clients and various real estate brokers in the area for many years. At present I am pursuing real estate as a second career and love helping clients to navigate the selection of a new home as well as guide them through all the necessary steps to ensure that they are making a wise and sound investment. From finding the right home, inspections, to financing I am here to guide you to ensure a satisfying and solid transaction for you, your family and your future.'),(454,53,'comment','Asheville NC'),(455,54,'format','Dawn| | Wetherbee'),(456,54,'phone_number','704-791-5689'),(457,54,'email_address_6031894746','mrsdawnwetherbee@gmail.com'),(458,54,'mls_id','R10470'),(459,54,'nc_license','326663'),(460,54,'birthday','05/14'),(461,54,'headshot_upload','a:1:{i:0;s:4:\"1755\";}'),(462,54,'home_office','Kannapolis'),(463,54,'website_bio','Hi! My name is Dawn and I was born and raised in Cabarrus County. Since I have lived here my entire life, I am very familiar with the area. I currently live in Concord with my husband, two daughters, and my sweet little dog. In my spare time, I enjoy weekends trips anywhere, but the mountains are my favorite. I have many years with customer service experience and would love to help buyer and seller clients with their real estate needs. I am ready to help you and I look forward to working together.'),(464,54,'comment',''),(465,55,'name','Julie Arader'),(466,55,'email_address','juliethebroker@gmail.com'),(467,55,'phone_number','8284506004'),(468,55,'nature_of_request','Update Agent Profile'),(469,55,'describe_your_request','I grew up in Chappaqua, NY, a suburb about 30 miles north of NYC. I moved to NC in 1997, I worked for IBM and moved my job to the Raleigh/Durham area. I found my way to Asheville in 2005 when I met my husband. I love this area and am here to stay. We live in Candler with our 3 cats, 2 goats and 4 chickens. I like gardening, hiking and going to see live music, and music festivals. I have an Associates degree in Marketing and a BS in Business Administration. I\'ve been an Administrative Assistant for most of my career and have always been interested in being a Real Estate Agent so I finally went for it in early 2017. I live in my perfect for me home, let me help you find your perfect for you home. I\'m very happy to be part of the Lantern Team!'),(470,55,'image_upload_7340038198','a:1:{i:0;s:4:\"1833\";}'),(471,56,'format','Rochelle| Shanae| Ogburn'),(472,56,'phone_number','704.750.1848'),(473,56,'email_address_6031894746','rochelle@theogburngroup.com'),(474,56,'mls_id','54327'),(475,56,'nc_license','294287'),(476,56,'birthday','04/21/1982'),(477,56,'headshot_upload','a:1:{i:0;s:4:\"1853\";}'),(478,56,'home_office','Kannapolis'),(479,56,'website_bio','Rochelle Ogburn, is founder and CEO of The Ogburn Group, a team of passionate professionals ready to expertly guide you home. Rochelle spent 13 years as a visual merchandiser for a flagship department store in her hometown town of Des Moines, Iowa. She later entered the mortgage industry, working to help homeowners facing foreclosure stay in their homes. In 2014, Rochelle moved to Matthews, NC with her husband and high-school sweetheart, Tim, and their two children. It was here in the Queen City that she was able to combine her love of design and passion for helping others by becoming a licensed real estate agent. In 2021, Rochelle formed The Ogburn Group and was thrilled to partner with her husband to help even more clients find their way ‘home’. Tim Ogburn worked for over a decade at one of the nation\'s largest financial institutions. First in mortgages and then as a Business Relationship Manager. He is excited, humbled and honored to bring his mortgage insight and relationship management skills to The Ogburn Group and help more buyers and sellers realize their homeownership dreams.'),(480,56,'comment',''),(481,57,'format','Katie| M| Abell'),(482,57,'phone_number','845-551--0429'),(483,57,'email_address_6031894746','kabellrealty@gmail.com'),(484,57,'mls_id','R10656'),(485,57,'nc_license','329520'),(486,57,'birthday','11/02'),(487,57,'headshot_upload','a:1:{i:0;s:4:\"1875\";}'),(488,57,'home_office','Kannapolis'),(489,57,'website_bio','Born and raised in upstate New York, I moved to Concord with my family in 2007. Since moving here, I have lived in Concord, Kannapolis and now settled in Salisbury. I have always enjoyed looking at homes, and helping friends and family find real estate online. Now that I am officially an NC Realtor, I am now able to take my hobby and make it into a career. I love listening to my clients wants and needs, and making them a reality. I specialize in all areas of real estate, including relocation. As your real estate agent, I promise that you can be confident that I will always have your back and look out for the best interests of you and your family. I am passionate about what I do and I use my passion as the driving force to help my clients reach their real estate and financial goals. When I am not practicing real estate, you can find me working as a freelance PR assistant, playing outside with son or preparing a home cooked meal for my family. My husband and I have a son, named Jack, who is the light of our lives, as well as two fur babies.'),(490,57,'comment',''),(491,58,'name','Christopher Puckett'),(492,58,'email_address','ch2realty@gmail.com'),(493,58,'phone_number','7042985872'),(494,58,'nature_of_request','Add/Remove Agent'),(495,58,'describe_your_request','please remove Alan Aylesworth from the website'),(496,58,'image_upload_7340038198','a:0:{}'),(497,59,'format','Sandra| J| Bean'),(498,59,'phone_number','336-983-5064'),(499,59,'email_address_6031894746','sandrabean82@gmail.com'),(500,59,'mls_id','302663'),(501,59,'nc_license','302663'),(502,59,'birthday','02/13'),(503,59,'headshot_upload','a:1:{i:0;s:4:\"1884\";}'),(504,59,'home_office','Salisbury'),(505,59,'website_bio','Sandra has lived in North Carolina her whole life. Her passion is to help families find their perfect home. She has been doing that very job since 2017. She would love to help you buy or sell your home.'),(506,59,'comment',''),(507,60,'format','Dawn| | Wetherbee'),(508,60,'phone_number','704-791-5689'),(509,60,'email_address_6031894746','mrsdawnwetherbee@gmail.com'),(510,60,'mls_id','R10470'),(511,60,'nc_license','326663'),(512,60,'birthday','05/14'),(513,60,'headshot_upload','a:1:{i:0;s:4:\"1885\";}'),(514,60,'home_office','Kannapolis'),(515,60,'website_bio','My name is Dawn Wetherbee. I was born and raised in Cabarrus county, and I’m a graduate of A.L. Brown High School. I have watched Kannapolis go from a mill town to what it is now. Since I have lived here my entire life, I am very familiar with this area and I would love to help you with any of your real estate needs. Please feel free to reach out, and I’d be happy to assist you in any way that I can!'),(516,60,'comment',''),(517,61,'format','Chelsea| L| Trexler'),(518,61,'phone_number','704-310-7294'),(519,61,'email_address_6031894746','Ctrexler.realtor@gmail.com'),(520,61,'mls_id','85638'),(521,61,'nc_license','327348'),(522,61,'birthday','08/20'),(523,61,'headshot_upload','a:1:{i:0;s:4:\"1917\";}'),(524,61,'home_office','Albemarle'),(525,61,'website_bio','I grew up as a Rowan County resident and moved to Richfield when my husband and I bought our first home 3 years ago. After going through the extensive process of buying and remodeling I decided that I wanted to help other families or first time home buyers do the same thing and help make their transitions as easy as possible! I left my previous full time job and came into the market when is was HOT and I absolutely love it and haven\'t looked back since. I spend all of my spare time enjoying the outdoors with my husband and dogs, fishing, boating, camping and trail riding ATVs.'),(526,61,'comment',''),(527,62,'format','Amber| | Tsumas'),(528,62,'phone_number','704-728-2612'),(529,62,'email_address_6031894746','amber.ncrealty@gmail.com'),(530,62,'mls_id','R10494'),(531,62,'nc_license','319019'),(532,62,'birthday','04/19'),(533,62,'headshot_upload','a:1:{i:0;s:4:\"1918\";}'),(534,62,'home_office','Kannapolis'),(535,62,'website_bio','The Metro Charlotte area is a great place to live and work, which is why Amber has called it home for over 20 years. She and her husband John, a native Charlottean, are raising 2 boys here and couldn\'t be happier. Amber is eager to help clients in all aspects of real estate. She is committed to listening to her clients needs and finding their perfect home. You can always count on her professionalism and dedication to each transaction. Amber feels incredibly blessed to work with amazing clients and build special relationships with each one.'),(536,62,'comment',''),(537,63,'name','Doreen Shaughnessy'),(538,63,'email_address','doreenshaughnessy@gmail.com'),(539,63,'phone_number','8283376339'),(540,63,'nature_of_request','Update Agent Profile'),(541,63,'describe_your_request','Please add my profile...bio below. I relocated to Asheville from Buffalo, NY because of the extraordinary beauty of the mountains, milder winters and the vibe. There was such a strong pull to move here that could not be denied. The friendliness and welcoming feel from the people as well as the wonderful diverse food and activities certainly played into our decision as well. My passion is creating a home. For me that means a place that feeds my soul through entertaining and enjoying time with family and friends. In Buffalo I owned a successful interior design firm where I took pride in providing great customer service and making homes more beautiful, one room at a time. Now, I have the privilege to provide that same customer service connecting clients with buyers and finding new homes for others that meet their needs including their lifestyle, budget and taste. My greatest reward is seeing the look on my client\'s faces after a successful transaction is completed and knowing the joy and sense of well-being they feel. In my free time I love reading, walking, doing pilates, hiking, traveling, dining out and spending as much time as I can outdoors.'),(542,63,'image_upload_7340038198','a:1:{i:0;s:4:\"1920\";}'),(543,64,'name','Kathy Gurney'),(544,64,'email_address','kathygrealty@gmail.com'),(545,64,'phone_number','(828) 279-7053'),(546,64,'nature_of_request','Add/Remove Agent'),(547,64,'describe_your_request','I would like to set up my bio for the Lantern website. I do not have a recent photograph but will upload one as soon as I have one taken.'),(548,64,'image_upload_7340038198','a:0:{}'),(549,65,'format','Amber| | Tsumas'),(550,65,'phone_number','7047282612'),(551,65,'email_address_6031894746','amber.ncrealty@gmail.com'),(552,65,'mls_id','R10494'),(553,65,'nc_license','319019'),(554,65,'birthday','04/19'),(555,65,'headshot_upload','a:1:{i:0;s:4:\"1937\";}'),(556,65,'home_office','Kannapolis'),(557,65,'website_bio','The Metro Charlotte area is a great place to live and work, which is why Amber has called it home for over 20 years. She and her husband John, a native Charlottean, are raising 2 boys here and couldn\'t be happier. Amber is eager to help clients in all aspects of real estate. She is committed to listening to her clients needs and finding their perfect home. You can always count on her professionalism and dedication to each transaction. Amber feels incredibly blessed to work with amazing clients and build special relationships with each one.'),(558,65,'comment',''),(559,66,'name','Claire Sonnier'),(560,66,'email_address','ClaireSonnierRealtor@gmail.com'),(561,66,'phone_number','828-582-3866'),(562,66,'nature_of_request','Update Agent Profile'),(563,66,'describe_your_request','Making Realty Dreams a Reality Having moved to Western North Carolina in 2009 because of our love of the outdoors and arts scene, I am a focused professional with over 20 years of experience in sales and marketing that I will put to work for you. I put my energy into building relationships with my clients to ensure that we make the process as enjoyable as possible while we find the home that fits their needs, and I pride myself on being able to close the deal. In addition, I have extensive experience in interior design, which allows me to help you better understand how to identify the home that fits your lifestyle and spatial needs. That is also a key asset in marketing properties for my clients who are selling. I look forward to hearing from you about any of your home buying and selling needs. Awards &amp; Designations Member of the Land of the Sky Association of REALTORS®'),(564,66,'image_upload_7340038198','a:1:{i:0;s:4:\"1967\";}'),(565,67,'name','Dawn Fisher'),(566,67,'email_address','DawnFisher.NCRealtor@gmail.com'),(567,67,'phone_number','727-452-2245'),(568,67,'nature_of_request','Add/Remove Agent'),(569,67,'describe_your_request','Please add me as a new agent to the Harrisburg office. See below bio: I am licensed REALTOR® in both North Carolina, Florida and Dubai International Property Consultant (DIPC), Dedicated to achieving results and providing exceptional service, I will put my expertise to work for you! I bring over 25 years of experience in business development and marketing strategy for retail, commercial, education and financial industries. Prior to being a Real Estate agent, I held leadership roles as Corporate Business Manager, Client Services Manager and Director of Business Development in the print advertising and direct mail industry. I bring vitality, professionalism, warmth, and a mindset of service as I work with homeowners, investors and buyers. As an advocate of best practices in the real estate industry, I am C2EX endorsed and have earned the ABR (Accredited Buyer Represtative), AHWD(At Home With Diversity), CIPS (Certified International Property Specialist), GRI (Graduate Real Estate Institute), PSA (Pricing Strategy Advisor), RENE (Real Estate Negotiation Expert), SFR (Short Sales and Foreclosure Resource), SRES (Senior Real Estate Specialist) and SRS (Sellers Representative Specialist) designations. With over 200 CE (Continued Education) hours, I have the skill set and training to serve help you with the sale and purchase of your home. It brings me such joy to work with the public and help them achieve their real estate dreams. I raised four children, two girls and two boys that are now grown and on their own. I am a happy NaNa of TWO grandsons! In my spare time I love to travel, cook and have a passion for music. Since COVID-19 I’ve dusted off my middle school band instrument, the flute and trying to relearn how to play it again. And I also enjoy playing the ukulele and I\'ve even started to learn the keyboard. Now you know a little about me, contact me today and let me get to know you and how I can help you sell and/or find your next home or real estate investment.'),(570,67,'image_upload_7340038198','a:1:{i:0;s:4:\"1980\";}'),(571,68,'format','Joshua| | Gonyeau'),(572,68,'phone_number','8285857285'),(573,68,'email_address_6031894746','Joshuagrealtor@gmail.com'),(574,68,'mls_id','66108'),(575,68,'nc_license','303886'),(576,68,'birthday','02/05'),(577,68,'headshot_upload','a:1:{i:0;s:4:\"1983\";}'),(578,68,'home_office','Asheville'),(579,68,'website_bio','Welcome to Western North Carolina! Lets Get started…Why choose Joshua as your Realtor? For one, he really listens to you and your needs and will work tirelessly on your behalf. For two, he thinks he’s funny. You may also find him funny or just feel sorry for him for finding himself so funny, but either way he will elicit an emotional response that you will not get from the average Realtor. Joshua is originally from a small town in upstate New York not unlike Asheville. He grew up on a horse farm and developed a love for mountains and the outdoors from a young age. In 2015, with the help of a PowerPoint presentation (seriously) and a little nudge from a wise woman, he moved to Asheville, reminiscent of the mountain setting he loved so much growing up. After 20 years of managing restaurants, he finally decided to listen to that entrepreneurial voice in the back of his head and move into real estate. From his many years in hospitality he learned much about customer service, what it means to exceed expectations, and how to turn regulars into genuine friends. That experience translates into everything he does in real estate, by not only earning your business, but more importantly a long term connection. Joshua believes that a restaurant without regulars is not truly successful, and this is true in real estate as well. Joshua currently lives in Asheville with the aforementioned wise woman. When he is not working he enjoys hiking, running, camping, and volunteering for a local animal shelter. The environment, green housing, and green living are all important in his life and are a focus in his real estate career. So whether you are looking for a mountain-top retreat, or 100 acres to start a commune, or you need to sell your house to pay for your ex-husbands alimony, or you have come to the realization that you are going to need about five more rooms for all of the animals you can’t stop adopting, or you just need a small West Asheville bungalow to home-brew full-time…let him be the one to help you fulfil your dreams. Please feel free to contact us if you’d like to find out more about our wonderful town. If you are looking for a home or thinking about selling I am sure that we can exceed your expectations and build a lasting relationship.'),(580,68,'comment',''),(581,69,'format','Karie| | Sturdevant'),(582,69,'phone_number','7042243105'),(583,69,'email_address_6031894746','kariesellsnc@gmail.com'),(584,69,'mls_id','60839'),(585,69,'nc_license','298676'),(586,69,'birthday','05/30'),(587,69,'headshot_upload','a:1:{i:0;s:4:\"1986\";}'),(588,69,'home_office','Harrisburg'),(589,69,'website_bio','Thank you for checking out my profile! I moved to NC in 1996 and never looked back. I love the Concord area and all that it has to offer. I worked in non-profit for over 16 years and then decided to pursue my dream of Real Estate in 2017. I work with both buyers and sellers and have alot of experience with first time home buyers. Buying or selling a home can be stressful, but I am here to make the transaction as smooth as possible for you. Whether you\'re getting the keys to your new home or handing over the keys to the new owners, I will guide you through the entire process and get you to the closing table. I look forward to the opportunity to work with you!'),(590,69,'comment','Hi! This headshot is super old and Im getting new ones next week. Can you just not put one for now and use maybe the Logo instead? I will get you the new one as soon as I have it. Thanks!'),(591,70,'format','David| G| Cannon'),(592,70,'phone_number','6155942492'),(593,70,'email_address_6031894746','dcannon06@gmail.com'),(594,70,'mls_id','552502084'),(595,70,'nc_license','331557'),(596,70,'birthday','06/18'),(597,70,'headshot_upload','a:1:{i:0;s:4:\"1995\";}'),(598,70,'home_office','Harrisburg'),(599,70,'website_bio','With over 25 years buying and selling real estate, we can assist you with all of your marketing and home buying needs. Please give me a call to discuses how our team can help you meet your real estate goals.'),(600,70,'comment',''),(601,71,'format','Misty| Lynn| Moss'),(602,71,'phone_number','7042247380'),(603,71,'email_address_6031894746','mistymoss23@yahoo.com'),(604,71,'mls_id','R11476'),(605,71,'nc_license','329874'),(606,71,'birthday','02/23'),(607,71,'headshot_upload','a:1:{i:0;s:4:\"2041\";}'),(608,71,'home_office','Kannapolis'),(609,71,'website_bio',''),(610,71,'comment',''),(611,72,'format','Ilona| | Kenrick'),(612,72,'phone_number','8283988700'),(613,72,'email_address_6031894746','ikenrick990@gmail.com'),(614,72,'mls_id','itkitk'),(615,72,'nc_license','264347'),(616,72,'birthday','10/08'),(617,72,'headshot_upload','a:1:{i:0;s:4:\"2051\";}'),(618,72,'home_office','Asheville'),(619,72,'website_bio','I\'ve been active in real estate for over 20 years. About 13 years ago my husband Jeff and I settled into the beautiful western North Carolina area and have loved everyday of it. We have been selling/listing/ and investing in real estate for many years. It is our full time passion. I\'ve been in the top 10 category from 2011-2019. I\'ve lead a team of successful agents for the past 5 years. I have been in sales all of my life and I am only successful if my clients are happy. I believe old fashion service paired with new world technology is a winning combination. I love working with the Lantern Team... to me it was like coming home. So please let me find the home for you and your family to come home to.'),(620,72,'comment',''),(621,73,'name','Jenna Stoll'),(622,73,'email_address','jenstoll88@gmail.com'),(623,73,'phone_number','8288088842'),(624,73,'nature_of_request','Update Content'),(625,73,'describe_your_request','Hello, I am a new agent with lantern and would like my bio added to the asheville team please put below \"Love Where You Live\"...For me this has always been the most important factor when buying a home. I\'ve lived in many states and always found the journey of finding a new home to be an exciting one. Originally from Michigan, after spending several years in Florida my husband and I wanted to find that perfect place where we could raise a family and get involved in a community diverse with culture. We found that in Western North Carolina and now get to enjoy everything this area has to offer with our two young daughters. After living in Asheville for several years we made a move to Hickory. Now I get the pleasure of getting to explore more areas and actively work in both the Asheville and Hickory market! Whether buying or selling, I\'d love to bring the knowledge I have and passion for the industry to help you make the right decision for your future. Just reach out for any questions you might have, I\'d be happy to help!'),(626,73,'image_upload_7340038198','a:1:{i:0;s:4:\"2055\";}'),(627,74,'format','Misty| Lynn| Moss'),(628,74,'phone_number','7042247380'),(629,74,'email_address_6031894746','mistymlularoe@yahoo.com'),(630,74,'mls_id','R11476'),(631,74,'nc_license','329874'),(632,74,'birthday','02/23'),(633,74,'headshot_upload','a:1:{i:0;s:4:\"2056\";}'),(634,74,'home_office','Kannapolis'),(635,74,'website_bio',''),(636,74,'comment',''),(637,75,'format','Ilona| T| Kenrick'),(638,75,'phone_number','18283988700'),(639,75,'email_address_6031894746','ikenrick990@gmail.com'),(640,75,'mls_id','itkitk'),(641,75,'nc_license','264347'),(642,75,'birthday','10/08'),(643,75,'headshot_upload','a:1:{i:0;s:4:\"2057\";}'),(644,75,'home_office','Asheville'),(645,75,'website_bio','I\'ve been in all aspects of real estate for well over 20 years. I love working with buyers, sellers and investors. I have worked in the Western North Carolina market for most all of those years and always look forward to seeing what the next day brings. I have taught, motivated highly successful agents and teams throughout my tenure. I feel I have found the perfect fit at Lantern. Small town family feel with all the technical benefits. They listen and respond and make our experience one of the best ever. And that is passed on to the agents who do the same for their buyers and sellers. Please feel free to reach out at anytime. I promise you will not be disappointed !'),(646,75,'comment',''),(647,76,'name','Helen Matthews'),(648,76,'email_address','hamatthews@gmail.com'),(649,76,'phone_number','704-796-4026'),(650,76,'nature_of_request','Update Content'),(651,76,'describe_your_request','My last name has changed due to getting married. Should now be Helen Robb and email is helenrobb4@gmail.com'),(652,76,'image_upload_7340038198','a:0:{}'),(653,77,'format','Jenna| | Stoll'),(654,77,'phone_number','8288088842'),(655,77,'email_address_6031894746','jenstoll88@gmail.com'),(656,77,'mls_id','65031'),(657,77,'nc_license','303092'),(658,77,'birthday','06/08'),(659,77,'headshot_upload','a:1:{i:0;s:4:\"2063\";}'),(660,77,'home_office','Asheville'),(661,77,'website_bio','Love Where You Live...For me this has always been the most important factor when buying a home. I\'ve lived in many states and always found the journey of finding a new home to be an exciting one. Originally from Michigan, after spending several years in Florida my husband and I wanted to find that perfect place where we could raise a family and get involved in a community diverse and moved to Asheville. Recently making a move to Hickory with our two daughters, I know have the pleasure of working in both areas. Whether buying or selling, I\'d love to bring the knowledge I have and passion for the industry to help you make the right decision for your future.'),(662,77,'comment',''),(663,78,'format','Cecilia| Maria| Ferrari'),(664,78,'phone_number','7047282492'),(665,78,'email_address_6031894746','cferrarihomes@gmail.com'),(666,78,'mls_id','49169'),(667,78,'nc_license','222282'),(668,78,'birthday','10/08'),(669,78,'headshot_upload','a:1:{i:0;s:4:\"2067\";}'),(670,78,'home_office','Kannapolis'),(671,78,'website_bio','I am a native of New Jersey, but I have resided in the Charlotte area since 1996. My husband and I have 2 daughters. When I am not working, I enjoy spending time with my family, getting involved in my community by sponsoring various events throughout the year, reading, playing golf, and traveling. I graduated from Allen Tate real estate school with a Broker’s license in 2004. I have experience in new construction (both professionally and personally), residential sales, nationwide relocation, and investments. Over the years, I have continued my real estate education and have earned several designations such as my ABR (Accredited Buyer\'s Representative) SRS (Seller\'s Representative Specialist) SPS (Strategic Pricing Specialist) &amp; MRP (Military Relocation Professional). I am energetic, detail oriented and driven to succeed. I get great satisfaction out of being able to put my energy into helping people make their best real estate decisions. I work diligently and professionally to coordinate your real estate transaction from start to finish. Whether you are new to the market or an experienced investor, I have the expertise, proven track record, and resources to help you achieve your real estate goals. I promise to give you the professional service you and your family deserve.'),(672,78,'comment',''),(673,79,'format','Casey| Paige| Maness'),(674,79,'phone_number','828-782-0223'),(675,79,'email_address_6031894746','casey.maness@gmail.com'),(676,79,'mls_id','78641'),(677,79,'nc_license','318253'),(678,79,'birthday','12/28'),(679,79,'headshot_upload','a:1:{i:0;s:4:\"2068\";}'),(680,79,'home_office','Asheville'),(681,79,'website_bio','Casey is a North Carolina native and has been living in the amazing Asheville area for 11 years. Western North Carolina is home and Casey knows how captivating the community, lifestyle and beauty of this area which drives families to make it home. Whether you are selling property or looking to buy, let Casey help you make that transition feel as easy as coming home.'),(682,79,'comment',''),(683,80,'format','IIona| | Kenrick'),(684,80,'phone_number','18283988700'),(685,80,'email_address_6031894746','ikenrick990@gmail.com'),(686,80,'mls_id','ITKITK'),(687,80,'nc_license','264347'),(688,80,'birthday','10/08/1953'),(689,80,'headshot_upload','a:1:{i:0;s:4:\"2070\";}'),(690,80,'home_office','Asheville'),(691,80,'website_bio','I\'ve been in all aspects of real estate for well over 20 years. I love working with buyers, sellers and investors. I have worked in the Western North Carolina market for most of those years and always look forward to seeing what the next day brings. I have taught, motivated highly successful agents and teams throughout my tenure. I feel I have found the perfect fit at Lantern. Small town family feel with all the technical benefits. They listen and respond and make our experience one of the best ever. And that is passed on to the agents who do the same for their buyers and sellers. Please feel free to reach out at anytime. I promise you will not be disappointed !'),(692,80,'comment','none'),(693,81,'name','Chris Puckett'),(694,81,'email_address','ch2realty@gmail.com'),(695,81,'phone_number','7042985872'),(696,81,'nature_of_request','Add/Remove Agent'),(697,81,'describe_your_request','please remove Alexandria Bare and Kimberly Howell from our website'),(698,81,'image_upload_7340038198','a:0:{}'),(699,82,'format','Stephanie| E| Morgan'),(700,82,'phone_number','9804323290'),(701,82,'email_address_6031894746','smorgan.carolinas.realty@gmail.com'),(702,82,'mls_id','554047620'),(703,82,'nc_license','304830'),(704,82,'birthday','07/23/1987'),(705,82,'headshot_upload','a:1:{i:0;s:4:\"2108\";}'),(706,82,'home_office','Kannapolis'),(707,82,'website_bio',''),(708,82,'comment',''),(709,83,'name','Kim Drakulich'),(710,83,'email_address','kim@kimsellsconcord.com'),(711,83,'phone_number','704-778-6959'),(712,83,'nature_of_request','Update Agent Profile'),(713,83,'describe_your_request','update profile picture'),(714,83,'image_upload_7340038198','a:1:{i:0;s:4:\"2113\";}'),(715,84,'format','Evelin| lisseth| Hernandez'),(716,84,'phone_number','980-339-6480'),(717,84,'email_address_6031894746','evehernandez79@outlook.com'),(718,84,'mls_id','63794'),(719,84,'nc_license','311627'),(720,84,'birthday','04/30'),(721,84,'headshot_upload','a:1:{i:0;s:4:\"2122\";}'),(722,84,'home_office','Kannapolis'),(723,84,'website_bio','Mother of 3 girls and one grandbaby. Moved from md 4 yrs ago . Helping you to the next chapter in life weather is buying or selling, is my biggest pleasure.'),(724,84,'comment',''),(725,85,'name','Julie Arader'),(726,85,'email_address','juliethebroker@gmail.com'),(727,85,'phone_number','8284506004'),(728,85,'nature_of_request','Update Agent Profile'),(729,85,'describe_your_request','I\'d like to update my bio, I copied it here since there was no place to attach the file. Thanks Asheville and Western North Carolina are great places to live and work, which is why Julie chose to call it home. With roots in Chappaqua, NY, a suburb of NYC, she moved to North Carolina in 1997, then to Asheville in 2005. Real estate is a passion for her and with her background as an Administrative Assistant with a BS in Business Administration/Marketing, and currently a multi-million dollar agent since 2017, it is easy to see why so many have called her for help with buying and selling. Julie has been a part of the Lantern family since May of 2021, but she isn’t just passionate about helping families find their next home. She has volunteered with Energy Savers Network and Habitat for Humanity and loves being a part of other community events. An avid hiker and music fan, when she isn’t in the office, or volunteering, you’ll usually find her at a concert, in the woods, or home enjoying time with her husband Bob and their cats and goats.'),(730,85,'image_upload_7340038198','a:0:{}'),(731,86,'name','Julie Arader'),(732,86,'email_address','juliethebroker@gmail.com'),(733,86,'phone_number','8284506004'),(734,86,'nature_of_request','Update Content'),(735,86,'describe_your_request','Sorry, I have another request, I don\'t see my listing listed, MLS # 3744511 Also my photo is slightly off Thanls'),(736,86,'image_upload_7340038198','a:0:{}'),(737,87,'format','Lezli| Rae| Leath'),(738,87,'phone_number','980-355-2377'),(739,87,'email_address_6031894746','lleath007@gmail.com'),(740,87,'mls_id','70068'),(741,87,'nc_license','308756'),(742,87,'birthday','11/27'),(743,87,'headshot_upload','a:1:{i:0;s:4:\"2123\";}'),(744,87,'home_office','Kannapolis'),(745,87,'website_bio','I was born in Lexington, Kentucky, which might explain my love for horses and all animals. My Dad worked for IBM so I was no stranger to moving. We moved so much, one time I was in three different schools in one year.This experience taught me resiliance and the ability to put myself in my clients shoes while helping them navigate every step of the way. My goal is to make the process a smooth one while keeping stress levels as low as possible. I have spent my adult life in Cabarrus and Mecklenburg Counties. I have always had a passion for beautiful homes and helping people. I am a retired Charlotte Mecklenburg Police Officer where I learned to master very important skills that I use everyday in the Real Estate world. Being an Officer taught me great negotiating and conflict resolution skills and so many more. In my spare time, I love to camp, cook and spend time with my friends and family. I love working in Real Estate and strive to find my clients not just a house but their home. I promise to treat you like I would want someone to treat me or my family.'),(746,87,'comment',''),(747,88,'format','Tan| | Crawford'),(748,88,'phone_number','704-245-3374'),(749,88,'email_address_6031894746','tansproperties@outlook.com'),(750,88,'mls_id','R10497'),(751,88,'nc_license','328889'),(752,88,'birthday','05/30/1970'),(753,88,'headshot_upload','a:1:{i:0;s:4:\"2126\";}'),(754,88,'home_office','Kannapolis'),(755,88,'website_bio',''),(756,88,'comment','I am an agent, that has lived in big cities and small towns. I am pleased to have made my home here in Rowan County for the last 20 years and will be pleased to assist you in finding a special place to make your home as well.'),(757,89,'format','Erin| | Hyman'),(758,89,'phone_number','704-467-1493'),(759,89,'email_address_6031894746','Erinhyman.realty@gmail.com'),(760,89,'mls_id','R13890'),(761,89,'nc_license','344522'),(762,89,'birthday','01/03'),(763,89,'headshot_upload','a:1:{i:0;s:4:\"2135\";}'),(764,89,'home_office','Kannapolis'),(765,89,'website_bio','My name is Erin Hyman. I have lived in Kannapolis all my life, graduating from A.L. Brown and UNCC. With my knowledge of the area, I can help you find the right home for you and your family. I pride myself on being honest, responsive and hardworking. A little about me personally, my husband and I have have two amazing daughters and two sweet cats. I enjoy time with family and friends, workouts and travel. Whether buying a home or selling a home, I am here to help with your real estate goals!'),(766,89,'comment',''),(767,90,'name','Melissa Jackling'),(768,90,'email_address','onlymyrealtormelissa@gmail.com'),(769,90,'phone_number','9806214623'),(770,90,'nature_of_request','Other'),(771,90,'describe_your_request','Chris, please remove the following agents from our website, they are no longer part of Lantern Realty: Kim Howell, Renee Chambers, Alexandria Bare and Meredith Christy We have had a few new agents over the last few week that have told us they filled out and submitted the \'New Agent\' form. Can you add them to the website, please? Thank you'),(772,90,'image_upload_7340038198','a:0:{}'),(773,91,'name','Chris Puckett'),(774,91,'email_address','ch2realty@gmail.com'),(775,91,'phone_number','7042985872'),(776,91,'nature_of_request','Add/Remove Agent'),(777,91,'describe_your_request','Chris, please remove Renee Chambers, Kim Howell, Alexandria Bare, Josh Gonyeau and Meredith Christy from our roster ASAP. Also, , please make sure to add the new agents. I believe Tan Crawford and Erin Hymans profile are complete.'),(778,91,'image_upload_7340038198','a:0:{}'),(779,92,'format','Carmady| King| Kruger'),(780,92,'phone_number','704-223-4842'),(781,92,'email_address_6031894746','carmadykruger@gmail.com'),(782,92,'mls_id','39617'),(783,92,'nc_license','287665'),(784,92,'birthday','10/25'),(785,92,'headshot_upload','a:2:{i:0;s:4:\"2155\";i:1;s:4:\"2156\";}'),(786,92,'home_office','Salisbury'),(787,92,'website_bio','Buying or selling a home is an emotional event, there\'s no way around that. My job is to make it pleasant while negotiating for the best financial outcome for my clients. I love real estate because I truly love helping people. I consider it a great honor to be allowed to represent my clients during one of their most memorable life experiences, the purchase or sale of a home. The absolutely best part of my job isn\'t the paycheck, (although that\'s a necessary part), it\'s the look on my clients\' faces or the sound of their voices when I get to tell them their offer was accepted on the home they fell in love with, or that we have a great offer on the home they are selling. My role is to protect my clients\' interests, and to tirelessly advocate on their behalf. I put 120% of myself into my work! On a more personal note - I was born and raised in the Cotswold area of Charlotte, but have lived in twelve states; Georgia, Kansas, Missouri, Texas, Alaska, South Carolina, Michigan, Pennsylvania, Ohio, Nebraska, Florida and back home to North Carolina! Salisbury has been home for the last 14 years. I\'ve made many good friends along my journey and left a piece of my heart each time we moved. I was active duty Air Force stationed at Elmendorf Air Force Base, Alaska working in Mental Health. I graduated from the University of Michigan with a B.S. in Computer Science with minors in math/marketing, and worked as a software engineer for one of the major software companies before finding my true calling in real estate. I have two grown children, 2 Havanese dogs (Jasper &amp; Henry) that I couldn\'t live without, and a stray cat I rescued from the streets about 12 years ago from behind the Meroney Theatre/Chef Santos (Missy) that thinks she rules the house. I love succulent house plants and have been trying to master the art of not killing them! I\'m losing that battle. When I am not busy with real estate, I enjoy traveling and spending time with family and friends. What makes me unique, as you may be able to tell from my bio is that while I am a people person, I am also analytical. I\'ve had a broad, diverse life experience that I feel has enriched my ability to effectively negotiate and connect with people. I have sold homes in Charlotte, Mooresville, Salisbury, Lexington, High Rock Lake, Ft. Mill, Lancaster SC, Concord, Harrisburg, Davidson, Huntersville, Albemarle, and Statesville and points in between. I am North Carolina &amp; South Carolina licensed. I look forward to helping you with the next chapter of your life! : )'),(788,92,'comment',''),(789,93,'name','Carmady Kruger'),(790,93,'email_address','carmadykruger@gmail.com'),(791,93,'phone_number','704-223-4842'),(792,93,'nature_of_request','Update Agent Profile'),(793,93,'describe_your_request','New agent, just completed the new agent form. I forgot to add my website to the BIO. Could you please add at the top under \"About Carmady Kruger\" - \"Please visit my website at www.CarmadyKruger.com\" Or similar? Thank you!'),(794,93,'image_upload_7340038198','a:0:{}'),(795,94,'name','Chris Puckett'),(796,94,'email_address','ch2realty@gmail.com'),(797,94,'phone_number','7042985872'),(798,94,'nature_of_request','Update Agent Profile'),(799,94,'describe_your_request','please update Min Zhangs profile. add this link http://www.istockphoto.com/portfolio/minzhang and remove http://www.500px.com/minzhang.'),(800,94,'image_upload_7340038198','a:0:{}'),(801,95,'format','Brittney| | Steele'),(802,95,'phone_number','9804397761'),(803,95,'email_address_6031894746','brittsteelerealty@gmail.com'),(804,95,'mls_id','552502139'),(805,95,'nc_license','335904'),(806,95,'birthday','06/08'),(807,95,'headshot_upload','a:1:{i:0;s:4:\"2195\";}'),(808,95,'home_office','Kannapolis'),(809,95,'website_bio',''),(810,95,'comment',''),(811,96,'format','Aaron| | Forsyth'),(812,96,'phone_number','7049890799'),(813,96,'email_address_6031894746','aaronkforsyth@gmail.com'),(814,96,'mls_id','73985'),(815,96,'nc_license','311613'),(816,96,'birthday','07/26'),(817,96,'headshot_upload','a:1:{i:0;s:4:\"2198\";}'),(818,96,'home_office','Harrisburg'),(819,96,'website_bio','After working with a few different real estate agents and purchasing several properties - both primary homes and investment properties - Aaron decided to obtain a real estate license himself. He and his middle school sweetheart, Ashley, have four children and live in the University Area of Charlotte. Aaron and his family are actively involved in homeschooling their children and in their church. Aaron is also active in F3, a men’s workout group, with which he has begun running ultramarathons. He recently completed his first 100 mile run. Aaron is an alumnus of UNC Charlotte, where he earned both his bachelors and masters degrees. He began working for UNC Charlotte in 2008, where he served in several IT roles over the last several years. As a Realtor, he loves to combine his love for technology and real estate to help others whenever and wherever he can.'),(820,96,'comment',''),(821,97,'format','Charity| K| Meachum'),(822,97,'phone_number','9805212193'),(823,97,'email_address_6031894746','ckmeachum15@gmail.com'),(824,97,'mls_id','68751'),(825,97,'nc_license','306321'),(826,97,'birthday','12291985'),(827,97,'headshot_upload','a:1:{i:0;s:4:\"2201\";}'),(828,97,'home_office','Kannapolis'),(829,97,'website_bio','I am a people person by nature. I have a desire and passion in helping others. I love everything about Real Estate. I have a background in construction, working hand and hand with my husband, who is a General Contractor, and over 20 years in customer\'s service. My husband and I have 6 beautiful kids and we enjoy seeing others build a family in their dream home.'),(830,97,'comment',''),(831,98,'format','Amy| | Bundy'),(832,98,'phone_number','980-292-3775'),(833,98,'email_address_6031894746','amybundy1@gmail.com'),(834,98,'mls_id','82579'),(835,98,'nc_license','320846'),(836,98,'birthday','06/26/1971'),(837,98,'headshot_upload','a:1:{i:0;s:4:\"2205\";}'),(838,98,'home_office','Kannapolis'),(839,98,'website_bio',''),(840,98,'comment',''),(841,99,'format','Chad| | Rothlin'),(842,99,'phone_number','828-302-0901'),(843,99,'email_address_6031894746','rothlinrealty@gmail.com'),(844,99,'mls_id','*None yet'),(845,99,'nc_license','335944'),(846,99,'birthday','08/14'),(847,99,'headshot_upload','a:1:{i:0;s:4:\"2211\";}'),(848,99,'home_office','Kannapolis'),(849,99,'website_bio','Hey, I\'m Chad Rothlin and my passion is helping people! I taught special education for 9 years before venturing into the world of real estate and accounting. Being able to simplify math and financial concepts can make an investing or home buying process much easier. I currently live in Kannapolis and have lived in the University City area and Hickory prior to moving here in 2018 with my wife, so I\'m very familiar with the surrounding area. My family is my greatest source of motivation. I\'m married to a wonderful woman (Jessica) and have two amazing children (Dawson &amp; Lyla). They are the reason I decided to pursue real estate, investing, and financial freedom. If you have similar goals, let\'s talk! I also know the importance of being a team player as I was a former member of the Charlotte 49ers baseball team. I look forward to teaming up with you in your real estate adventures!'),(850,99,'comment',''),(851,100,'name','Ivan Henrickson'),(852,100,'email_address','ivanbhenrickson@gmail.com'),(853,100,'phone_number','7043097841'),(854,100,'nature_of_request','Update Agent Profile'),(855,100,'describe_your_request','Please update with new headshot. Thanks!'),(856,100,'image_upload_7340038198','a:0:{}'),(857,101,'name','Holden Sides'),(858,101,'email_address','hbsidesrealty@gmail.com'),(859,101,'phone_number','7046992092'),(860,101,'nature_of_request','Update Agent Profile'),(861,101,'describe_your_request','Add Personal Description Hi! Thank you for taking the time to see a little about me and what I am all about! I was born and raised in China Grove and has many family connections in Cabarrus and Rowan. A graduate of Catawba College, I have worked in customer service, the financial industry, and now a licensed Realtor® for over a year. I have gained a lot of experience in my first year helping buyers, sellers, and investors throughout the region. I have really enjoyed my time working for and with my clients, getting them the best out of their real estate journey! I would love to add you to my list of clients! Thanks'),(862,101,'image_upload_7340038198','a:1:{i:0;s:4:\"2226\";}'),(863,102,'format','Jamie| | Stewart'),(864,102,'phone_number','704-307-9890'),(865,102,'email_address_6031894746','jamie.stewart2121@gmail.com'),(866,102,'mls_id','31524'),(867,102,'nc_license','277726'),(868,102,'birthday','07/05'),(869,102,'headshot_upload','a:1:{i:0;s:4:\"2231\";}'),(870,102,'home_office','Harrisburg'),(871,102,'website_bio',''),(872,102,'comment',''),(873,103,'name','Jessica Cloward'),(874,103,'email_address','jessicacloward1@gmail.com'),(875,103,'phone_number','7035028383'),(876,103,'nature_of_request','Other'),(877,103,'describe_your_request','Hi can we change my profile picture?'),(878,103,'image_upload_7340038198','a:1:{i:0;s:4:\"2232\";}'),(879,104,'name','Ivan Henrickson'),(880,104,'email_address','ivanbhenrickson@gmail.com'),(881,104,'phone_number','7043097841'),(882,104,'nature_of_request','Update Agent Profile'),(883,104,'describe_your_request','Ivan Henrickson is a native of the Charlotte / Mecklenburg and Cabarrus County region. He attended nearby University of North Carolina at Charlotte, where he completed his Master\'s before embarking into the healthcare arena at a couple of our regions finest medical centers. He is a Cabarrus County native who resides in the very community he serves with his wife and three kids. Ivan enjoys playing sports, cheering on local NFL and NBA teams and serving / coaching in youth sports with his kids. Ivan has always had a passion for real estate which has allowed him to serve area residents in the home buying / selling process. He wants clients to know, \"As a Realtor, my first priority is to make my clients happy. I listen to my clients wants and needs to achieve the best outcome in every transaction and I strive to ensure that the home buying or selling process is as fun, easy and stress-free. My clients can count on me any time of day when they have a question or concern.\"'),(884,104,'image_upload_7340038198','a:0:{}'),(885,105,'format','Melissa| Shannon| Morefield-Valley'),(886,105,'phone_number','704-798-0726'),(887,105,'email_address_6031894746','RealEstate@MelissaValley.com'),(888,105,'mls_id','unknown'),(889,105,'nc_license','211740'),(890,105,'birthday','07/03'),(891,105,'headshot_upload','a:1:{i:0;s:4:\"2235\";}'),(892,105,'home_office','Salisbury'),(893,105,'website_bio','Don\'t miss out, let\'s make your dreams come true! Melissa, licensed in 2003, is a Relator &amp; Broker. She has chosen Lantern Realty &amp; Development for their amazing culture and believes. Melissa is the Founder and CEO of 3 with MV, LLC a holistic/spiritual based business; which includes VRE (Valley Real Estate) and (VIP) Valley Investment Properties. She holds a MBA and a Bachelors Degree in Human Resources. She started her career as a temp at local real estate company back in 1997. She moved into an apartment on a Tax Credit community and fell in love with the staff and industry, and work her way through the ranks of the property management and asset management field. She has a total of over 25 years of experience in both single family and multi-family housing. She has worked along side many property management companies, asset management companies, syndicators, Investors, Developers, and Lenders. Melissa is passionate about helping people and assisting them in achieving their dreams. Melissa is committed to loving all people and making sure the are treated with respect and kindness. Melissa is a native to Salisbury and lives here with her husband Troy Valley. Troy owns his own property preservation and handyman company that is committed to excellence. They has a wild cat named \"Shu-Shu\" and a poodle named \"Froto\". They have two amazing children; Marc and Madison. Melissa has earned the name of \"Gran-nay\" with (8) grandchildren and a 9th on the way. Melissa\'s favorite place is the beach and she loves Christmas so much, her tree stays up year round. Melissa is a Breast Cancer Warrior with a passion to make sure others get their mammograms. She is a member of Cornerstone Church and serves on the Events Committee for Rowan Pregnancy Support Center. She also has a desire to help the homeless and less fortunate. Melissa has pledged to donate a percentage of all her earning to these charities. Whether buying, selling, renting, investing, or property management; Melissa is here for you.'),(894,105,'comment',''),(895,106,'name','Melissa Jackling'),(896,106,'email_address','onlymyrealtormelissa@gmail.com'),(897,106,'phone_number','9806214623'),(898,106,'nature_of_request','Add/Remove Agent'),(899,106,'describe_your_request','Please remove Priscilla Johnson from the website, she is no longer affiliated with Lantern Realty. Thank you'),(900,106,'image_upload_7340038198','a:0:{}'),(901,107,'format','Stephanie| | Knight'),(902,107,'phone_number','3368176542'),(903,107,'email_address_6031894746','sknightrealty@gmail.com'),(904,107,'mls_id','237482'),(905,107,'nc_license','237482'),(906,107,'birthday','10/10/1977'),(907,107,'headshot_upload','a:1:{i:0;s:4:\"2239\";}'),(908,107,'home_office','Other (specify in comments)'),(909,107,'website_bio','Stephanie Knight is a seasoned Realtor born and raised in the Triad. She is a graduate of UNC Chapel Hill and has been in Real Estate off and on since 2006. She lives in Lewisville and loves to help buyers and sellers. She is a member of the Winston-Salem Realtors Association.'),(910,107,'comment','Lexington'),(911,108,'name','Melissa Jackling'),(912,108,'email_address','onlymyrealtormelissa@gmail.com'),(913,108,'phone_number','9806214623'),(914,108,'nature_of_request','Add/Remove Agent'),(915,108,'describe_your_request','Please remove agents, Jeff Franklin and Priscilla Johnson - they are no longer affiliated with Lantern Realty and need to be removed from the website ASAP. Thank you'),(916,108,'image_upload_7340038198','a:0:{}'),(917,109,'format','Benjamin| Allen| Surratt'),(918,109,'phone_number','704-640-3858'),(919,109,'email_address_6031894746','bensurratt.realtor@gmail.com'),(920,109,'mls_id','R14737'),(921,109,'nc_license','333992'),(922,109,'birthday','02/11'),(923,109,'headshot_upload','a:1:{i:0;s:4:\"2241\";}'),(924,109,'home_office','Salisbury'),(925,109,'website_bio','Ben has resided in the Rowan and Cabarrus County area of North Carolina for over 30 years in cities such as Salisbury, Kannapolis, Mt. Ulla, and Richfield. He currently resides on High Rock Lake with his wife Dana and two of their four sons – Tyler and Alan, and their Great Dane - Karma. Their oldest son, Austin, is a Police Officer, and the next oldest, Dakota, is serving in the US ARMY. Having been in the metals industry for over 20 years in roles such as Inside Sales, Territory Manager, as well as a Purchasing Manager, he decided that it was time to chase a dream of being involved in Real Estate by helping people with one of the most important aspects of life – Home Ownership. Ben is eager to help you buy or sell your next property.'),(926,109,'comment',''),(927,110,'name','Julie Nutter'),(928,110,'email_address','teamnutter@gmail.com'),(929,110,'phone_number','2408887493'),(930,110,'nature_of_request','Update Agent Profile'),(931,110,'describe_your_request','Update picture'),(932,110,'image_upload_7340038198','a:0:{}'),(933,111,'name','Julie Nutter'),(934,111,'email_address','teamnutter@gmail.com'),(935,111,'phone_number','2408887493'),(936,111,'nature_of_request','Update Agent Profile'),(937,111,'describe_your_request','Update pic'),(938,111,'image_upload_7340038198','a:1:{i:0;s:4:\"2243\";}'),(939,112,'name','Annie Boger Kamp'),(940,112,'email_address','annie.homes4u@gmail.com'),(941,112,'phone_number','9805213988'),(942,112,'nature_of_request','Update Agent Profile'),(943,112,'describe_your_request','Change name on website from Annie Boger to Annie Boger Kamp.'),(944,112,'image_upload_7340038198','a:0:{}'),(945,113,'name','Amy Bundy'),(946,113,'email_address','amybundy1@gmail.com'),(947,113,'phone_number','980.292.3775'),(948,113,'nature_of_request','Other'),(949,113,'describe_your_request','Good afternoon! I am new to Lantern. I need to submit an updated picture for my website. It hasn\'t been created yet but I don\'t want to use the picture that was originally submitted. What is the time frame for adding websites when new brokers join?'),(950,113,'image_upload_7340038198','a:1:{i:0;s:4:\"2245\";}'),(951,114,'name','Katherine Lawing'),(952,114,'email_address','klawingrealtor@gmail.com'),(953,114,'phone_number','828-772-0220'),(954,114,'nature_of_request','Update Content'),(955,114,'describe_your_request',''),(956,114,'image_upload_7340038198','a:1:{i:0;s:4:\"2248\";}'),(957,115,'name','Melissa Jackling'),(958,115,'email_address','onlymyrealtormelissa@gmail.com'),(959,115,'phone_number','9806214623'),(960,115,'nature_of_request','Add/Remove Agent'),(961,115,'describe_your_request','We have three agents that need removed asap from Lantern\'s webpage: Priscilla Johnson, Jeff Franklin, and Chuck Thompson They are no longer part of Lantern Realty. Thank you'),(962,115,'image_upload_7340038198','a:0:{}'),(963,116,'format','Colleen| | Crane'),(964,116,'phone_number','8282732025'),(965,116,'email_address_6031894746','colleencranencrealtor@gmail.com'),(966,116,'mls_id','1223'),(967,116,'nc_license','228345'),(968,116,'birthday','12/23'),(969,116,'headshot_upload','a:1:{i:0;s:4:\"2253\";}'),(970,116,'home_office','Kannapolis'),(971,116,'website_bio','“Almost” a native of Western North Carolina, I moved to Asheville 42 years ago and there’s been no looking back! In 2005 I entered the world of real estate and that decision has been one of the most rewarding decisions of my life. Sharing all the different areas and what they have to offer has been one of my joys and strong points as a realtor. I also like sharing my years’ of knowledge regarding contracts and the nuances of what it all means. In addition, I seriously embrace all my fiduciary duties. I will work with you in the highest of duty with good faith, fairness, loyalty, and above all, honesty. If it’s time for a new address, I would love to help you and guide you to your new home!'),(972,116,'comment',''),(973,117,'format','Sarah| Grace| Horn'),(974,117,'phone_number','704-223-1789'),(975,117,'email_address_6031894746','horngsarah8648@gmail.com'),(976,117,'mls_id','R15654'),(977,117,'nc_license','336632'),(978,117,'birthday','04/01'),(979,117,'headshot_upload','a:1:{i:0;s:4:\"2255\";}'),(980,117,'home_office','Kannapolis'),(981,117,'website_bio','My name is Sarah Horn. I was born and raised in North Carolina for the past 35 years. I’ve been married for 16 years and we’re blessed with two children. I have always dreamed of working in Real Estate and I’m finally following my dream. I’m currently a EC Teacher Assistant. I love to help other people in the community each and everyday.'),(982,117,'comment',''),(983,118,'name','Marguerite Keller'),(984,118,'email_address','margkellerhomes@gmail.com'),(985,118,'phone_number','7042452739'),(986,118,'nature_of_request','Update Content'),(987,118,'describe_your_request','Please add the following bio to my profile in the directory: Buying and selling real estate can be quite stressful. A Realtor’s® job is to help you navigate through the process smoothly. Marguerite has a proven track record of going the extra mile to help you do just that. As a first-time homebuyer, she can help you navigate the loan qualification process and then can help you build the home you want or find one already built in the area you desire. If you have a home to sell, she is part of a team of experts ready to prepare your home to sell quickly and for top dollar. Contact her today to start the process. Through her training and experience with seniors, Marguerite works extensively with folks who are retired or nearing retirement. She is part of a team of professionals who can provide an array of helpful services often sought by seniors. Call her today and let her walk with you through this important transition. If you are selling real estate as part of an estate settlement, she also has specific training and experience to help you successfully complete this process. Marguerite has worked with several estate attorneys in the northern Charlotte metroplex, helping executors quickly dispose of real estate they must sell. If you are between these stages of life and need to buy or sell a home, reach out to Marguerite. She works hard to stay abreast of local trends and inventory, so she knows how to find homes in your niche, and also knows how to position your home to sell. She will help navigate the myriad details, such as pricing, staging for top dollar, financing, negotiating for your best outcome, inspections, and paperwork. Her passion is to serve you based on what YOU want or need. Her former clients often tout her integrity, her exceptional communication skills, and her ability to make the process smooth. Marguerite grew up in Northern Virginia, has lived in Winston-Salem, NC; Vancouver, BC; and Castle Rock, CO. She currently lives near Salisbury, NC with her husband. Give her a call today. Thank you!'),(988,118,'image_upload_7340038198','a:0:{}'),(989,119,'name','Brianne Watson'),(990,119,'email_address','briannewatsonrealtor@gmail.com'),(991,119,'phone_number','17047913272'),(992,119,'nature_of_request','Update Content'),(993,119,'describe_your_request','Need to add the following Bio please: Brianne is a life-long resident of Rowan County and resides in China Grove. An honor graduate of South Rowan High School, she also attended Catawba College and Superior School of Real Estate. She is very family-oriented, loves making fun memories with her niece and three nephews, and is dog-mom to her fur babies Dutch and Chaos. In addition to real estate, she likes to spend her time hiking, snowboarding, and traveling the world. She earned her NC Real Estate license in 2016 and began a career that she absolutely fell in love with! Offering a full-time residential service to both buyers and sellers, she strives to always bring the best customer service to her clients. Her dedication, stellar work ethic, attention to detail, and drive to succeed have allowed her business to flourish. She is loyal, exceptionally knowledgeable in her field, stays on top of communication, and an excellent negotiator. Brianne is definitely the agent that you want representing you and in your corner!'),(994,119,'image_upload_7340038198','a:1:{i:0;s:4:\"2333\";}'),(995,120,'format','Christie| | Hill'),(996,120,'phone_number','828-989-0484'),(997,120,'email_address_6031894746','8christina.hill@gmail.com'),(998,120,'mls_id','67459'),(999,120,'nc_license','299472'),(1000,120,'birthday','12/16'),(1001,120,'headshot_upload','a:1:{i:0;s:4:\"2335\";}'),(1002,120,'home_office','Asheville'),(1003,120,'website_bio','Originally from Florida, I started a new chapter in my life in 2016, when I moved to Asheville, following my daughter who has lived here for over 12 years. I love the mountains, gorgeous weather, and the endless variety of flora and fauna. The fact that the lifestyle was also more friendly and easy-going, was an absolute bonus! Pursuing a career in Real Estate felt like a natural progression from my previous position, which was helping my husband operate his successful business in the construction industry. As I loved helping him realize his dream, I thought how satisfying it would be to help others to find the home of their dreams! When I’m not engaged in Real Estate, you will find me enjoying the day with my husband and our dog, tending to my indoor succulent collection, or traveling to new sites with our daughter, who has shown and taught me so much about the WNC area. As most of my free time is spent at home, I understand the importance of having a home where you can be comfortable and do all the things that you enjoy most! My greatest offerings are my loyalty, integrity and genuine care for people. I will stay in constant communication with you and will strive endlessly to go above the norm to ensure a happy and satisfying outcome for everyone involved. It will be my pleasure to assist you in starting a new chapter in YOUR life, whether it’s buying a home or selling a home. Let me show you how I will work tirelessly to help you achieve your dreams!'),(1004,120,'comment',''),(1005,121,'name','Chris Puckett'),(1006,121,'email_address','ch2realty@gmail.com'),(1007,121,'phone_number','7042985872'),(1008,121,'nature_of_request','Update Content'),(1009,121,'describe_your_request','Hey Chris, can you add the Lexington and Raleigh office to our website. Let me know what info you need to get this done.'),(1010,121,'image_upload_7340038198','a:0:{}'),(1011,122,'format','Stephanie| | Knight'),(1012,122,'phone_number','3368176542'),(1013,122,'email_address_6031894746','sknightrealty@gmail.com'),(1014,122,'mls_id','237482'),(1015,122,'nc_license','237482'),(1016,122,'birthday','10/10/1977'),(1017,122,'headshot_upload','a:1:{i:0;s:4:\"2341\";}'),(1018,122,'home_office','Kannapolis'),(1019,122,'website_bio','Stephanie was born and raised in the Triad and currently lives in Lewisville, NC. She has lived in Winston-Salem, Clemmons and Lewisville. Stephanie graduated from UNC Chapel Hill and has had a career in sales and non-profit fundraising. She has been a Realtor periodically since 2006. She is an expert in Triad Real Estate and is ready to guide you to your dream home!'),(1020,122,'comment',''),(1021,123,'format','Jessica| | Eudy'),(1022,123,'phone_number','980-521-2950'),(1023,123,'email_address_6031894746','eudyrealestate@gmail.com'),(1024,123,'mls_id','78417'),(1025,123,'nc_license','318003'),(1026,123,'birthday','04/18'),(1027,123,'headshot_upload','a:1:{i:0;s:4:\"2355\";}'),(1028,123,'home_office','Kannapolis'),(1029,123,'website_bio','Welcome! I\'m thrilled you\'ve found me and I\'d love to help you prepare for the best real estate experience possible! My roots run deep in Cabarrus County - born and raised here. My heart is ecstatic to see downtown Kannapolis come back to life and our county grow at the rate it has through my lifetime! This community is home to my family, church and my business. When I\'m not helping you buy or sell a house, you can find me at games with my son, concerts with my hubby, serving at Sojo Church, or at Lovely Lines Boutique (my other passion). I\'m obsessed with great customer service so expect nothing less. I\'m excited to help you through one of the most important decisions in life!'),(1030,123,'comment',''),(1031,124,'name','Melissa Jackling'),(1032,124,'email_address','onlymyrealtormelissa@gmail.com'),(1033,124,'phone_number','980-621-4623'),(1034,124,'nature_of_request','Add/Remove Agent'),(1035,124,'describe_your_request','Please remove Sandi Laney from the website, she is no longer affiliated with Lantern Realty. Also, please move Colleen Crane from the Kannapolis office and add her under the Asheville office. Thank you much!'),(1036,124,'image_upload_7340038198','a:0:{}'),(1037,125,'format','Melinda| R| Mesimerr'),(1038,125,'phone_number','9805816077'),(1039,125,'email_address_6031894746','melindarmesimer@gmail.com'),(1040,125,'mls_id','60015'),(1041,125,'nc_license','298085'),(1042,125,'birthday','05/02'),(1043,125,'headshot_upload','a:1:{i:0;s:4:\"2646\";}'),(1044,125,'home_office','Kannapolis'),(1045,125,'website_bio','Just a little about myself---My husband Danny and I have been married for over 34 years. We have 2 amazing children, our daughter in law and first grandbaby, who we absolutely adore! My desire in life is to be of help to people whenever possible and I have found that working in Real Estate has enabled me to do just that! Since beginning my Real Estate career, I have tried my best to make sure those I am helping KNOW that I truly care about THEM, not just the transaction. To me they are never just clients, but they are new Friends! I love working with people who are looking for a new home whether it is a first time home buyer or a seasoned buyer, and listening to their wants/needs is something that I take seriously and helps me to guide them in the right way. Also, constant communication is the key to success in all aspects of life and is an essential part of the Real Estate world. Keeping clients up to date throughout the entire process is my main goal! I would love to help you or anyone you may know that is wanting to buy or sale!!'),(1046,125,'comment',''),(1047,126,'format','Megan| | Owens'),(1048,126,'phone_number','7048522597'),(1049,126,'email_address_6031894746','megstherealtor@gmail.com'),(1050,126,'mls_id','R16821'),(1051,126,'nc_license','337563'),(1052,126,'birthday','07/01'),(1053,126,'headshot_upload','a:1:{i:0;s:4:\"2649\";}'),(1054,126,'home_office','Kannapolis'),(1055,126,'website_bio','My name is Megan and I am a native of Locust, North Carolina, born and raised. Stanly County is where my roots are but my desire to branch out is is in full bloom. I have worked in the mental health and substance abuse field since 2008, my career is very rewarding. I enjoy helping others become the best version of themselves. My plan is to continue serving the community by helping others achieve their goals of homeownership and relocation. It is my belief that every one should have a place they can call home and I am here to help make that happen.'),(1056,126,'comment',''),(1057,127,'format','Melinda| R| Mesimer'),(1058,127,'phone_number','980-581-6077'),(1059,127,'email_address_6031894746','melindarmesimer@gmail.com'),(1060,127,'mls_id','60015'),(1061,127,'nc_license','298085'),(1062,127,'birthday','05/02'),(1063,127,'headshot_upload','a:1:{i:0;s:4:\"2650\";}'),(1064,127,'home_office','Kannapolis'),(1065,127,'website_bio','Just a little about myself---My husband Danny and I have been married for over 34 years. We have 2 amazing children, our daughter in law and first grandbaby, who we absolutely adore! My desire in life is to be of help to people whenever possible and I have found that working in Real Estate has enabled me to do just that! Since beginning my Real Estate career, I have tried my best to make sure those I am helping KNOW that I truly care about THEM, not just the transaction. To me they are never just clients, but they are new Friends! I love working with people who are looking for a new home whether it is a first time home buyer or a seasoned buyer, and listening to their wants/needs is something that I take seriously and helps me to guide them in the right way. Also, constant communication is the key to success in all aspects of life and is an essential part of the Real Estate world. Keeping clients up to date throughout the entire process is my main goal! I would love to help you or anyone you may know that is wanting to buy or sale!!'),(1066,127,'comment',''),(1067,128,'name','Ashley Ferlauto'),(1068,128,'email_address','ashleyferlauto@gmail.com'),(1069,128,'phone_number','9803338085'),(1070,128,'nature_of_request','Update Content'),(1071,128,'describe_your_request','On the TN office--please change the town name to Elizabethton (nix the \'w\') Change office # to 423-512-4050 Please add me on this office as Principal Broker (keep me listed on the Kannapolis office)'),(1072,128,'image_upload_7340038198','a:1:{i:0;s:4:\"2651\";}'),(1073,129,'name','Dawn Fisher'),(1074,129,'email_address','dawnfisher.ncrealtor@gmail.com'),(1075,129,'phone_number','7274522245'),(1076,129,'nature_of_request','Update Agent Profile'),(1077,129,'describe_your_request','Please use attached agent photo'),(1078,129,'image_upload_7340038198','a:1:{i:0;s:4:\"2653\";}'),(1079,130,'format','Colleen| | Viteri'),(1080,130,'phone_number','704-960-3621'),(1081,130,'email_address_6031894746','colleenviterirealtor@gmail.com'),(1082,130,'mls_id','R17098'),(1083,130,'nc_license','338380'),(1084,130,'birthday','02/19'),(1085,130,'headshot_upload','a:1:{i:0;s:4:\"2655\";}'),(1086,130,'home_office','Kannapolis'),(1087,130,'website_bio','My name is Colleen Viteri and I\'m excited to work with you on finding your dream home! I have been in the Customer Service business since 2000. I am very passionate about helping people and will go above and beyond to fulfill your expectations. I currently live in Mt Pleasant with my husband and two children. I have lived in Cabarrus County since 2010 and absolutely love the community. Looking forward to building long lasting relationships!'),(1088,130,'comment',''),(1089,131,'format','Alexis| Devine| Smith'),(1090,131,'phone_number','7042234228'),(1091,131,'email_address_6031894746','alexisdevinesmith@gmail.com'),(1092,131,'mls_id','Na'),(1093,131,'nc_license','339491'),(1094,131,'birthday','03/20/2022'),(1095,131,'headshot_upload','a:1:{i:0;s:4:\"2662\";}'),(1096,131,'home_office','Salisbury'),(1097,131,'website_bio','Alexis has lived in Salisbury for her whole life. Her goal for her real estate career is to help people make their dreams come true. She is a 2020 graduate from East Rowan High School. Alexis’s favorite place to vacation is the beach and Disney World. She loves animals, hanging out with my family, and helping anyway she can. I would love to offer my services to help you buy or sell a home. She attended Rowan Cabbarous Community College and realized my real passion was Real Estate. My job is to help make this experience pleasant for you so that you can enjoy it. I look forward to helping you in this amazing step in your life'),(1098,131,'comment','I’m so blessed to have this opportunity to work with you guys. I’m very excited about my career and couldn’t be happier to be part of this team!'),(1099,132,'format','Mitzi| Mcdaniel| Smith'),(1100,132,'phone_number','7042234229'),(1101,132,'email_address_6031894746','mitzitimalexis@yahoo.com'),(1102,132,'mls_id','na'),(1103,132,'nc_license','337140'),(1104,132,'birthday','09/25/1974'),(1105,132,'headshot_upload','a:1:{i:0;s:4:\"2664\";}'),(1106,132,'home_office','Salisbury'),(1107,132,'website_bio','Mitzi is a native to Rowan County and a graduate of East Rowan High.  For many years she was a stay at home mother, dedicated to her family.  She has also worked for McDaniel Awning Company. Mitzi loves to vacation at the beach and spend time with family and friends.  Mitzi and her daughter became agents together and plan to work hard and show their determination to represent you.  Mitzi loves utilizing her skills and knowledge to help others achieve their dreams! With excellent customer service experience and access to a large team with knowledge, working with Mitzi means you will be in good hands!'),(1108,132,'comment','I am blessed to have this opportunity to work with amazing agents and get to help people find a dream home. Thank you for this opportunity'),(1109,133,'format','Andrew| Jason| Wetherbee'),(1110,133,'phone_number','7047965738'),(1111,133,'email_address_6031894746','aweth.93@gmail.com'),(1112,133,'mls_id','R17429'),(1113,133,'nc_license','339304'),(1114,133,'birthday','11/14/1998'),(1115,133,'headshot_upload','a:1:{i:0;s:4:\"2689\";}'),(1116,133,'home_office','Kannapolis'),(1117,133,'website_bio','Hey! My name is Andrew, but everyone calls me AJ. Me and my lovely wife were both raised in Charlotte/ Concord area and just purchased a house in 2020, we have one son with another on the way! I started my real estate journey for the simple reason that I love meeting new people and making lasting relationships. My main goal is to help you find a perfect place to call home with as little stress as possible. Beyond that, I promise to work tirelessly so that you can have a wonderful and unforgettable experience! In the past I have worked in landscaping, and I was a Sales office manager for a residential solar company. With my former experience, I gained ample understanding and knowledge about the Charlotte/ Concord area, and I am confident in taking on the huge responsibility of finding you your perfect home! Just reach out to me anytime and we will begin your new and exciting journey.'),(1118,133,'comment',''),(1119,134,'name','Ashley Ferlauto'),(1120,134,'email_address','ashleyferlauto@gmail.com'),(1121,134,'phone_number','9803338085'),(1122,134,'nature_of_request','Add/Remove Agent'),(1123,134,'describe_your_request','We still need Tanner Barb added to the website under TN agents and the TN office needs to be added to the \"The Lantern Team\" page, please. Here\'s his bio and pic in case you don\'t have it from previous requests. Thank you! Jacob Tanner Barb is an accomplished and seasoned professional with a strong interest in the real estate business. He holds an MBA as well as a Bachelor of Science degree in Nursing. Tanner\'s career has been spent mostly in bedside nursing as a registered pediatric nurse, as well as in various roles in healthcare administration at a number of top healthcare systems. However, one of his greatest hobbies has always been the real estate market. As a seasoned specialist, he has extensive understanding of real estate purchasing and selling in many places. He is also a member of the National Association of Realtors (NAR), the Northeast Tennessee Association of Realtors (NETAR), and the Tennessee/Virginia Regional Multiple Listing Service (TN/VA Regional MLS). Tanner is a professional and highly experienced real estate agent that is committed to providing the highest standards of professionalism and service to home buyers, sellers, renters, and developers. Tanner uses his education and key skills to provide best-in-class real estate buying and selling services to all clients, from informing them about pricing, positioning, and marketing strategies that will assist them in buying and selling their real estate properties to negotiating deals on their behalf. Tanner has been a long-standing part of the Tri-Cities community. He was born and raised in Elizabethton and is thrilled to be directing his community\'s attention to real estate. Tanner is eager to assist you with your homebuying and selling requirements in the Tri-Cities and neighboring areas. Tanner, a proud member of the Lantern Realty and Development family, integrates his work with the ideals of hard work, ethics, and exceptional customer service. Tanner enjoys hiking in the gorgeous Appalachian Mountains and traveling around the globe when he is not fulfilling his clients\' homeownership goals. Maybe you will see him on the trail one day!'),(1124,134,'image_upload_7340038198','a:1:{i:0;s:4:\"2695\";}'),(1125,135,'format','Andrew| J| Wetherbee'),(1126,135,'phone_number','7047965738'),(1127,135,'email_address_6031894746','Ajwetherbeerealty@gmail.com'),(1128,135,'mls_id','R17429'),(1129,135,'nc_license','339304'),(1130,135,'birthday','11/14/1998'),(1131,135,'headshot_upload','a:1:{i:0;s:4:\"2698\";}'),(1132,135,'home_office','Kannapolis'),(1133,135,'website_bio','Hey everyone! My name is AJ Wetherbee, and I’m very excited to be joining the Lantern team. I currently live in Charlotte with my wife and son, and one on the way! Helping people has always been something I love doing, and now I get to make it my profession. With my previous experience as a sales manager for solar installations, combined with my knowledge of the Charlotte area, I’m confident I’ll be able to help people find the best deals and have the least amount of hassle.'),(1134,135,'comment',''),(1135,136,'name','Michael J. King B.S. Adv. M.Ed. AHWD C2EX'),(1136,136,'email_address','TheKingSellsTheDream@gmail.com'),(1137,136,'phone_number','704-450-3936'),(1138,136,'nature_of_request','Update Agent Profile'),(1139,136,'describe_your_request','I would like to add a picture and bio to the website please and thank you. Hello, My name is Michael King and I have lived in the Greater Charlotte area since 2004. I am a proud University of Florida graduate (Go Gators!) I have held an active real estate license since 1986 and have been licensed and full-time in North Carolina since 2015. I am National Association of Realtors At Home With Diversity certified and also recognized with the Committment to Excellence (C2EX) designation. I have been a Cabarrus County resdient for the past 10 years and I have also lived in the Lake Norman Area previous to that. My wife Angie and I live in Concord where you may have seen her as your local pharmacist at TrueCare Pharmacy. I know the area well and have many years of helping people find their dream home. I always try to make the process as easy for you and as stress free as possible. I have a great team of resources behind me to help with all aspects of the transaction. Just remember, CALL THE KING! Together we can make dreams come true for you!'),(1140,136,'image_upload_7340038198','a:1:{i:0;s:4:\"2701\";}'),(1141,137,'name','Jessica Eudy'),(1142,137,'email_address','eudyrealestate@gmail.com'),(1143,137,'phone_number','980-521-2950'),(1144,137,'nature_of_request','Add/Remove Agent'),(1145,137,'describe_your_request','Please add me to team page. I’d like to be able to link to website on marketing pieces.'),(1146,137,'image_upload_7340038198','a:0:{}'),(1147,138,'format','Shanise| B.| Davis'),(1148,138,'phone_number','704-224-3260'),(1149,138,'email_address_6031894746','sblackmon08@gmail.com'),(1150,138,'mls_id','17439'),(1151,138,'nc_license','339240'),(1152,138,'birthday','07/07'),(1153,138,'headshot_upload','a:1:{i:0;s:4:\"2725\";}'),(1154,138,'home_office','Kannapolis'),(1155,138,'website_bio','Hi there! My name is Shanise. North Carolina native, born and raised in good ole\' Kannapolis, NC. Serving others has always been a driving force in my life. For 12 years, I have enjoyed being a Licensed Mental Health Therapist for Kannapolis City and surrounding counties. I have worked with fantastic Individuals, Families, and local community heroes! I understand that Real Estate is not merely just a business transaction, but also a meaningful and memorable moment in someone\'s life. Picking the right Realtor will make a huge difference in making your journey with real estate a stress-free one. If you’re looking for a positive, teammate who will guide you home stress-free, while providing exceptional service, Let’s Talk! Talk to you soon, Your Mental Health Realtor'),(1156,138,'comment',''),(1157,139,'format','Jacob| Tanner| Barb'),(1158,139,'phone_number','423-631-9162'),(1159,139,'email_address_6031894746','jacobtannerbarb@gmail.com'),(1160,139,'mls_id','33798'),(1161,139,'nc_license','366217'),(1162,139,'birthday','12/24'),(1163,139,'headshot_upload','a:1:{i:0;s:4:\"2727\";}'),(1164,139,'home_office','Other (specify in comments)'),(1165,139,'website_bio','Jacob Tanner Barb is an accomplished and seasoned professional with a strong interest in the real estate business. He holds an MBA as well as a Bachelor of Science in Nursing. Tanner\'s career has been spent mostly in bedside nursing as a registered pediatric nurse, as well as in various roles in healthcare administration at a number of top healthcare systems. However, one of his greatest hobbies has always been the real estate market. As a seasoned specialist, he has extensive understanding of real estate purchasing and selling in many places. He is also a member of the National Association of Realtors (NAR), the Northeast Tennessee Association of Realtors (NETAR), and the Tennessee/Virginia Regional Multiple Listing Service (TN/VA Regional MLS). Tanner is a professional and highly experienced real estate agent that is committed to providing the highest standards of professionalism and service to home buyers, sellers, renters, and developers. Tanner uses his education and key skills to provide best-in-class real estate buying and selling services to all clients, from informing them about pricing, positioning, and marketing strategies that will assist them in buying and selling their real estate properties to negotiating deals on their behalf. Tanner has been a long-standing part of the Tri-Cities community. He was born and raised in Elizabethton and is thrilled to be directing his community\'s attention to real estate. Tanner is eager to assist you with your homebuying and selling requirements in the Tri-Cities and neighboring areas. Tanner, a proud member of the Lantern Realty and Development family, integrates his work with the ideals of hard work, ethics, and exceptional customer service. Tanner enjoys hiking in the gorgeous Appalachian Mountains and traveling around the globe when he is not fulfilling his clients\' homeownership goals. Maybe you will see him on the trail one day!'),(1166,139,'comment','Elizabethton, Tennessee TN License NETAR MLS');
/*!40000 ALTER TABLE `lrwp_weforms_entrymeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpforms_lite`
--

DROP TABLE IF EXISTS `lrwp_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpforms_lite`
--

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

--
-- Table structure for table `lrwp_wpforms_tasks_meta`
--

DROP TABLE IF EXISTS `lrwp_wpforms_tasks_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpforms_tasks_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `action` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpforms_tasks_meta`
--

LOCK TABLES `lrwp_wpforms_tasks_meta` WRITE;
/*!40000 ALTER TABLE `lrwp_wpforms_tasks_meta` DISABLE KEYS */;
INSERT INTO `lrwp_wpforms_tasks_meta` VALUES (1,'wpforms_process_entry_emails_meta_cleanup','Wzg2NDAwXQ==','2020-04-27 19:36:40'),(2,'wpforms_admin_notifications_update','W10=','2020-04-27 19:36:43'),(3,'wpforms_admin_notifications_update','W10=','2020-04-29 12:20:24'),(4,'wpforms_admin_notifications_update','W10=','2020-04-30 19:09:13'),(5,'wpforms_process_entry_emails_meta_cleanup','Wzg2NDAwXQ==','2020-10-10 17:06:54'),(6,'wpforms_admin_notifications_update','W10=','2020-10-10 17:06:55');
/*!40000 ALTER TABLE `lrwp_wpforms_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_activities`
--

DROP TABLE IF EXISTS `lrwp_wpl_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_activities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `activity` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL,
  `position` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `index` float(5,2) NOT NULL DEFAULT 99.00,
  `params` text CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `show_title` tinyint(4) NOT NULL DEFAULT 1,
  `title` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `association_type` tinyint(4) NOT NULL DEFAULT 1,
  `associations` text CHARACTER SET utf8 DEFAULT NULL,
  `client` tinyint(4) NOT NULL DEFAULT 2,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_activities`
--

LOCK TABLES `lrwp_wpl_activities` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_activities` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_activities` VALUES (2,'listing_links','plisting_position2',1,0.03,'{\"facebook\":\"1\",\"google_plus\":\"1\",\"twitter\":\"1\",\"pinterest\":\"1\"}',0,'',1,NULL,2),(3,'listing_gallery:pshow','pshow_gallery',1,0.05,'{\"image_width\":\"1600\",\"image_height\":\"420\",\"image_class\":\"\",\"rewrite\":\"0\",\"watermark\":\"0\"}',0,'',1,NULL,2),(4,'listing_links:pshow','pshow_position2',1,0.04,'{\"facebook\":\"1\",\"google_plus\":\"1\",\"twitter\":\"1\",\"pinterest\":\"1\"}',0,'',1,NULL,2),(5,'property_manager_actions','pmanager_position2',1,2.00,'',0,'',1,NULL,2),(6,'listing_gallery:pmanager','pmanager_position3',1,0.12,'',0,'',1,NULL,2),(7,'agent_info','pshow_position2',1,0.06,'',1,'Agent info',1,NULL,2),(8,'listing_rooms','pshow_position2',1,0.07,'',1,'Property Rooms',1,NULL,2),(9,'listing_attachments','pshow_position2',1,0.08,'',1,'Attachments',1,NULL,2),(10,'qrcode:default','pshow_qr_code',1,0.10,'{\"picture_width\":\"90\",\"picture_height\":\"90\",\"outer_margin\":\"2\",\"size\":\"4\"}',1,'QR Code',1,NULL,2),(11,'listing_videos','pshow_video',0,0.14,'',0,'',1,NULL,2),(12,'agent_info:profileshow','profile_show_position1',1,0.02,'',1,'Agent info',1,NULL,2),(13,'listing_gallery:simple','wpl_property_listing_image',1,0.01,'{\"image_width\":\"285\",\"image_height\":\"200\",\"image_class\":\"\",\"rewrite\":\"0\",\"watermark\":\"0\"}',0,'',1,NULL,2),(14,'googlemap','plisting_position1',1,0.11,'',0,'',1,NULL,2),(15,'googlemap:pshow','pshow_googlemap',1,1.00,'{\"default_lt\":\"38.685516\",\"default_ln\":\"-101.073324\",\"default_zoom\":\"4\"}',0,'',1,NULL,2),(23,'listing_contact','pshow_position2',1,99.00,'',1,'Contact Agent',1,'',2),(24,'user_contact','profile_show_position1',0,99.00,'{\"top_comment\":\"\"}',1,'Contact',1,'',2),(46,'property_stats','pmanager_position2',0,99.00,'{\"contacts\":\"1\",\"including_in_listing\":\"1\",\"view_parent\":\"1\",\"visit\":\"1\"}',1,'Property Stats',1,'',2);
/*!40000 ALTER TABLE `lrwp_wpl_activities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_addons`
--

DROP TABLE IF EXISTS `lrwp_wpl_addons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_addons` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `version` varchar(15) CHARACTER SET utf8 DEFAULT NULL,
  `addon_name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  `update` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
  `update_key` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `support_key` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `updatable` tinyint(4) NOT NULL DEFAULT 1,
  `message` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_addons`
--

LOCK TABLES `lrwp_wpl_addons` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_addons` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_addons` VALUES (45,'IDX','1.1.0','idx','','','','',1,'');
/*!40000 ALTER TABLE `lrwp_wpl_addons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_cronjobs`
--

DROP TABLE IF EXISTS `lrwp_wpl_cronjobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_cronjobs` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `cronjob_name` varchar(255) CHARACTER SET utf8 NOT NULL,
  `period` float(6,2) NOT NULL,
  `class_location` varchar(255) CHARACTER SET utf8 NOT NULL,
  `class_name` varchar(100) CHARACTER SET utf8 NOT NULL,
  `function_name` varchar(100) CHARACTER SET utf8 NOT NULL,
  `params` text CHARACTER SET utf8 NOT NULL,
  `enabled` tinyint(4) NOT NULL,
  `latest_run` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_cronjobs`
--

LOCK TABLES `lrwp_wpl_cronjobs` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_cronjobs` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_cronjobs` VALUES (1,'Location Text Update',24.00,'libraries.locations','wpl_locations','update_locationtextsearch_data','',1,'2014-02-10 16:14:11'),(2,'Remove Expired tmp Directories',24.00,'global','wpl_global','delete_expired_tmp','',1,'2014-02-10 16:09:10'),(3,'Check All Updates',24.00,'global','wpl_global','check_all_update','',1,'2014-04-05 20:19:29'),(5,'Maintenance',24.00,'global','wpl_global','execute_maintenance_job','',1,'2014-12-31 19:54:17'),(9,'Auto-Update Exchange Rates',24.00,'libraries.units','wpl_units','auto_update_rates','',1,'2016-03-01 08:00:00'),(32,'Sort Option Indexes',120.00,'libraries.sort_options','wpl_sort_options','sort_options_add_indexes','',1,'2017-06-06 19:39:35'),(33,'Tags Indexes',120.00,'global','wpl_global','tags_add_indexes','',1,'2017-06-06 19:40:35'),(36,'Remove Duplicated Indexes',240.00,'global','wpl_global','remove_duplicated_indexes','',1,'2018-01-01 13:00:00');
/*!40000 ALTER TABLE `lrwp_wpl_cronjobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_dbcat`
--

DROP TABLE IF EXISTS `lrwp_wpl_dbcat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_dbcat` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `kind` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0=property, 1=complex',
  `name` varchar(30) CHARACTER SET utf8 DEFAULT NULL,
  `index` float NOT NULL DEFAULT 99,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `pshow` tinyint(4) NOT NULL DEFAULT 1,
  `pdf` tinyint(4) NOT NULL DEFAULT 0,
  `searchmod` tinyint(4) NOT NULL DEFAULT 1,
  `prefix` varchar(5) CHARACTER SET utf8 DEFAULT NULL,
  `listing_specific` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
  `property_type_specific` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kind` (`kind`,`enabled`),
  KEY `kind_2` (`kind`,`enabled`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_dbcat`
--

LOCK TABLES `lrwp_wpl_dbcat` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_dbcat` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_dbcat` VALUES (1,0,'Basic Details',1,1,1,1,1,'b','','',NULL),(2,0,'Address Map',2,1,1,1,1,'ad','','',NULL),(3,0,'Image Gallery',3,1,0,0,1,'gal','','',NULL),(4,0,'Features',1.5,1,1,1,1,'f','','',NULL),(5,0,'Appliances',1.7,1,1,1,1,'app','','',NULL),(6,0,'Neighborhood',2.5,1,1,1,1,'n','','',NULL),(7,0,'Video',7,1,0,0,0,'v','','',NULL),(9,0,'Attachments',9,1,0,0,0,'att','','',NULL),(10,2,'Basic Details',1,1,1,1,1,'b','','',NULL),(11,0,'Specialties',10,1,0,0,1,'sp','','',NULL);
/*!40000 ALTER TABLE `lrwp_wpl_dbcat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_dbst`
--

DROP TABLE IF EXISTS `lrwp_wpl_dbst`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_dbst` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `kind` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0=property, 1=complex',
  `mandatory` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0=no,1=yes,2=always,3=never',
  `name` varchar(150) CHARACTER SET utf8 DEFAULT NULL,
  `type` varchar(20) CHARACTER SET utf8 DEFAULT NULL,
  `options` text CHARACTER SET utf8 DEFAULT NULL,
  `enabled` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0=no,1=yes,2=always',
  `pshow` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '1' COMMENT 'To show in propertyshow or not',
  `pdf` tinyint(4) NOT NULL DEFAULT 0,
  `plisting` tinyint(4) NOT NULL DEFAULT 0,
  `searchmod` tinyint(4) NOT NULL DEFAULT 0,
  `editable` tinyint(4) NOT NULL DEFAULT 1,
  `deletable` tinyint(4) NOT NULL DEFAULT 1,
  `index` float(9,3) NOT NULL DEFAULT 99.000,
  `css` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `style` text CHARACTER SET utf8 DEFAULT NULL,
  `specificable` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0=no,1=yes',
  `listing_specific` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
  `property_type_specific` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
  `user_specific` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
  `accesses` text CHARACTER SET utf8 DEFAULT NULL,
  `accesses_message` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `table_name` varchar(30) CHARACTER SET utf8 DEFAULT NULL COMMENT 'table which the data is stored to',
  `table_column` varchar(30) CHARACTER SET utf8 DEFAULT NULL COMMENT 'column of table which datat is stored to',
  `category` int(11) NOT NULL DEFAULT 1 COMMENT 'in propertywizard category',
  `rankable` tinyint(4) NOT NULL DEFAULT 1,
  `rank_point` int(11) NOT NULL DEFAULT 0,
  `comments` text CHARACTER SET utf8 DEFAULT NULL,
  `pwizard` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '1' COMMENT '0=no,1=yes,2=always',
  `text_search` tinyint(4) DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  `flex` tinyint(4) NOT NULL DEFAULT 1,
  `sortable` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0=not sortable,1=sortable,2=always',
  `field_specific` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
  `savesearch` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `kind` (`kind`,`enabled`),
  KEY `plisting` (`plisting`),
  KEY `pshow` (`pshow`),
  KEY `kind_2` (`kind`,`enabled`),
  KEY `plisting_2` (`plisting`),
  KEY `pshow_2` (`pshow`)
) ENGINE=InnoDB AUTO_INCREMENT=919 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_dbst`
--

LOCK TABLES `lrwp_wpl_dbst` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_dbst` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_dbst` VALUES (1,0,0,'Listing Setting','separator','',1,'0',0,0,1,1,0,1.010,'','font-weight:bold',0,'','',NULL,NULL,NULL,'','',1,1,0,'','1',1,'',1,0,NULL,1),(2,0,2,'Listing Type','listings','',2,'1',1,1,1,1,0,1.030,'','',0,'','',NULL,NULL,NULL,'wpl_properties','listing',1,0,0,'','1',1,'',1,1,NULL,1),(3,0,2,'Property Type','property_types','',2,'1',1,1,1,1,0,1.020,'','',0,'','',NULL,NULL,NULL,'wpl_properties','property_type',1,0,0,'','1',1,'',1,1,NULL,1),(4,0,0,'Ref ID','text','',1,'0',0,0,1,1,0,1.050,'','',1,'','',NULL,NULL,NULL,'wpl_properties','ref_id',1,1,10,'','1',1,'',1,1,NULL,1),(5,0,3,'Listing ID','text','{\"readonly\":\"1\"}',1,'1',1,1,1,1,0,1.040,'','',1,'','',NULL,NULL,NULL,'wpl_properties','mls_id',1,0,0,'','1',1,'',1,2,NULL,1),(6,0,1,'Price','price','',1,'1',1,1,1,1,0,1.080,'','',1,'','',NULL,NULL,NULL,'wpl_properties','price',1,0,0,'','1',1,'',1,1,NULL,1),(7,0,1,'View','select','{\"params\":{\"1\":{\"key\":\"1\",\"enabled\":\"1\",\"value\":\"Garden\"},\"2\":{\"key\":\"2\",\"enabled\":\"1\",\"value\":\"Street\"},\"3\":{\"key\":\"3\",\"enabled\":\"1\",\"value\":\"Sea\"}}}',1,'1',1,0,1,1,1,1.100,'','',1,'','',NULL,NULL,NULL,'wpl_properties','field_7',1,1,0,'','1',1,'',1,1,NULL,1),(8,0,1,'Bedrooms','number','',1,'1',1,1,1,1,0,1.110,'','',1,'','6,7,',NULL,NULL,NULL,'wpl_properties','bedrooms',1,1,0,'','1',1,'',1,1,NULL,1),(9,0,1,'Bathrooms','number','',1,'1',1,1,1,1,0,1.130,'','',1,'','6,7,13,',NULL,NULL,NULL,'wpl_properties','bathrooms',1,1,0,'','1',1,'',1,1,NULL,1),(10,0,1,'Square Footage','area','',1,'1',1,1,1,1,0,1.150,'','',1,'','6,7,13,',NULL,NULL,NULL,'wpl_properties','living_area',1,1,0,'','1',1,'',1,1,NULL,1),(11,0,0,'Lot Area','area','',1,'1',1,1,1,1,1,1.170,'','',1,'','',NULL,NULL,NULL,'wpl_properties','lot_area',1,1,0,'','1',1,'',1,1,NULL,1),(12,0,0,'Year Built','number','',1,'1',1,0,1,1,1,1.160,'','',1,'','',NULL,NULL,NULL,'wpl_properties','build_year',1,1,0,'','1',1,'',1,1,NULL,1),(13,0,1,'Rooms','number','',1,'1',1,1,1,1,0,1.120,'','',1,'','13,',NULL,NULL,NULL,'wpl_properties','rooms',1,1,0,'','1',1,'',1,1,NULL,1),(14,0,1,'Price Type','select','{\"params\":{\"1\":{\"key\":\"30\",\"enabled\":\"1\",\"value\":\"Per Month\"},\"2\":{\"key\":\"7\",\"enabled\":\"1\",\"value\":\"Per Week\"},\"3\":{\"key\":\"365\",\"enabled\":\"1\",\"value\":\"Per Year\"},\"4\":{\"key\":\"1\",\"enabled\":\"1\",\"value\":\"Per Day\"}}}',1,'1',1,1,1,1,1,1.070,'','',1,'10,12,','',NULL,NULL,NULL,'wpl_properties','price_period',1,1,0,'','1',1,'',1,1,NULL,1),(17,0,0,'Half Bathrooms','number','',1,'1',1,1,1,1,1,1.140,'','',1,'','6,7,13,',NULL,NULL,NULL,'wpl_properties','half_bathrooms',1,1,0,'','1',1,'',1,1,NULL,1),(18,0,0,'Text Search','textsearch','',2,'0',0,0,1,0,0,1.220,'','',0,'','',NULL,NULL,NULL,'wpl_properties','textsearch',1,0,0,'','0',0,'',1,1,NULL,1),(19,0,0,'List Date','date','{\"minimum_date\":\"1970-01-01\",\"maximum_date\":\"now\"}',1,'0',0,0,1,0,0,1.090,'','',0,'','',NULL,NULL,NULL,'wpl_properties','add_date',1,0,0,'','0',0,'',1,1,NULL,1),(20,0,0,'Alias / Permalink','text','',2,'0',0,0,0,1,0,1.020,'','',0,'','','',NULL,NULL,'wpl_properties','alias',1,0,0,'','0',0,'',1,1,NULL,1),(21,0,0,'Location Text','text','{\"if_zero\":\"1\",\"call_text\":\"Call\"}',2,'0',0,0,0,1,0,1.021,'','',0,'','','',NULL,NULL,'wpl_properties','location_text',2,0,0,'','0',0,'',1,1,NULL,1),(22,0,0,'Category','ptcategory','',2,'0',0,0,1,0,0,1.045,'','',0,'','','',NULL,NULL,NULL,NULL,1,0,0,'','0',0,'',0,0,NULL,1),(40,0,0,'Address Location','separator','',1,'0',0,0,1,1,0,1.000,'','font-weight:bold',0,'','',NULL,NULL,NULL,'','',2,1,0,'','1',1,'',1,0,NULL,1),(41,0,2,'Location','locations','{\"params\":{\"1\":{\"enabled\":\"1\"},\"2\":{\"enabled\":\"1\"},\"3\":{\"enabled\":\"1\"},\"4\":{\"enabled\":\"1\"},\"5\":{\"enabled\":\"1\"},\"6\":{\"enabled\":\"1\"},\"7\":{\"enabled\":\"1\"},\"zips\":{\"enabled\":\"1\"}}}',1,'1',1,1,1,1,0,2.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','locations',2,0,0,'','1',1,'',1,1,NULL,1),(42,0,0,'Street','text','',1,'1',1,1,1,1,0,12.000,'class','style',1,'','',NULL,NULL,NULL,'wpl_properties','field_42',2,1,0,'','1',1,'',1,1,NULL,1),(43,0,0,'Postal Code','text','',1,'1',1,1,1,1,0,21.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','post_code',2,1,30,'','1',1,'',1,1,NULL,1),(45,0,0,'Street Number','text','',1,'1',1,1,1,1,0,13.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','street_no',2,0,0,NULL,'1',1,'',1,1,NULL,1),(50,0,0,'Google Map','separator','',1,'0',0,0,1,1,0,48.000,'','',0,'','',NULL,NULL,NULL,'','',2,1,0,'','1',0,'',1,0,NULL,1),(51,0,3,'Longitude','text','{\"readonly\":\"1\"}',2,'1',1,0,0,1,0,49.000,'','',0,'','',NULL,NULL,NULL,'wpl_properties','googlemap_ln',2,0,0,'','1',0,'',1,1,NULL,1),(52,0,3,'Latitude','text','{\"readonly\":\"1\"}',2,'1',1,0,0,1,0,58.000,'','',0,'','',NULL,NULL,NULL,'wpl_properties','googlemap_lt',2,0,0,'','1',0,'',1,1,NULL,1),(53,0,3,'Map','googlemap','',1,'0',0,0,0,0,0,67.000,'','',1,'','',NULL,NULL,NULL,'','',2,1,50,'','1',0,'',1,0,NULL,1),(54,0,0,'Building Name','text','',1,'1',1,1,1,1,0,30.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','field_54',2,1,30,'','1',1,'',1,1,NULL,1),(55,0,0,'Floor Number','number','',1,'1',1,1,1,1,0,39.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','field_55',2,1,10,'','1',1,'',1,1,NULL,1),(57,0,0,'Street Suffix','text',NULL,1,'1',1,1,0,1,0,14.000,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'wpl_properties','street_suffix',2,1,0,NULL,'1',1,NULL,1,1,NULL,1),(59,0,0,'Zipcode','text','',1,'0',0,0,1,0,0,2.060,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'wpl_properties','zip_name',2,1,0,NULL,'0',1,NULL,0,1,NULL,1),(91,0,0,'Appliances','separator','',1,'0',0,0,1,1,0,1.000,'','font-weight:bold',0,'','',NULL,NULL,NULL,'','',5,1,0,'','1',1,'',1,0,NULL,1),(92,0,0,'Neighborhood','separator','',1,'0',0,0,1,1,0,1.000,'','font-weight:bold',0,'','',NULL,NULL,NULL,'','',6,1,0,'','1',1,'',1,0,NULL,1),(103,0,3,'Park','neighborhood','',1,'1',1,0,1,1,1,111.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','n_103',6,1,10,'','1',1,'',1,1,NULL,1),(105,0,3,'Beach','neighborhood','',1,'1',1,0,1,1,1,81.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','n_105',6,1,20,'','1',1,'',1,1,NULL,1),(107,0,3,'Airport','neighborhood','',1,'1',1,0,1,1,1,61.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','n_107',6,1,0,'','1',1,'',1,1,NULL,1),(108,0,3,'Bus Station','neighborhood','',1,'1',1,0,1,1,1,51.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','n_108',6,1,0,'','1',1,'',1,1,NULL,1),(109,0,3,'Train Station','neighborhood','',1,'1',1,0,1,1,1,41.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','n_109',6,1,0,'','1',1,'',1,1,NULL,1),(129,0,0,'Features','separator','',1,'0',0,0,1,1,0,4.000,'','font-weight:bold',0,'','',NULL,NULL,NULL,'','',4,1,0,'','1',1,'',1,0,NULL,1),(130,0,3,'Heating System','feature','{\"type\":\"single\",\"values\":[{\"key\":\"1\",\"value\":\"Split\"},{\"key\":\"2\",\"value\":\"Heat Pump\"},{\"key\":\"3\",\"value\":\"Central\"}]}',1,'1',1,0,1,1,1,4.040,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_130',4,1,5,'','1',1,'',1,1,NULL,1),(131,0,3,'Swimming Pool','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,4.020,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_131',4,1,30,'','1',1,'',1,1,NULL,1),(132,0,3,'Jacuzzi','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,4.030,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_132',4,1,10,'','1',1,'',1,1,NULL,1),(133,0,3,'Elevator','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,4.060,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_133',4,1,5,'','1',1,'',1,1,NULL,1),(134,0,3,'Cooling System','feature','{\"type\":\"single\",\"values\":[{\"key\":\"1\",\"value\":\"Split\"},{\"key\":\"2\",\"value\":\"Central\"}]}',1,'1',1,0,1,1,1,4.050,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_134',4,1,10,'','1',1,'',1,1,NULL,1),(136,0,3,'Balcony','feature','{\"type\":\"none\"}',1,'1',1,1,1,1,1,4.080,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_136',4,1,5,'','1',1,'',1,1,NULL,1),(137,0,3,'Basement','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,4.100,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_137',4,1,0,'','1',1,'',1,1,NULL,1),(138,0,3,'Fence','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,4.110,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_138',4,1,0,'','1',1,'',1,1,NULL,1),(139,0,3,'View','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,4.120,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_139',4,1,0,'','1',1,'',1,1,NULL,1),(140,0,3,'Pet Policy','feature','{\"type\":\"single\",\"values\":[{\"key\":\"1\",\"value\":\"Allowed\"},{\"key\":\"2\",\"value\":\"Not Allowed\"}]}',1,'1',1,0,1,1,1,4.130,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_140',4,1,0,'','1',1,'',1,1,NULL,1),(141,0,3,'Kitchen','feature','{\"type\":\"single\",\"values\":[{\"key\":\"1\",\"value\":\"Fully Equipped\"},{\"key\":\"2\",\"value\":\"Semi Equipped\"},{\"key\":\"3\",\"value\":\"Not Equipped\"}]}',1,'1',1,0,1,1,1,4.140,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_141',4,1,0,'','1',1,'',1,1,NULL,1),(144,0,3,'Fireplace','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,4.170,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_144',4,1,0,'','1',1,'',1,1,NULL,1),(146,0,3,'Patio','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,4.190,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_146',4,1,0,'','1',1,'',1,1,NULL,1),(147,0,3,'Roof Deck','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,4.200,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_147',4,1,0,'','1',1,'',1,1,NULL,1),(149,0,3,'Storage','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,4.220,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_149',4,1,0,'','1',1,'',1,1,NULL,1),(150,0,3,'Parking','feature','{\"type\":\"single\",\"values\":[{\"key\":\"1\",\"value\":\"1\"},{\"key\":\"2\",\"value\":\"2\"},{\"key\":\"3\",\"value\":\"3\"},{\"key\":\"4\",\"value\":\"4\"},{\"key\":\"5\",\"value\":\"5\"},{\"key\":\"6\",\"value\":\"6\"}]}',1,'1',1,1,1,1,1,4.230,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_150',4,1,10,'','1',1,'',1,1,NULL,1),(151,0,3,'Furnished','feature','{\"type\":\"single\",\"values\":[{\"key\":\"1\",\"value\":\"Fully Furnished\"},{\"key\":\"2\",\"value\":\"Semi Furnished\"},{\"key\":\"3\",\"value\":\"Not Furnished\"}]}',1,'1',1,0,1,1,1,4.240,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_151',4,1,10,'','1',1,'',1,1,NULL,1),(152,0,3,'Security','feature','{\"type\":\"multiple\",\"values\":[{\"key\":\"1\",\"value\":\"Watchman\"},{\"key\":\"2\",\"value\":\"Digicode\"},{\"key\":\"3\",\"value\":\"Alarm\"},{\"key\":\"4\",\"value\":\"Lock\"},{\"key\":\"5\",\"value\":\"Cctv\"},{\"key\":\"6\",\"value\":\"No\"},{\"key\":\"7\",\"value\":\"Other\"}]}',1,'1',1,0,1,1,1,4.180,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_152',4,1,10,'','1',1,'',1,1,NULL,1),(156,0,3,'Washing Machine','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,31.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_156',5,1,5,'','1',1,'',1,1,NULL,1),(157,0,3,'TV','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,41.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_157',5,1,5,'','1',1,'',1,1,NULL,1),(159,0,3,'Internet','feature','{\"type\":\"single\",\"values\":[{\"key\":\"1\",\"value\":\"Exclusive\"},{\"key\":\"2\",\"value\":\"Inclusive\"},{\"key\":\"3\",\"value\":\"Wireless\"}]}',1,'1',1,0,1,1,1,171.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_159',5,1,5,'','1',1,'',1,1,NULL,1),(161,0,3,'Cleaning Service','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,71.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_161',5,1,5,'','1',1,'',1,1,NULL,1),(163,0,3,'Dishwasher','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,91.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_163',5,1,5,'','1',1,'',1,1,NULL,1),(165,0,3,'Satellite','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,111.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_165',5,1,5,'','1',1,'',1,1,NULL,1),(166,0,3,'Telephone','feature','{\"type\":\"none\"}',1,'1',1,0,1,1,1,121.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','f_166',5,1,5,'','1',1,'',1,1,NULL,1),(171,0,0,'Rooms and Sizes','rooms','',1,'0',0,0,0,0,1,3.500,'','',1,'','',NULL,NULL,NULL,'','',4,0,0,'','1',0,'',1,0,NULL,1),(300,0,3,'Gallery','gallery','{\"ext_file\":\"gif,jpeg,png,jpg\",\"file_size\":\"500\"}',1,'0',0,0,1,1,0,1.000,'','',1,'','',NULL,NULL,NULL,'','',3,0,0,'','1',0,'',1,0,NULL,1),(301,0,0,'Attachments','attachments','{\"ext_file\":\"pdf,doc,docx,zip,tar,rar,mp3,txt\",\"file_size\":\"5000\"}',1,'0',0,0,1,1,0,1.000,'','',0,'','',NULL,NULL,NULL,'','',9,0,0,'','1',0,'',1,0,NULL,1),(302,0,0,'Details','separator','',1,'0',0,0,1,1,0,1.060,'','font-weight:bold',0,'','',NULL,NULL,NULL,'','',1,1,0,'','1',1,'',1,0,NULL,1),(308,0,0,'Property Description','textarea','{\"advanced_editor\":\"1\",\"rows\":\"7\",\"cols\":\"41\"}',2,'0',0,0,1,1,0,1.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','field_308',1,1,140,'','1',1,'',1,1,NULL,1),(309,0,0,'Description Meta Data','separator','',1,'0',0,0,1,1,0,1.180,'','font-weight:bold',0,'','',NULL,NULL,NULL,'','',1,1,0,'','1',0,'',1,0,NULL,1),(310,0,3,'Meta Description','meta_desc','{\"advanced_editor\":\"0\",\"rows\":\"6\",\"cols\":\"60\",\"readonly\":\"1\"}',1,'0',0,0,1,1,0,1.200,'','',0,'','',NULL,NULL,NULL,'wpl_properties','meta_description',1,0,0,'','1',0,'',1,1,NULL,1),(311,0,3,'Meta Keywords','meta_key','{\"advanced_editor\":\"0\",\"rows\":\"6\",\"cols\":\"60\",\"readonly\":\"1\"}',1,'0',0,0,1,1,0,1.210,'','',0,'','',NULL,NULL,NULL,'wpl_properties','meta_keywords',1,0,0,'','1',0,'',1,1,NULL,1),(312,0,3,'Property Page Title','text','null',2,'0',0,1,1,1,0,0.600,'','',1,'','',NULL,NULL,NULL,'wpl_properties','field_312',1,0,0,'','1',1,'',1,1,NULL,1),(313,0,3,'Property Title','text','null',2,'0',0,1,1,1,0,0.500,'','',1,'','',NULL,NULL,NULL,'wpl_properties','field_313',1,0,0,'','1',1,'[]',1,1,NULL,1),(400,0,3,'Featured','tag','{\"ribbon\":\"1\",\"widget\":\"1\",\"color\":\"29a9df\",\"text_color\":\"ffffff\",\"default_value\":\"0\"}',1,'1',1,1,1,1,0,2.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','sp_featured',11,1,50,NULL,'1',1,'',1,1,NULL,1),(401,0,3,'Hot Offer','tag','{\"ribbon\":\"1\",\"widget\":\"1\",\"color\":\"d21a10\",\"text_color\":\"ffffff\",\"default_value\":\"0\"}',1,'1',1,1,1,1,0,3.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','sp_hot',11,1,50,NULL,'1',1,'',1,1,NULL,1),(402,0,3,'Open House','tag','{\"ribbon\":\"1\",\"widget\":\"1\",\"color\":\"3cae2c\",\"text_color\":\"ffffff\",\"default_value\":\"0\"}',1,'1',1,1,1,1,0,4.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','sp_openhouse',11,1,60,NULL,'1',1,'',1,1,NULL,1),(403,0,3,'Foreclosure','tag','{\"ribbon\":\"1\",\"widget\":\"1\",\"color\":\"666666\",\"text_color\":\"ffffff\",\"default_value\":\"0\"}',1,'1',1,1,1,1,0,6.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','sp_forclosure',11,1,60,NULL,'1',1,'',1,1,NULL,1),(567,0,0,'Add On Video','addon_video','{\"ext_file\":\"avi,flv,mp4,swf,wmv\",\"file_size\":\"100000\"}',1,'0',0,0,1,1,0,1.000,'','',1,'','',NULL,NULL,NULL,'wpl_properties','',7,1,0,'','1',0,'',1,0,NULL,1),(900,2,1,'First Name','text','',1,'1',1,1,1,1,0,1.000,'','',1,'','',NULL,NULL,NULL,'wpl_users','first_name',10,1,0,NULL,'1',1,'',1,1,NULL,1),(901,2,1,'Last Name','text','',1,'1',1,1,1,1,0,2.000,'','',1,'','',NULL,NULL,NULL,'wpl_users','last_name',10,1,0,NULL,'1',1,'',1,1,NULL,1),(902,2,0,'Company Name','text','',1,'1',1,1,1,1,0,3.000,'','',1,'','',NULL,NULL,NULL,'wpl_users','company_name',10,1,0,NULL,'1',1,'',1,1,NULL,1),(903,2,0,'Company Address','text','',1,'1',1,1,1,1,0,4.000,'','',1,'','',NULL,NULL,NULL,'wpl_users','company_address',10,1,0,NULL,'1',1,'',1,1,NULL,1),(904,2,0,'Website','text','',1,'1',1,1,1,1,1,5.000,'','',1,'','',NULL,NULL,NULL,'wpl_users','website',10,1,0,NULL,'1',1,'',1,1,NULL,1),(905,2,0,'Secondary Email','text','',1,'1',1,1,1,1,0,6.000,'','',1,'','',NULL,NULL,NULL,'wpl_users','secondary_email',10,1,0,NULL,'1',1,'',1,1,NULL,1),(906,2,0,'Gender','select','{\"params\":{\"1\":{\"key\":\"1\",\"enabled\":\"1\",\"value\":\"Male\"},\"2\":{\"key\":\"2\",\"enabled\":\"1\",\"value\":\"Female\"}}}',1,'1',1,1,1,1,0,2.200,'','',1,'','',NULL,NULL,NULL,'wpl_users','sex',10,1,0,NULL,'1',1,'',1,1,NULL,1),(907,2,0,'Tel','text','',1,'1',1,1,1,1,1,8.000,'','',1,'','',NULL,NULL,NULL,'wpl_users','tel',10,1,0,NULL,'1',1,'',1,1,NULL,1),(908,2,0,'Fax','text','',1,'1',1,1,1,1,1,9.000,'','',1,'','',NULL,NULL,NULL,'wpl_users','fax',10,1,0,NULL,'1',1,'',1,1,NULL,1),(909,2,0,'Mobile','text','',1,'1',1,1,1,1,1,10.000,'','',1,'','',NULL,NULL,NULL,'wpl_users','mobile',10,1,0,NULL,'1',1,'',1,1,NULL,1),(910,2,0,'Location Text','text','{\"if_zero\":\"1\",\"call_text\":\"Call\"}',2,'0',0,0,0,1,0,10.055,'','',0,'','','','','','wpl_users','location_text',10,0,0,'','0',0,'',1,1,NULL,1),(911,2,0,'Location','locations','{\"params\":{\"1\":{\"enabled\":\"1\"},\"2\":{\"enabled\":\"1\"},\"3\":{\"enabled\":\"1\"},\"4\":{\"enabled\":\"1\"},\"5\":{\"enabled\":\"1\"},\"6\":{\"enabled\":\"1\"},\"7\":{\"enabled\":\"1\"},\"zips\":{\"enabled\":\"1\"}}}',1,'1',1,1,1,1,0,11.000,'','',1,'','',NULL,NULL,NULL,'wpl_users','locations',10,0,0,'','1',1,'',1,2,NULL,1),(912,2,0,'Profile Picture','upload','{\"params\":{\"request_str\":\"?wpl_format=b:users:ajax&wpl_function=upload_file&file_name=[html_element_id]&item_id=[item_id]\"},\"preview\":1,\"remove_str\":\"wpl_format=b:users:ajax&wpl_function=delete_file&item_id=[item_id]\"}',1,'0',0,0,0,0,0,2.250,'','',1,'','',NULL,NULL,NULL,'wpl_users','profile_picture',10,0,0,'','1',0,'',1,1,NULL,1),(913,2,0,'Company Logo','upload','{\"params\":{\"request_str\":\"?wpl_format=b:users:ajax&wpl_function=upload_file&file_name=[html_element_id]&item_id=[item_id]\"},\"preview\":1,\"remove_str\":\"wpl_format=b:users:ajax&wpl_function=delete_file&item_id=[item_id]\"}',1,'0',0,0,0,0,0,2.300,'','',1,'','',NULL,NULL,NULL,'wpl_users','company_logo',10,0,0,'','1',0,'',1,1,NULL,1),(914,2,0,'Email','text','',1,'1',1,1,1,1,0,5.500,'','',1,'','',NULL,NULL,NULL,'wpl_users','main_email',10,1,0,NULL,'1',1,'',1,1,NULL,1),(915,2,0,'Personal Data','separator','null',1,'0',0,0,1,1,1,10.000,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'wpl_users',NULL,10,1,0,NULL,'1',1,NULL,1,0,NULL,1),(916,2,0,'Company Data','separator','null',1,'0',0,0,1,1,1,10.060,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'wpl_users',NULL,10,1,0,NULL,'1',1,NULL,1,0,NULL,1),(917,2,0,'Contact information','separator','null',1,'0',0,0,1,1,1,10.100,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'wpl_users',NULL,10,1,0,NULL,'1',1,NULL,1,0,NULL,1),(918,2,0,'About','textarea','{\"advanced_editor\":\"0\",\"rows\":\"7\",\"cols\":\"41\"}',1,'1',1,1,1,1,1,10.035,NULL,NULL,1,'','','',NULL,NULL,'wpl_users','about',10,1,0,NULL,'1',1,NULL,1,1,NULL,1);
/*!40000 ALTER TABLE `lrwp_wpl_dbst` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_dbst_types`
--

DROP TABLE IF EXISTS `lrwp_wpl_dbst_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_dbst_types` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `kind` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '[0][1]',
  `type` varchar(20) CHARACTER SET utf8 NOT NULL,
  `enabled` tinyint(4) NOT NULL COMMENT '0=no,1=yes,2=always',
  `index` float(5,2) NOT NULL DEFAULT 1.00,
  `queries_add` text CHARACTER SET utf8 NOT NULL,
  `queries_delete` text CHARACTER SET utf8 NOT NULL,
  `options` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `kind` (`kind`,`enabled`),
  KEY `kind_2` (`kind`,`enabled`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_dbst_types`
--

LOCK TABLES `lrwp_wpl_dbst_types` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_dbst_types` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_dbst_types` VALUES (1,'[0][1][2][4]','text',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` varchar(50) NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]`;',NULL),(2,'[0][1][2][4]','number',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` float NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]`;',NULL),(3,'[0][1][2][4]','select',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` int(11) NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]` DROP `field_[FIELD_ID]`;',NULL),(4,'[0][1][4]','feature',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `f_[FIELD_ID]_options` text NULL; ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `f_[FIELD_ID]` tinyint(4) NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'f_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `f_[FIELD_ID]_options`;ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `f_[FIELD_ID]`;',NULL),(5,'[0][1][2][4]','textarea',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` text NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]` DROP `field_[FIELD_ID]`;',NULL),(6,'[0][1][2][4]','separator',1,1.00,'','',NULL),(7,'[0][1][4]','neighborhood',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `n_[FIELD_ID]` tinyint(4) NULL; ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `n_[FIELD_ID]_distance` int NULL; ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `n_[FIELD_ID]_distance_by` tinyint(4) NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'n_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `n_[FIELD_ID]`;ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `n_[FIELD_ID]_distance`;ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `n_[FIELD_ID]_distance_by`;',NULL),(8,'[0][1][4]','area',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` double NOT NULL DEFAULT \'0\'; ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]_si` double NOT NULL DEFAULT \'0\'; ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]_unit` int NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]`;ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]_unit`;ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]_si`;',NULL),(9,'[0][1][4]','length',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` double NOT NULL DEFAULT \'0\'; ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]_si` double NOT NULL DEFAULT \'0\'; ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]_unit` int NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]`;ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]_unit`;ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]_si`;',NULL),(10,'[0][1][4]','volume',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` double NOT NULL DEFAULT \'0\'; ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]_si` double NOT NULL DEFAULT \'0\'; ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]_unit` int NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]`;ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]_unit`;ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]_si`;',NULL),(11,'[0][1][2][4]','price',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` double NOT NULL DEFAULT \'0\'; ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]_si` double NOT NULL DEFAULT \'0\'; ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]_unit` int NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]`;ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]_unit`;ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]_si`;',NULL),(12,'[0][1][2][4]','date',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` date NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]`;',NULL),(13,'[0][1][2][4]','datetime',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` datetime NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\nDROP `field_[FIELD_ID]`;',NULL),(14,'[0][1][2][4]','url',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` varchar(100) NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\r\nDROP `field_[FIELD_ID]`;',NULL),(19,'[0][1][2][4]','boolean',1,19.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` TINYINT( 4 ) NOT NULL DEFAULT \'[DEFAULT_VALUE]\'; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\r\nDROP `field_[FIELD_ID]`;',NULL),(20,'[0][1][2][4]','checkbox',1,20.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` TINYINT( 4 ) NOT NULL DEFAULT \'0\'; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]`\r\nDROP `field_[FIELD_ID]`;',NULL),(24,'[0][1][2][4]','array',1,1.00,'ALTER TABLE `[TB_PREFIX][TABLE_NAME]` ADD `field_[FIELD_ID]` text NULL; UPDATE `[TB_PREFIX]wpl_dbst` SET `table_name`=\'[TABLE_NAME]\', `table_column`=\'field_[FIELD_ID]\' WHERE id=[FIELD_ID];','ALTER TABLE `[TB_PREFIX][TABLE_NAME]` DROP `field_[FIELD_ID]`;',NULL);
/*!40000 ALTER TABLE `lrwp_wpl_dbst_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_events`
--

DROP TABLE IF EXISTS `lrwp_wpl_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(50) CHARACTER SET utf8 NOT NULL,
  `trigger` varchar(100) CHARACTER SET utf8 NOT NULL,
  `class_location` varchar(200) CHARACTER SET utf8 NOT NULL,
  `class_name` varchar(100) CHARACTER SET utf8 NOT NULL,
  `function_name` varchar(100) CHARACTER SET utf8 NOT NULL,
  `params` text CHARACTER SET utf8 NOT NULL,
  `enabled` tinyint(4) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `enabled` (`enabled`),
  KEY `enabled_2` (`enabled`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_events`
--

LOCK TABLES `lrwp_wpl_events` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_events` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_events` VALUES (4,'notification','contact_agent','libraries.event_handlers.notifications','wpl_events_notifications','contact_agent','',1),(5,'notification','contact_profile','libraries.event_handlers.notifications','wpl_events_notifications','contact_profile','',1),(39,'notification','user_registered','libraries.event_handlers.notifications','wpl_events_notifications','user_registered','',1),(40,'notification','request_a_visit_send','libraries.event_handlers.notifications','wpl_events_notifications','request_a_visit','',1),(41,'notification','send_to_friend','libraries.event_handlers.notifications','wpl_events_notifications','send_to_friend','',1),(42,'notification','add_property','libraries.event_handlers.notifications','wpl_events_notifications','listing_create','',1),(45,'notification','wpl_adding_price_request','libraries.event_handlers.notifications','wpl_events_notifications','adding_price_request','',1);
/*!40000 ALTER TABLE `lrwp_wpl_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_extensions`
--

DROP TABLE IF EXISTS `lrwp_wpl_extensions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_extensions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(20) CHARACTER SET latin1 NOT NULL,
  `title` varchar(200) CHARACTER SET latin1 NOT NULL,
  `parent` int(10) NOT NULL DEFAULT 0,
  `description` text CHARACTER SET latin1 NOT NULL,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `param1` varchar(200) CHARACTER SET latin1 NOT NULL,
  `param2` text CHARACTER SET latin1 NOT NULL,
  `param3` varchar(200) CHARACTER SET latin1 NOT NULL,
  `param4` varchar(200) CHARACTER SET latin1 NOT NULL,
  `param5` varchar(200) CHARACTER SET latin1 NOT NULL,
  `params` text CHARACTER SET latin1 NOT NULL,
  `editable` tinyint(4) NOT NULL DEFAULT 1,
  `index` float(5,2) NOT NULL DEFAULT 99.99,
  `client` tinyint(4) NOT NULL DEFAULT 2,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=142 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_extensions`
--

LOCK TABLES `lrwp_wpl_extensions` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_extensions` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_extensions` VALUES (1,'action','Admin menu',0,'This extension generates admin menu',1,'admin_menu','wpl_extensions->wpl_admin_menus','','','','',0,99.99,2),(2,'shortcode','property listing shortcode',0,'it used for showing property listing',1,'wpl_property_listings','wpl_controller->f:property_listing:display','','','','',0,99.99,2),(3,'style','WPL backend stylesheet',0,'',1,'wpl_backend_main_style','css/backend.css','','','','',0,99.99,1),(5,'javascript','jQuery',0,'',1,'jquery','','','','','',0,0.00,2),(6,'javascript','WPL backend javascript',0,'',1,'wpl_backend_javascript','js/backend.min.js','','','','',0,100.10,1),(9,'widget','WPL Search Widget',0,'',1,'widgets.search.main','widgets_init','WPL_search_widget','','','',0,99.99,2),(10,'shortcode','Property Show shortcode',0,'it can be used for showing a specific listing',1,'wpl_property_show','wpl_controller->f:property_show:display','','','','',0,99.99,2),(11,'service','SEF service',0,'For running SEF service',1,'template_redirect','sef->run','9999','','','',0,99.99,2),(12,'shortcode','Profile Listing shortcode',0,'it can be used for showing a profile (Agent) listing',1,'wpl_profile_listing','wpl_controller->f:profile_listing:display','','','','',0,99.99,2),(13,'style','WPL frontend stylesheet',0,'',1,'wpl_frontend_main_style','css/frontend.css','','','','',0,99.99,0),(14,'widget','WPL Carousel Widget',0,'',1,'widgets.carousel.main','widgets_init','WPL_carousel_widget','','','',0,99.99,2),(15,'action','Admin bar menu',0,'This extension generates admin bar menu',1,'admin_bar_menu','wpl_extensions->wpl_admin_bar_menu','999','','','',0,99.99,2),(16,'javascript','WPL frontend javascript',0,'',1,'wpl_frontend_javascript','js/frontend.min.js','','','','',0,100.10,0),(18,'service','IO service',0,'For running IO commands',1,'wp','io->run','9999','','','',0,99.99,0),(20,'widget','WPL Agents Widget',0,'',1,'widgets.agents.main','widgets_init','WPL_agents_widget','','','',0,99.99,2),(21,'sidebar','Property Show Bottom',0,'Appears on bottom of single property/property show page',1,'wpl-pshow-bottom','','','','','',0,99.99,2),(22,'sidebar','Profile Show Top',0,'Appears on top of agent show/profile show page',1,'wpl-profileshow-top','','','','','',0,99.99,2),(24,'sidebar','Property Listing Top',0,'Appears below of Google map in property listing page',1,'wpl-plisting-top','','','','','',0,99.99,2),(26,'sidebar','Profile Listing Top',0,'Appears in Profile listing page',1,'wpl-profile-listing-top','','','','','',0,99.99,2),(27,'sidebar','WPL Hidden',0,'Appears no where! Use it for widget short-codes.',1,'wpl-hidden','','','','','',0,99.99,2),(31,'shortcode','my profile shortcode',0,'it used for showing my profile',1,'wpl_my_profile','wpl_html->load_profile_wizard','','','','',0,99.99,2),(34,'shortcode','Profile show shortcode',0,'it used for showing a profile',1,'wpl_profile_show','wpl_controller->f:profile_show:display','','','','',0,99.99,2),(36,'service','Helps Service',0,'For running WPL Helps',1,'init','helps->run','9999','','','',0,99.99,1),(88,'javascript','jQuery UI',0,'',1,'jquery-ui-core','','','1','','',0,88.00,2),(89,'javascript','jQuery UI sortable',0,'',1,'jquery-ui-sortable','','','1','','',0,89.00,2),(99,'style','Googlefont',0,'',1,'wpl-google-font','https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic|Open+Sans:300italic,400italic,600italic,700italic,400,300,600,700|Scada:400italic,700italic,400,700|Archivo+Narrow:400,40|Lato:400,700,900,400italic|BenchNine','','','1','',0,35.00,0),(102,'javascript','customScrollBarJS',0,'',1,'customScrollBarJS','js/libraries/wpl.jquery.mcustomscrollbar.min.js','','1','','',0,100.00,2),(107,'shortcode','Widget shortcode',0,'For showing Widgets instance',1,'wpl_widget_instance','wpl_widget->load_widget_instance','','','','',0,99.99,2),(108,'javascript','Modernizr',0,'',1,'modernizer','js/libraries/wpl.modernizr.min.js','','','','',0,99.99,0),(109,'javascript','Handlebars',0,'',1,'handlebars','js/libraries/wpl.handlebars.min.js','','','','',0,109.99,2),(110,'javascript','qTips',0,'',1,'qtips','js/libraries/wpl.jquery.qtip.min.js','','','','',0,110.00,1),(111,'javascript','ImageLoaded',0,'',1,'imageloaded','js/libraries/wpl.imagesloaded.min.js','','','','',0,110.01,1),(114,'javascript','Spinner',0,'',1,'spinner','js/libraries/wpl.jquery.spin.min.js','','','','',0,100.10,2),(115,'javascript','Realtyna-Lightbox',0,'',1,'realtyna-lightbox','js/libraries/realtyna/realtyna.lightbox.min.js','','','','',0,200.10,2),(116,'javascript','Realtyna Framework',0,'',1,'realtyna-framework','js/libraries/realtyna/realtyna.min.js','','1','','',0,200.00,2),(117,'javascript','Realtyna Utility',0,'',1,'realtyna-utility','js/libraries/realtyna/realtyna.utility.min.js','','','','',0,200.01,2),(118,'javascript','Realtyna Tagging',0,'',1,'realtyna-tagging','js/libraries/realtyna/realtyna.tagging.min.js','','','','',0,202.00,2),(123,'javascript','jQuery Time Picker',0,'',1,'jquery-time-picker','js/libraries/wpl.jquery.timepicker.min.js','','','','',0,202.00,2),(124,'action','User Login',0,'Calls after user login',1,'wp_login','wpl_users->user_loggedin','10','2','','',0,99.99,2),(131,'service','WPL Service',0,'For running WPL service',1,'init','wpl->run','9999','','','',0,99.99,2),(137,'sidebar','Property Listing Bottom',0,'Appears in the bottom of property listing page',1,'wpl-plisting-bottom','','','','','',0,99.99,2),(140,'widget','WPL Google Maps Widget',0,'',1,'widgets.googlemap.main','widgets_init','WPL_googlemap_widget','','','',0,99.99,2),(141,'style','Backend Googlefont',0,'',1,'wpl-google-font-backend','//fonts.googleapis.com/css?family=Droid+Serif|Open+Sans|Lato|Scada|Archivo+Narrow','','','1','',0,36.00,1);
/*!40000 ALTER TABLE `lrwp_wpl_extensions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_filters`
--

DROP TABLE IF EXISTS `lrwp_wpl_filters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_filters` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(50) CHARACTER SET utf8 NOT NULL,
  `trigger` varchar(100) CHARACTER SET utf8 NOT NULL,
  `class_location` varchar(200) CHARACTER SET utf8 NOT NULL,
  `class_name` varchar(100) CHARACTER SET utf8 NOT NULL,
  `function_name` varchar(100) CHARACTER SET utf8 NOT NULL,
  `params` text CHARACTER SET utf8 NOT NULL,
  `enabled` tinyint(4) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `enabled` (`enabled`),
  KEY `enabled_2` (`enabled`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_filters`
--

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

--
-- Table structure for table `lrwp_wpl_item_categories`
--

DROP TABLE IF EXISTS `lrwp_wpl_item_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_item_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `item_type` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `category_name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `index` float(5,2) NOT NULL DEFAULT 99.00,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_item_categories`
--

LOCK TABLES `lrwp_wpl_item_categories` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_item_categories` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_item_categories` VALUES (1,'gallery','image',99.00),(2,'gallery','floorplan',99.01),(3,'attachment','attachment',99.00),(4,'addon_video','video',99.00);
/*!40000 ALTER TABLE `lrwp_wpl_item_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_items`
--

DROP TABLE IF EXISTS `lrwp_wpl_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `parent_kind` varchar(20) CHARACTER SET utf8 NOT NULL DEFAULT '0',
  `parent_id` int(10) DEFAULT NULL,
  `item_type` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `item_cat` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `item_name` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `creation_date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `edit_date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `item_extra1` text CHARACTER SET utf8 DEFAULT NULL,
  `item_extra2` text CHARACTER SET utf8 DEFAULT NULL,
  `item_extra3` text CHARACTER SET utf8 DEFAULT NULL,
  `item_extra4` text CHARACTER SET utf8 DEFAULT NULL,
  `item_extra5` text CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  `index` float(5,2) NOT NULL DEFAULT 99.00,
  PRIMARY KEY (`id`),
  KEY `parent_type` (`parent_kind`,`parent_id`),
  KEY `item_type` (`item_type`),
  KEY `item_cat` (`item_cat`),
  KEY `index` (`index`),
  KEY `parent_id` (`parent_id`,`item_type`),
  KEY `item_type_2` (`item_type`),
  KEY `item_cat_2` (`item_cat`),
  KEY `index_2` (`index`),
  KEY `parent_id_2` (`parent_id`,`item_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_items`
--

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

--
-- Table structure for table `lrwp_wpl_kinds`
--

DROP TABLE IF EXISTS `lrwp_wpl_kinds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_kinds` (
  `id` int(10) unsigned NOT NULL,
  `name` varchar(100) CHARACTER SET utf8 NOT NULL,
  `table` varchar(100) CHARACTER SET utf8 NOT NULL,
  `plural` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `dbcat` tinyint(4) NOT NULL DEFAULT 1,
  `addon_name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `map` varchar(10) CHARACTER SET utf8 DEFAULT 'marker',
  `index` float(6,3) NOT NULL DEFAULT 99.000,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_kinds`
--

LOCK TABLES `lrwp_wpl_kinds` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_kinds` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_kinds` VALUES (0,'Property','wpl_properties','Properties',1,'','marker',99.000,NULL,1),(2,'User','wpl_users','Users',0,'membership','marker',99.000,NULL,1);
/*!40000 ALTER TABLE `lrwp_wpl_kinds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_listing_types`
--

DROP TABLE IF EXISTS `lrwp_wpl_listing_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_listing_types` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `parent` int(10) unsigned NOT NULL DEFAULT 0,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `editable` tinyint(4) NOT NULL DEFAULT 2,
  `index` float(5,2) NOT NULL DEFAULT 99.00,
  `gicon` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `caption_img` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `name` varchar(250) CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `parent` (`parent`),
  KEY `parent_2` (`parent`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_listing_types`
--

LOCK TABLES `lrwp_wpl_listing_types` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_listing_types` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_listing_types` VALUES (1,0,0,1,1.00,'','','Sale'),(2,0,0,1,2.00,'','','Rental'),(3,0,0,1,3.00,'','','Vacational'),(9,1,1,2,0.00,'dot-blue.png','','For Sale'),(10,2,1,2,12.00,'dot-green.png','','For Rent'),(12,3,1,2,19.00,'dot-orange.png','','Vacation Rental');
/*!40000 ALTER TABLE `lrwp_wpl_listing_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_location1`
--

DROP TABLE IF EXISTS `lrwp_wpl_location1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_location1` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `enabled` tinyint(4) DEFAULT NULL,
  `name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `abbr` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `tax_percent` double DEFAULT NULL,
  `latitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `longitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `enabled` (`enabled`),
  KEY `enabled_2` (`enabled`)
) ENGINE=InnoDB AUTO_INCREMENT=276 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_location1`
--

LOCK TABLES `lrwp_wpl_location1` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_location1` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_location1` VALUES (1,0,'Afghanistan',NULL,0,'','',''),(2,0,'albania',NULL,0,'','',''),(3,0,'Algeria',NULL,0,'','',''),(4,0,'American Samoa',NULL,0,'','',''),(5,0,'Andorra',NULL,0,'','',''),(6,0,'Angola',NULL,0,'','',''),(7,0,'Anguilla',NULL,0,'','',''),(8,0,'Antarctica',NULL,0,'','',''),(9,0,'Antigua and Barbuda',NULL,0,'','',''),(10,0,'Argentina',NULL,0,'','',''),(11,0,'Armenia',NULL,0,'','',''),(12,0,'Aruba',NULL,0,'','',''),(13,0,'Ashmore and Cartier',NULL,0,'','',''),(14,0,'Australia',NULL,0,'','',''),(15,0,'Austria',NULL,0,'','',''),(16,0,'Azerbaijan',NULL,0,'','',''),(17,0,'The Bahamas',NULL,0,'','',''),(18,0,'Bahrain',NULL,0,'','',''),(19,0,'Baker Island',NULL,0,'','',''),(20,0,'Bangladesh',NULL,0,'','',''),(21,0,'Barbados',NULL,0,'','',''),(22,0,'Bassas da India',NULL,0,'','',''),(23,0,'Belarus',NULL,0,'','',''),(24,0,'Belgium',NULL,0,'','',''),(25,0,'Belize',NULL,0,'','',''),(26,0,'Benin',NULL,0,'','',''),(27,0,'Bermuda',NULL,0,'','',''),(28,0,'Bhutan',NULL,0,'','',''),(29,0,'Bolivia',NULL,0,'','',''),(30,0,'Bosnia and Herzegovina',NULL,0,'','',''),(31,0,'Botswana',NULL,0,'','',''),(32,0,'Bouvet Island',NULL,0,'','',''),(33,0,'Brazil',NULL,0,'','',''),(34,0,'British Indian Ocean Territory',NULL,0,'','',''),(35,0,'British Virgin Islands',NULL,0,'','',''),(36,0,'Brunei Darussalam',NULL,0,'','',''),(37,0,'Bulgaria',NULL,0,'','',''),(38,0,'Burkina Faso',NULL,0,'','',''),(39,0,'Burma',NULL,0,'','',''),(40,0,'Burundi',NULL,0,'','',''),(41,0,'Cambodia',NULL,0,'','',''),(42,0,'Cameroon',NULL,0,'','',''),(43,0,'Canada',NULL,0,'','',''),(44,0,'Cape Verde',NULL,0,'','',''),(45,0,'Cayman Islands',NULL,0,'','',''),(46,0,'Central African Republic',NULL,0,'','',''),(47,0,'Chad',NULL,0,'','',''),(48,0,'Chile',NULL,0,'','',''),(49,0,'China',NULL,0,'','',''),(50,0,'Christmas Island',NULL,0,'','',''),(51,0,'Clipperton Island',NULL,0,'','',''),(52,0,'Cocos (Keeling) Islands',NULL,0,'','',''),(53,0,'Colombia',NULL,0,'','',''),(54,0,'Comoros',NULL,0,'','',''),(55,0,'Congo ,  Democratic Republic of the',NULL,0,'','',''),(56,0,'Congo ,  Republic of the',NULL,0,'','',''),(57,0,'Cook Islands',NULL,0,'','',''),(58,0,'Coral Sea Islands',NULL,0,'','',''),(59,0,'Costa Rica',NULL,0,'','',''),(60,0,'Cote d\'Ivoire',NULL,0,'','',''),(61,0,'Croatia',NULL,0,'','',''),(62,0,'Cuba',NULL,0,'','',''),(63,0,'Cyprus',NULL,0,'','',''),(64,0,'Czech Republic',NULL,0,'','',''),(65,0,'Denmark',NULL,0,'','',''),(66,0,'Djibouti',NULL,0,'','',''),(67,0,'Dominica',NULL,0,'','',''),(68,0,'Dominican Republic',NULL,0,'','',''),(69,0,'East Timor',NULL,0,'','',''),(70,0,'Ecuador',NULL,0,'','',''),(71,0,'Egypt',NULL,0,'','',''),(72,0,'El Salvador',NULL,0,'','',''),(73,0,'Equatorial Guinea',NULL,0,'','',''),(74,0,'Eritrea',NULL,0,'','',''),(75,0,'Estonia',NULL,0,'','',''),(76,0,'Ethiopia',NULL,0,'','',''),(77,0,'Europa Island',NULL,0,'','',''),(78,0,'Falkland Islands (Islas Malvinas)',NULL,0,'','',''),(79,0,'Faroe Islands',NULL,0,'','',''),(80,0,'Fiji',NULL,0,'','',''),(81,0,'Finland',NULL,0,'','',''),(82,0,'France',NULL,0,'','',''),(83,0,'France ,  Metropolitan',NULL,0,'','',''),(84,0,'French Guiana',NULL,0,'','',''),(85,0,'French Polynesia',NULL,0,'','',''),(86,0,'French Southern and Antarctic Lands',NULL,0,'','',''),(87,0,'Gabon',NULL,0,'','',''),(88,0,'The Gambia',NULL,0,'','',''),(89,0,'Gaza Strip',NULL,0,'','',''),(90,0,'Georgia',NULL,0,'','',''),(91,0,'Germany',NULL,0,'','',''),(92,0,'Ghana',NULL,0,'','',''),(93,0,'Gibraltar',NULL,0,'','',''),(94,0,'Glorioso Islands',NULL,0,'','',''),(95,0,'Greece',NULL,0,'','',''),(96,0,'Greenland',NULL,0,'','',''),(97,0,'Grenada',NULL,0,'','',''),(98,0,'Guadeloupe',NULL,0,'','',''),(99,0,'Guam',NULL,0,'','',''),(100,0,'Guatemala',NULL,0,'','',''),(101,0,'Guernsey',NULL,0,'','',''),(102,0,'Guinea',NULL,0,'','',''),(103,0,'Guinea-Bissau',NULL,0,'','',''),(104,0,'Guyana',NULL,0,'','',''),(105,0,'Haiti',NULL,0,'','',''),(106,0,'Heard Island and McDonald Islands',NULL,0,'','',''),(107,0,'Holy See (Vatican City)',NULL,0,'','',''),(108,0,'Honduras',NULL,0,'','',''),(109,0,'Hong Kong (SAR)',NULL,0,'','',''),(110,0,'Howland Island',NULL,0,'','',''),(111,0,'Hungary',NULL,0,'','',''),(112,0,'Iceland',NULL,0,'','',''),(113,0,'India',NULL,0,'','',''),(114,0,'Indonesia',NULL,0,'','',''),(115,0,'Iran',NULL,0,'','',''),(116,0,'Iraq',NULL,0,'','',''),(117,0,'Ireland',NULL,0,'','',''),(118,0,'Israel',NULL,0,'','',''),(119,0,'Italy',NULL,0,'','',''),(120,0,'Jamaica',NULL,0,'','',''),(121,0,'Jan Mayen',NULL,0,'','',''),(122,0,'Japan',NULL,0,'','',''),(123,0,'Jarvis Island',NULL,0,'','',''),(124,0,'Jersey',NULL,0,'','',''),(125,0,'Johnston Atoll',NULL,0,'','',''),(126,0,'Jordan',NULL,0,'','',''),(127,0,'Juan de Nova Island',NULL,0,'','',''),(128,0,'Kazakhstan',NULL,0,'','',''),(129,0,'Kenya',NULL,0,'','',''),(130,0,'Kingman Reef',NULL,0,'','',''),(131,0,'Kiribati',NULL,0,'','',''),(132,0,'Korea ,  North',NULL,0,'','',''),(133,0,'Korea ,  South',NULL,0,'','',''),(134,0,'Kuwait',NULL,0,'','',''),(135,0,'Kyrgyzstan',NULL,0,'','',''),(136,0,'Laos',NULL,0,'','',''),(137,0,'Latvia',NULL,0,'','',''),(138,0,'Lebanon',NULL,0,'','',''),(139,0,'Lesotho',NULL,0,'','',''),(140,0,'Liberia',NULL,0,'','',''),(141,0,'Libya',NULL,0,'','',''),(142,0,'Liechtenstein',NULL,0,'','',''),(143,0,'Lithuania',NULL,0,'','',''),(144,0,'Luxembourg',NULL,0,'','',''),(145,0,'Macao',NULL,0,'','',''),(146,0,'Macedonia ,  The Former Yugoslav Republic of',NULL,0,'','',''),(147,0,'Madagascar',NULL,0,'','',''),(148,0,'Malawi',NULL,0,'','',''),(149,0,'Malaysia',NULL,0,'','',''),(150,0,'Maldives',NULL,0,'','',''),(151,0,'Mali',NULL,0,'','',''),(152,0,'Malta',NULL,0,'','',''),(153,0,'Man ,  Isle of',NULL,0,'','',''),(154,0,'Marshall Islands',NULL,0,'','',''),(155,0,'Martinique',NULL,0,'','',''),(156,0,'Mauritania',NULL,0,'','',''),(157,0,'Mauritius',NULL,0,'','',''),(158,0,'Mayotte',NULL,0,'','',''),(159,0,'Mexico',NULL,0,'','',''),(160,0,'Micronesia ,  Federated States of',NULL,0,'','',''),(161,0,'Midway Islands',NULL,0,'','',''),(162,0,'Miscellaneous (French)',NULL,0,'','',''),(163,0,'Moldova',NULL,0,'','',''),(164,0,'Monaco',NULL,0,'','',''),(165,0,'Mongolia',NULL,0,'','',''),(166,0,'Montenegro',NULL,0,'','',''),(167,0,'Montserrat',NULL,0,'','',''),(168,0,'Morocco',NULL,0,'','',''),(169,0,'Mozambique',NULL,0,'','',''),(170,0,'Myanmar',NULL,0,'','',''),(171,0,'Namibia',NULL,0,'','',''),(172,0,'Nauru',NULL,0,'','',''),(173,0,'Navassa Island',NULL,0,'','',''),(174,0,'Nepal',NULL,0,'','',''),(175,0,'Netherlands',NULL,0,'','',''),(176,0,'Netherlands Antilles',NULL,0,'','',''),(177,0,'New Caledonia',NULL,0,'','',''),(178,0,'New Zealand',NULL,0,'','',''),(179,0,'Nicaragua',NULL,0,'','',''),(180,0,'Niger',NULL,0,'','',''),(181,0,'Nigeria',NULL,0,'','',''),(182,0,'Niue',NULL,0,'','',''),(183,0,'Norfolk Island',NULL,0,'','',''),(184,0,'Northern Mariana Islands',NULL,0,'','',''),(185,0,'Norway',NULL,0,'','',''),(186,0,'Oman',NULL,0,'','',''),(187,0,'Pakistan',NULL,0,'','',''),(188,0,'Palau',NULL,0,'','',''),(189,0,'Palmyra Atoll',NULL,0,'','',''),(190,0,'Panama',NULL,0,'','',''),(191,0,'Papua New Guinea',NULL,0,'','',''),(192,0,'Paracel Islands',NULL,0,'','',''),(193,0,'Paraguay',NULL,0,'','',''),(194,0,'Peru',NULL,0,'','',''),(195,0,'Philippines',NULL,0,'','',''),(196,0,'Pitcairn Islands',NULL,0,'','',''),(197,0,'Poland',NULL,0,'','',''),(198,0,'Portugal',NULL,0,'','',''),(199,0,'Puerto Rico',NULL,0,'','',''),(200,0,'Qatar',NULL,0,'','',''),(201,0,'R',NULL,0,'','',''),(202,0,'Romania',NULL,0,'','',''),(203,0,'Russia',NULL,0,'','',''),(204,0,'Rwanda',NULL,0,'','',''),(205,0,'Saint Helena',NULL,0,'','',''),(206,0,'Saint Kitts and Nevis',NULL,0,'','',''),(207,0,'Saint Lucia',NULL,0,'','',''),(208,0,'Saint Pierre and Miquelon',NULL,0,'','',''),(209,0,'Saint Vincent and the Grenadines',NULL,0,'','',''),(210,0,'Samoa',NULL,0,'','',''),(211,0,'San Marino',NULL,0,'','',''),(212,0,'S?o Tom',NULL,0,'','',''),(213,0,'Saudi Arabia',NULL,0,'','',''),(214,0,'Senegal',NULL,0,'','',''),(215,0,'Serbia',NULL,0,'','',''),(216,0,'Serbia and Montenegro',NULL,0,'','',''),(217,0,'Seychelles',NULL,0,'','',''),(218,0,'Sierra Leone',NULL,0,'','',''),(219,0,'Singapore',NULL,0,'','',''),(220,0,'Slovakia',NULL,0,'','',''),(221,0,'Slovenia',NULL,0,'','',''),(222,0,'Solomon Islands',NULL,0,'','',''),(223,0,'Somalia',NULL,0,'','',''),(224,0,'South Africa',NULL,0,'','',''),(225,0,'South Georgia and the South Sandwich Islands',NULL,0,'','',''),(226,0,'Spain',NULL,0,'','',''),(227,0,'Spratly Islands',NULL,0,'','',''),(228,0,'Sri Lanka',NULL,0,'','',''),(229,0,'Sudan',NULL,0,'','',''),(230,0,'Suriname',NULL,0,'','',''),(231,0,'Svalbard',NULL,0,'','',''),(232,0,'Swaziland',NULL,0,'','',''),(233,0,'Sweden',NULL,0,'','',''),(234,0,'Switzerland',NULL,0,'','',''),(235,0,'Syria',NULL,0,'','',''),(236,0,'Taiwan',NULL,0,'','',''),(237,0,'Tajikistan',NULL,0,'','',''),(238,0,'Tanzania',NULL,0,'','',''),(239,0,'Thailand',NULL,0,'','',''),(240,0,'Togo',NULL,0,'','',''),(241,0,'Tokelau',NULL,0,'','',''),(242,0,'Tonga',NULL,0,'','',''),(243,0,'Trinidad and Tobago',NULL,0,'','',''),(244,0,'Tromelin Island',NULL,0,'','',''),(245,0,'Tunisia',NULL,0,'','',''),(246,0,'Turkey',NULL,0,'','',''),(247,0,'Turkmenistan',NULL,0,'','',''),(248,0,'Turks and Caicos Islands',NULL,0,'','',''),(249,0,'Tuvalu',NULL,0,'','',''),(250,0,'Uganda',NULL,0,'','',''),(251,0,'Ukraine',NULL,0,'','',''),(252,0,'United Arab Emirates',NULL,0,'','',''),(253,0,'United Kingdom',NULL,0,'','',''),(254,1,'United States','US',0,'','',''),(255,0,'United States Minor Outlying Islands',NULL,0,'','',''),(256,0,'Uruguay',NULL,0,'','',''),(257,0,'Uzbekistan',NULL,0,'','',''),(258,0,'Vanuatu',NULL,0,'','',''),(259,0,'Venezuela',NULL,0,'','',''),(260,0,'Vietnam',NULL,0,'','',''),(261,0,'Virgin Islands',NULL,0,'','',''),(262,0,'Virgin Islands (UK)',NULL,0,'','',''),(263,0,'Virgin Islands (US)',NULL,0,'','',''),(264,0,'Wake Island',NULL,0,'','',''),(265,0,'Wallis and Futuna',NULL,0,'','',''),(266,0,'West Bank',NULL,0,'','',''),(267,0,'Western Sahara',NULL,0,'','',''),(268,0,'Western Samoa',NULL,0,'','',''),(269,0,'World',NULL,0,'','',''),(270,0,'Yemen',NULL,0,'','',''),(271,0,'Yugoslavia',NULL,0,'','',''),(272,0,'Zaire',NULL,0,'','',''),(273,0,'Zambia',NULL,0,'','',''),(274,0,'Zimbabwe',NULL,0,'','',''),(275,0,'Palestinian Territory ,  Occupied',NULL,0,'','','');
/*!40000 ALTER TABLE `lrwp_wpl_location1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_location2`
--

DROP TABLE IF EXISTS `lrwp_wpl_location2`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_location2` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `abbr` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `tax_percent` double DEFAULT NULL,
  `latitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `longitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `parent` (`parent`)
) ENGINE=InnoDB AUTO_INCREMENT=6061 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_location2`
--

LOCK TABLES `lrwp_wpl_location2` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_location2` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_location2` VALUES (6001,254,'Alabama','AL',0,'','',''),(6002,254,'Alaska','AK',0,'','',''),(6003,254,'American Samoa','AS',0,'','',''),(6004,254,'Arizona','AZ',0,'','',''),(6005,254,'Arkansas','AR',0,'','',''),(6006,254,'California','CA',0,'','',''),(6007,254,'Colorado','CO',0,'','',''),(6008,254,'Connecticut','CT',0,'','',''),(6009,254,'Delaware','DE',0,'','',''),(6010,254,'District Of Columbia','DC',0,'','',''),(6011,254,'Federated States of Micronesia','FM',0,'','',''),(6012,254,'Florida','FL',0,'','',''),(6013,254,'Georgia','GA',0,'','',''),(6014,254,'Guam','GU',0,'','',''),(6015,254,'Hawaii','HI',0,'','',''),(6016,254,'Idaho','ID',0,'','',''),(6017,254,'Illinois','IL',0,'','',''),(6018,254,'Indiana','IN',0,'','',''),(6019,254,'Iowa','IA',0,'','',''),(6020,254,'Kansas','KS',0,'','',''),(6021,254,'Kentucky','KY',0,'','',''),(6022,254,'Louisiana','LA',0,'','',''),(6023,254,'Maine','ME',0,'','',''),(6024,254,'Marshall Islands','MH',0,'','',''),(6025,254,'Maryland','MD',0,'','',''),(6026,254,'Massachusetts','MA',0,'','',''),(6027,254,'Michigan','MI',0,'','',''),(6028,254,'Minnesota','MN',0,'','',''),(6029,254,'Minor Outlying Islands','UM',0,'','',''),(6030,254,'Mississippi','MS',0,'','',''),(6031,254,'Missouri','MO',0,'','',''),(6032,254,'Montana','MT',0,'','',''),(6033,254,'Nebraska','NE',0,'','',''),(6034,254,'Nevada','NV',0,'','',''),(6035,254,'New Hampshire','NH',0,'','',''),(6036,254,'New Jersey','NJ',0,'','',''),(6037,254,'New Mexico','NM',0,'','',''),(6038,254,'New York','NY',0,'','',''),(6039,254,'North Carolina','NC',0,'','',''),(6040,254,'North Dakota','ND',0,'','',''),(6041,254,'Northern Mariana Islands','MP',0,'','',''),(6042,254,'Ohio','OH',0,'','',''),(6043,254,'Oklahoma','OK',0,'','',''),(6044,254,'Oregon','OR',0,'','',''),(6045,254,'Palau','PW',0,'','',''),(6046,254,'Pennsylvania','PA',0,'','',''),(6047,254,'Puerto Rico','PR',0,'','',''),(6048,254,'Rhode Island','RI',0,'','',''),(6049,254,'South Carolina','SC',0,'','',''),(6050,254,'South Dakota','SD',0,'','',''),(6051,254,'Tennessee','TN',0,'','',''),(6052,254,'Texas','TX',0,'','',''),(6053,254,'Utah','UT',0,'','',''),(6054,254,'Vermont','VT',0,'','',''),(6055,254,'Virgin Islands','VI',0,'','',''),(6056,254,'Virginia','VA',0,'','',''),(6057,254,'Washington','WA',0,'','',''),(6058,254,'West Virginia','WV',0,'','',''),(6059,254,'Wisconsin','WI',0,'','',''),(6060,254,'Wyoming','WY',0,'','','');
/*!40000 ALTER TABLE `lrwp_wpl_location2` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_location3`
--

DROP TABLE IF EXISTS `lrwp_wpl_location3`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_location3` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `abbr` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `tax_percent` double DEFAULT NULL,
  `latitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `longitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `parent` (`parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_location3`
--

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

--
-- Table structure for table `lrwp_wpl_location4`
--

DROP TABLE IF EXISTS `lrwp_wpl_location4`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_location4` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `abbr` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `tax_percent` double DEFAULT NULL,
  `latitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `longitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `parent` (`parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_location4`
--

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

--
-- Table structure for table `lrwp_wpl_location5`
--

DROP TABLE IF EXISTS `lrwp_wpl_location5`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_location5` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `abbr` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `tax_percent` double DEFAULT NULL,
  `latitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `longitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `parent` (`parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_location5`
--

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

--
-- Table structure for table `lrwp_wpl_location6`
--

DROP TABLE IF EXISTS `lrwp_wpl_location6`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_location6` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `abbr` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `tax_percent` double DEFAULT NULL,
  `latitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `longitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `parent` (`parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_location6`
--

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

--
-- Table structure for table `lrwp_wpl_location7`
--

DROP TABLE IF EXISTS `lrwp_wpl_location7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_location7` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 1,
  `name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `abbr` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `tax_percent` double DEFAULT NULL,
  `latitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `longitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `parent` (`parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_location7`
--

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

--
-- Table structure for table `lrwp_wpl_locationtextsearch`
--

DROP TABLE IF EXISTS `lrwp_wpl_locationtextsearch`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_locationtextsearch` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `location_text` text CHARACTER SET utf8 DEFAULT NULL,
  `count` int(10) DEFAULT NULL,
  `counts` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `location_text` (`location_text`(255)),
  KEY `location_text_2` (`location_text`(255))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_locationtextsearch`
--

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

--
-- Table structure for table `lrwp_wpl_locationzips`
--

DROP TABLE IF EXISTS `lrwp_wpl_locationzips`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_locationzips` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `parent` int(11) DEFAULT NULL,
  `country_id` int(11) DEFAULT NULL,
  `median_income` int(11) DEFAULT NULL,
  `average_hvalue` int(11) DEFAULT NULL,
  `distance_to_downtown` int(11) DEFAULT NULL,
  `school_rating` tinyint(4) DEFAULT NULL,
  `tax_rate` int(11) DEFAULT NULL,
  `population` int(11) DEFAULT NULL,
  `boundary` text CHARACTER SET utf8 DEFAULT NULL,
  `color` varchar(6) CHARACTER SET utf8 DEFAULT '',
  `hcolor` varchar(6) CHARACTER SET utf8 DEFAULT '',
  `longitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `latitude` varchar(25) CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `parent` (`parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_locationzips`
--

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

--
-- Table structure for table `lrwp_wpl_logs`
--

DROP TABLE IF EXISTS `lrwp_wpl_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_logs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) NOT NULL,
  `addon_id` int(10) unsigned NOT NULL,
  `section` varchar(100) CHARACTER SET utf8 NOT NULL,
  `status` varchar(100) CHARACTER SET utf8 NOT NULL,
  `log_text` text CHARACTER SET utf8 NOT NULL,
  `log_date` datetime NOT NULL,
  `ip` varchar(50) CHARACTER SET utf8 NOT NULL,
  `priority` tinyint(4) NOT NULL,
  `params` text CHARACTER SET utf8 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_logs`
--

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

--
-- Table structure for table `lrwp_wpl_menus`
--

DROP TABLE IF EXISTS `lrwp_wpl_menus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_menus` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `client` varchar(20) CHARACTER SET latin1 NOT NULL DEFAULT 'backend',
  `type` varchar(10) CHARACTER SET latin1 NOT NULL DEFAULT 'submenu',
  `parent` varchar(50) CHARACTER SET latin1 NOT NULL DEFAULT 'WPL_main_menu',
  `page_title` varchar(100) CHARACTER SET latin1 NOT NULL,
  `menu_title` varchar(100) CHARACTER SET latin1 NOT NULL,
  `capability` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT 'current',
  `menu_slug` varchar(100) CHARACTER SET latin1 NOT NULL,
  `function` varchar(100) CHARACTER SET latin1 NOT NULL,
  `separator` tinyint(4) NOT NULL DEFAULT 0,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `index` float(6,3) NOT NULL DEFAULT 1.000,
  `position` float NOT NULL,
  `dashboard` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_menus`
--

LOCK TABLES `lrwp_wpl_menus` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_menus` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_menus` VALUES (1,'backend','menu','','WPL','WPL','admin','WPL_main_menu','b:wpl:admin_home',0,1,1.000,4.5,1),(2,'backend','submenu','WPL_main_menu','Data Structure','Data Structure','admin','wpl_admin_data_structure','b:data_structure:home',0,1,1.000,0,1),(3,'backend','submenu','WPL_main_menu','Settings','Settings','admin','wpl_admin_settings','b:settings:home',0,1,2.000,0,1),(4,'backend','submenu','WPL_main_menu','User Manager','User Manager','admin','wpl_admin_user_manager','b:users:user_manager',1,1,3.000,0,1),(5,'backend','submenu','WPL_main_menu','My Profile','My Profile','current','wpl_admin_profile','b:users:profile',0,1,5.000,0,1),(6,'backend','submenu','WPL_main_menu','Add Listing','Add Listing','current','wpl_admin_add_listing','b:listing:wizard',1,1,6.000,0,1),(7,'backend','submenu','WPL_main_menu','Listing Manager','Listing Manager','current','wpl_admin_listings','b:listings:manager',0,1,7.000,0,1),(8,'backend','submenu','WPL_main_menu','Locations','Locations','admin','wpl_admin_locations','b:location_manager:home',0,1,1.100,0,1),(11,'backend','submenu','WPL_main_menu','Flex','Flex','admin','wpl_admin_flex','b:flex:home',0,1,1.050,0,1),(12,'backend','submenu','WPL_main_menu','Activity Manager','Activity Manager','admin','wpl_admin_activity','b:activity_manager:home',0,1,2.010,0,0),(13,'backend','submenu','WPL_main_menu','Notifications','Notifications','admin','wpl_admin_notifications','b:notifications:home',0,1,2.050,0,0),(341,'backend','submenu','WPL_main_menu','Organic IDX','Organic IDX','admin','wpl_addon_idx','b:addon_idx:home',1,1,341.000,0,1),(999,'backend','submenu','WPL_main_menu','Hosting BenchMarker','Hosting BenchMarker','admin','wpl_benchmarker','b:benchmarker:home',1,1,999.000,0,1);
/*!40000 ALTER TABLE `lrwp_wpl_menus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_notifications`
--

DROP TABLE IF EXISTS `lrwp_wpl_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `description` varchar(250) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `template` varchar(250) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `subject` varchar(250) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `additional_memberships` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `additional_users` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `additional_emails` text CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `options` text CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `params` text CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_notifications`
--

LOCK TABLES `lrwp_wpl_notifications` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_notifications` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_notifications` VALUES (2,'Contact to listing agent from listing page','contact_agent','New Contact','','','',NULL,'',1),(3,'Contact to agent from profile page','contact_profile','New Profile Contact','','','',NULL,'',1),(5,'Sends after registration process.','user_registered','Your Account has been registered.','','','',NULL,'',1),(6,'Send to friend','send_to_friend','Send to friend','','','',NULL,'',1),(7,'Request a visit','request_a_visit','Request a visit','','','',NULL,'',1),(8,'When a listing creates','listing_create','New listing','','','',NULL,'',0),(10,'Adding Price Request notification','adding_price_request','A new price request','','','',NULL,NULL,1);
/*!40000 ALTER TABLE `lrwp_wpl_notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_properties`
--

DROP TABLE IF EXISTS `lrwp_wpl_properties`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_properties` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `kind` tinyint(4) unsigned NOT NULL DEFAULT 0 COMMENT '0=property,1=complex',
  `deleted` tinyint(1) NOT NULL DEFAULT 0,
  `mls_id` varchar(30) CHARACTER SET utf8 DEFAULT NULL,
  `mls_id_num` bigint(20) DEFAULT NULL,
  `parent` int(11) unsigned NOT NULL DEFAULT 0 COMMENT 'Parent',
  `pic_numb` mediumint(9) NOT NULL DEFAULT 0,
  `user_id` smallint(6) NOT NULL DEFAULT 0,
  `listing` int(11) NOT NULL DEFAULT 0,
  `property_type` int(11) NOT NULL DEFAULT 0,
  `location1_id` int(11) NOT NULL DEFAULT 0,
  `location2_id` int(11) NOT NULL DEFAULT 0,
  `location3_id` int(11) NOT NULL DEFAULT 0,
  `location4_id` int(11) NOT NULL DEFAULT 0,
  `location5_id` int(11) NOT NULL DEFAULT 0,
  `location6_id` int(11) NOT NULL DEFAULT 0,
  `location7_id` int(11) NOT NULL DEFAULT 0,
  `location1_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location2_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location3_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location4_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location5_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location6_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location7_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `show_address` tinyint(4) NOT NULL DEFAULT 1,
  `price` double NOT NULL DEFAULT 0,
  `price_unit` int(11) NOT NULL DEFAULT 0,
  `price_si` double NOT NULL DEFAULT 0,
  `price_period` smallint(6) NOT NULL DEFAULT 0,
  `bedrooms` float NOT NULL DEFAULT 0,
  `rooms` float NOT NULL DEFAULT 0,
  `bathrooms` float NOT NULL DEFAULT 0,
  `living_area` float NOT NULL DEFAULT 0,
  `living_area_unit` int(11) NOT NULL DEFAULT 0,
  `living_area_si` float NOT NULL DEFAULT 0,
  `lot_area` float NOT NULL DEFAULT 0,
  `lot_area_unit` int(11) NOT NULL DEFAULT 0,
  `lot_area_si` float NOT NULL DEFAULT 0,
  `googlemap_lt` decimal(10,8) NOT NULL DEFAULT 0.00000000,
  `googlemap_ln` decimal(11,8) NOT NULL DEFAULT 0.00000000,
  `finalized` tinyint(4) NOT NULL DEFAULT 0,
  `add_date` datetime DEFAULT NULL,
  `last_finalize_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expire_days` int(11) NOT NULL DEFAULT 0,
  `confirmed` tinyint(4) NOT NULL DEFAULT 0,
  `expired` tinyint(4) NOT NULL DEFAULT 0,
  `build_year` int(11) NOT NULL DEFAULT 0,
  `zip_id` int(11) NOT NULL DEFAULT 0,
  `zip_name` varchar(20) CHARACTER SET utf8 DEFAULT NULL,
  `last_modified_time_stamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `post_code` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `meta_description` text CHARACTER SET utf8 DEFAULT NULL,
  `meta_description_manual` tinyint(4) unsigned NOT NULL DEFAULT 0,
  `meta_keywords` text CHARACTER SET utf8 DEFAULT NULL,
  `meta_keywords_manual` tinyint(4) unsigned NOT NULL DEFAULT 0,
  `street_no` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `sp_featured` tinyint(4) NOT NULL DEFAULT 0,
  `sp_hot` tinyint(4) NOT NULL DEFAULT 0,
  `sp_openhouse` tinyint(4) NOT NULL DEFAULT 0,
  `sp_forclosure` tinyint(4) NOT NULL DEFAULT 0,
  `textsearch` text CHARACTER SET utf8 DEFAULT NULL,
  `location_text` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `field_42` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `field_312` varchar(70) CHARACTER SET utf8 DEFAULT NULL,
  `field_313` varchar(70) CHARACTER SET utf8 DEFAULT NULL,
  `field_308` text CHARACTER SET utf8 DEFAULT NULL,
  `field_7` int(11) NOT NULL DEFAULT 0,
  `n_103` tinyint(4) DEFAULT NULL,
  `n_103_distance` int(11) DEFAULT NULL,
  `n_103_distance_by` tinyint(4) DEFAULT NULL,
  `n_105` tinyint(4) DEFAULT NULL,
  `n_105_distance` int(11) DEFAULT NULL,
  `n_105_distance_by` tinyint(4) DEFAULT NULL,
  `n_107` tinyint(4) DEFAULT NULL,
  `n_107_distance` int(11) DEFAULT NULL,
  `n_107_distance_by` tinyint(4) DEFAULT NULL,
  `n_108` tinyint(4) DEFAULT NULL,
  `n_108_distance` int(11) DEFAULT NULL,
  `n_108_distance_by` tinyint(4) DEFAULT NULL,
  `n_109` tinyint(4) DEFAULT NULL,
  `n_109_distance` int(11) DEFAULT NULL,
  `n_109_distance_by` tinyint(4) DEFAULT NULL,
  `f_130_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_130` tinyint(4) DEFAULT NULL,
  `f_131_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_131` tinyint(4) DEFAULT NULL,
  `f_132_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_132` tinyint(4) DEFAULT NULL,
  `f_133_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_133` tinyint(4) DEFAULT NULL,
  `f_134_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_134` tinyint(4) DEFAULT NULL,
  `f_136_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_136` tinyint(4) DEFAULT NULL,
  `f_137_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_137` tinyint(4) DEFAULT NULL,
  `f_138_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_138` tinyint(4) DEFAULT NULL,
  `f_139_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_139` tinyint(4) DEFAULT NULL,
  `f_140_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_140` tinyint(4) DEFAULT NULL,
  `f_141_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_141` tinyint(4) DEFAULT NULL,
  `f_144_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_144` tinyint(4) DEFAULT NULL,
  `f_146_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_146` tinyint(4) DEFAULT NULL,
  `f_147_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_147` tinyint(4) DEFAULT NULL,
  `f_149_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_149` tinyint(4) DEFAULT NULL,
  `f_150_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_150` tinyint(4) DEFAULT NULL,
  `f_151_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_151` tinyint(4) DEFAULT NULL,
  `f_152_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_152` tinyint(4) DEFAULT NULL,
  `f_156_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_156` tinyint(4) DEFAULT NULL,
  `f_157_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_157` tinyint(4) DEFAULT NULL,
  `f_159_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_159` tinyint(4) DEFAULT NULL,
  `f_161_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_161` tinyint(4) DEFAULT NULL,
  `f_163_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_163` tinyint(4) DEFAULT NULL,
  `f_165_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_165` tinyint(4) DEFAULT NULL,
  `f_166_options` text CHARACTER SET utf8 DEFAULT NULL,
  `f_166` tinyint(4) DEFAULT NULL,
  `ref_id` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `field_54` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `half_bathrooms` float NOT NULL DEFAULT 0,
  `field_55` float NOT NULL DEFAULT 0,
  `rendered` text CHARACTER SET utf8 DEFAULT NULL,
  `alias` text CHARACTER SET utf8 DEFAULT NULL,
  `source` varchar(100) CHARACTER SET utf8 NOT NULL DEFAULT 'wpl',
  `last_sync_date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `street_suffix` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `category_id` (`property_type`),
  KEY `state_id` (`location2_id`),
  KEY `country_id` (`location1_id`),
  KEY `listing_type_id` (`listing`),
  KEY `bedrooms` (`bedrooms`),
  KEY `bathrooms` (`bathrooms`),
  KEY `last_modified_time_stamp` (`last_modified_time_stamp`),
  KEY `mls_id` (`mls_id`),
  KEY `kind` (`kind`,`deleted`,`finalized`,`confirmed`,`expired`),
  KEY `user_id` (`user_id`),
  KEY `googlemap_lt` (`googlemap_lt`,`googlemap_ln`),
  KEY `show_address` (`show_address`),
  KEY `price_si` (`price_si`),
  KEY `add_date` (`add_date`),
  KEY `ref_id` (`ref_id`),
  KEY `mls_id_num` (`mls_id_num`),
  KEY `last_finalize_date` (`last_finalize_date`),
  KEY `kind_2` (`kind`,`deleted`,`finalized`,`confirmed`,`expired`),
  KEY `user_id_2` (`user_id`),
  KEY `googlemap_lt_2` (`googlemap_lt`,`googlemap_ln`),
  KEY `show_address_2` (`show_address`),
  KEY `price_si_2` (`price_si`),
  KEY `add_date_2` (`add_date`),
  KEY `ref_id_2` (`ref_id`),
  KEY `mls_id_num_2` (`mls_id_num`),
  KEY `last_finalize_date_2` (`last_finalize_date`),
  FULLTEXT KEY `textsearch` (`textsearch`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_properties`
--

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

--
-- Table structure for table `lrwp_wpl_properties2`
--

DROP TABLE IF EXISTS `lrwp_wpl_properties2`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_properties2` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `att_numb` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `sent_numb` smallint(5) unsigned NOT NULL DEFAULT 0,
  `contact_numb` smallint(5) unsigned NOT NULL DEFAULT 0,
  `inc_in_listings_numb` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `visit_time` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `visit_date` datetime DEFAULT NULL,
  `vids_numb` tinyint(3) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_properties2`
--

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

--
-- Table structure for table `lrwp_wpl_property_types`
--

DROP TABLE IF EXISTS `lrwp_wpl_property_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_property_types` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `parent` int(11) NOT NULL DEFAULT 0,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `editable` tinyint(4) NOT NULL DEFAULT 1,
  `index` float(5,2) NOT NULL DEFAULT 99.00,
  `listing` int(11) NOT NULL DEFAULT 0,
  `name` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
  `show_marker` tinyint(4) DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `parent` (`parent`),
  KEY `parent_2` (`parent`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_property_types`
--

LOCK TABLES `lrwp_wpl_property_types` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_property_types` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_property_types` VALUES (1,0,0,2,0.00,0,'Residential',1),(2,0,0,2,0.00,0,'Commercial',1),(3,0,0,2,0.00,0,'Land',1),(6,1,1,2,7.00,0,'Apartment',1),(7,1,1,2,32.00,0,'Villa',1),(13,2,1,2,6.00,0,'Office',1),(14,3,1,2,14.00,0,'Land',1);
/*!40000 ALTER TABLE `lrwp_wpl_property_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_room_types`
--

DROP TABLE IF EXISTS `lrwp_wpl_room_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_room_types` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `index` float(5,2) NOT NULL DEFAULT 99.00,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `icon` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_room_types`
--

LOCK TABLES `lrwp_wpl_room_types` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_room_types` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_room_types` VALUES (1,'Master Bedroom',7.00,1,'default.png'),(2,'Guest Room',3.00,1,'default.png'),(3,'Living Room',2.00,1,'default.png'),(4,'Walk in Closet',8.00,1,'hanger.png'),(5,'Bathroom',9.00,1,'shower.png'),(6,'Laundry room',10.00,1,'cloth.png'),(7,'Kitchen',5.00,1,'default.png'),(8,'Story room',11.00,1,'default.png'),(9,'Study room',12.00,1,'book.png'),(20,'Bedroom',1.00,1,'bed.png'),(21,'Dining Room',4.00,1,'spoon_fork.png'),(22,'Extra Room',6.00,1,'default.png'),(23,'Family room',14.00,1,'tv.png');
/*!40000 ALTER TABLE `lrwp_wpl_room_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_setting_categories`
--

DROP TABLE IF EXISTS `lrwp_wpl_setting_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_setting_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
  `showable` tinyint(4) NOT NULL DEFAULT 1,
  `index` float(5,2) NOT NULL DEFAULT 99.00,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_setting_categories`
--

LOCK TABLES `lrwp_wpl_setting_categories` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_setting_categories` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_setting_categories` VALUES (1,'Global',1,99.00),(2,'Gallery',1,99.00),(3,'Locations',1,99.00),(4,'SEO',1,99.00),(5,'Notifications',1,99.00);
/*!40000 ALTER TABLE `lrwp_wpl_setting_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_settings`
--

DROP TABLE IF EXISTS `lrwp_wpl_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_settings` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `setting_name` varchar(250) CHARACTER SET latin1 DEFAULT NULL,
  `setting_value` text CHARACTER SET utf8 DEFAULT NULL,
  `showable` tinyint(4) NOT NULL DEFAULT 1,
  `category` int(10) NOT NULL DEFAULT 1,
  `type` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT 'text',
  `title` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  `options` text CHARACTER SET utf8 DEFAULT NULL,
  `index` float(5,2) NOT NULL DEFAULT 99.00,
  PRIMARY KEY (`id`),
  KEY `setting_name` (`setting_name`),
  KEY `category` (`category`),
  KEY `setting_name_2` (`setting_name`),
  KEY `category_2` (`category`)
) ENGINE=InnoDB AUTO_INCREMENT=343 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_settings`
--

LOCK TABLES `lrwp_wpl_settings` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_settings` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_settings` VALUES (1,'zipcode_parent_level','4',1,3,'select','Zipcode parent level','','{\"values\":[{\"key\":1,\"value\":\"Location1\"},{\"key\":2,\"value\":\"Location2\"},{\"key\":3,\"value\":\"Location3\"},{\"key\":4,\"value\":\"Location4\"},{\"key\":5,\"value\":\"Location5\"},{\"key\":6,\"value\":\"Location6\"},\r\n{\"key\":7,\"value\":\"Location7\"}]} ',5.00),(2,'cache','1',1,1,'select','Cache','','{\"values\":[{\"key\":0,\"value\":\"Disabled\"},{\"key\":1,\"value\":\"Enabled\"}]}',0.10),(5,'image_resize_method','0',1,2,'select','Image resize method','','{\"values\":[{\"key\":0,\"value\":\"Resize\"},{\"key\":1,\"value\":\"Crop Resize\"}, {\"key\":2,\"value\":\"Crop Resize (Center)\"}]} ',2.00),(6,'default_resize_width','500',1,2,'text','Default resize width','','',3.00),(7,'default_resize_height','450',1,2,'text','Default resize height','','',4.00),(8,'watermark_status','0',1,2,'select','Watermark','','{\"values\":[{\"key\":0,\"value\":\"No\"},{\"key\":1,\"value\":\"Yes\"}]} ',5.00),(9,'watermark_position','center',1,2,'select','Watermark Position ','','{\"values\":[{\"key\":\"center\",\"value\":\"Center\"},{\"key\":\"top\",\"value\":\"Top\"}, {\"key\":\"left\",\"value\":\"Left\"}, {\"key\":\"right\",\"value\":\"Right\"},{\"key\":\"bottom\",\"value\":\"Bottom\"}, {\"key\":\"top-right\",\"value\":\"Top-Right\"}, {\"key\":\"top-left\",\"value\":\"Top-Left\"}, {\"key\":\"bottom-right\",\"value\":\"Bottom-Right\"}, {\"key\":\"bottom-left\",\"value\":\"Bottom-Left\"}]} ',6.00),(10,'watermark_opacity','40',1,2,'text','Watermark Opacity','','',7.00),(11,'watermark_url','',1,2,'upload','Watermark Logo','{\"html_element_id\":\"wpl_watermark_uploader\",\"request_str\":\"admin.php?wpl_format=b:settings:ajax&wpl_function=save_watermark_image\"}','',8.00),(12,'video_uploader','0',1,1,'checkbox','Video uploader','','',50.00),(13,'location1_keyword','Country',1,3,'text','Location1 keyword','','',99.00),(14,'location2_keyword','State',1,3,'text','Location2 keyword','','',99.00),(15,'location3_keyword','County',1,3,'text','Location3 keyword','','',99.00),(16,'location4_keyword','City',1,3,'text','Location4 keyword','','',99.00),(17,'location5_keyword','',1,3,'text','Location5 keyword','','',99.00),(18,'location6_keyword','',1,3,'text','Location6 keyword','','',99.00),(19,'location7_keyword','',1,3,'text','Location7 keyword','','',99.00),(20,'locationzips_keyword','Zipcode',1,3,'text','Zipcode Keyword','','',99.00),(21,'default_page_size','12',1,1,'text','Default page size','','{\"show_shortcode\":1,\"shortcode_key\":\"limit\"}',99.00),(22,'page_sizes','6,12,18,24,30,100',1,1,'text','Page size options','','',51.00),(23,'default_orderby','p.mls_id',1,1,'sort_option','Default sort option','','{\"show_shortcode\":1,\"shortcode_key\":\"wplorderby\",\"kind\":0}',99.00),(24,'default_order','DESC',1,1,'select','Default sort type','','{\"show_shortcode\":1,\"shortcode_key\":\"wplorder\",\"values\":[{\"key\":\"ASC\",\"value\":\"Ascending\"},{\"key\":\"DESC\",\"value\":\"Descending\"}]} ',99.00),(25,'main_permalink','2146',1,4,'wppages','Main Permalink','','{\"show_empty\":\"1\"}',1.00),(26,'sef_main_separator','/',0,4,'text','SEF separator','','',2.00),(27,'main_date_format','d/m/Y:dd/mm/yy',1,1,'select','Date Format','','{\"values\":[{\"key\":\"Y-m-d:yy-mm-dd\",\"value\":\"2013-10-19\"},{\"key\":\"Y/m/d:yy/mm/dd\",\"value\":\"2013/10/19\"},{\"key\":\"Y.m.d:yy.mm.dd\",\"value\":\"2013.10.19\"},{\"key\":\"m-d-Y:mm-dd-yy\",\"value\":\"10-19-2013\"},{\"key\":\"m/d/Y:mm/dd/yy\",\"value\":\"10/19/2013\"},{\"key\":\"m.d.Y:mm.dd.yy\",\"value\":\"10.19.2013\"},{\"key\":\"d-m-Y:dd-mm-yy\",\"value\":\"19-10-2013\"},{\"key\":\"d/m/Y:dd/mm/yy\",\"value\":\"19/10/2013\"},{\"key\":\"d.m.Y:dd.mm.yy\",\"value\":\"19.10.2013\"}]}',52.00),(28,'location_method','1',1,3,'select','Location Method','{\"tooltip\":\"Location Text is recommended.\"}','{\"values\":[{\"key\":1,\"value\":\"Location Text\"},{\"key\":2,\"value\":\"Location Database\"}]}',6.00),(29,'default_profile_orderby','p.first_name',1,1,'sort_option','Profile sort option','','{\"show_shortcode\":1,\"shortcode_key\":\"wplorderby\",\"kind\":2}',110.00),(30,'default_profile_order','DESC',1,1,'select','Profile sort type','','{\"show_shortcode\":1,\"shortcode_key\":\"wplorder\",\"values\":[{\"key\":\"ASC\",\"value\":\"Ascending\"},{\"key\":\"DESC\",\"value\":\"Descending\"}]} ',111.00),(31,'default_profile_page_size','12',1,1,'text','Profile page size','','{\"show_shortcode\":1,\"shortcode_key\":\"limit\"}',109.00),(33,'io_status','1',1,1,'select','I/O API','','{\"values\":[{\"key\":0,\"value\":\"Disabled\"},{\"key\":1,\"value\":\"Enabled\"}]}',117.00),(34,'io_public_key','U7hdbv673YhdjplzzX7wU7hdbv673YhdjplzzX7w',1,1,'text','API key','{\"readonly\":\"readonly\"}','',118.00),(35,'io_private_key','Eft76bdh0o2uyhJkbG3T',1,1,'text','API secret','{\"readonly\":\"readonly\"}','',119.00),(36,'realtyna_username',NULL,0,1,'text','','','',99.00),(37,'realtyna_password',NULL,0,1,'text','','','',99.00),(38,'realtyna_verified','0',0,1,'text','','','',99.00),(50,'backend_listing_target_page',NULL,1,4,'wppages','Backend Listing Target','{\"tooltip\":\"Used for backend views\"}','{\"show_empty\":1} ',3.00),(51,'log','0',1,1,'select','WPL log',NULL,'{\"values\":[{\"key\":0,\"value\":\"Disabled\" },{\"key\":1,\"value\":\"Enabled\"}]}',53.00),(53,'wpl_sender_email','',1,5,'text','Sender email',NULL,'',121.00),(54,'wpl_sender_name','',1,5,'text','Sender name',NULL,'',122.00),(55,'property_location_pattern','[street_no] [street] [street_suffix][glue] [location4_name][glue] [location2_name] [zip_name]',1,3,'pattern','Property Pattern',NULL,'',123.00),(56,'user_location_pattern','[location5_name][glue] [location4_name][glue] [location2_name] [zip_name]',1,3,'pattern','User Pattern',NULL,'',124.00),(63,'location_separator1','',1,3,'separator','Location Keywords','','',98.00),(64,'location_separator2','',1,3,'separator','Location Patterns','','',122.00),(65,'location_separator3','',1,3,'separator','Locations','','',4.50),(66,'permalink_separator','',1,4,'separator','WPL Permalink','','',0.90),(67,'sender_separator',NULL,1,5,'separator','Notification Sender',NULL,NULL,120.50),(68,'resize_separator',NULL,1,2,'separator','Resize',NULL,NULL,1.50),(69,'watermark_separator',NULL,1,2,'separator','Watermark',NULL,NULL,4.50),(70,'global_separator',NULL,1,1,'separator','Global',NULL,NULL,0.05),(71,'listing_pages_separator',NULL,1,1,'separator','Listings',NULL,NULL,98.00),(72,'users_separator',NULL,1,1,'separator','Users',NULL,NULL,107.00),(73,'io_separator',NULL,1,1,'separator','I/O Application',NULL,NULL,116.00),(90,'property_alias_pattern','[property_type][glue][listing_type][glue][location][glue][rooms][glue][bedrooms][glue][bathrooms][glue][price]',1,4,'pattern','Listing Link Pattern','','',4.00),(107,'js_default_path','js/libraries',0,1,'text','JS Default Path','','',106.00),(126,'google_api_key',NULL,1,1,'text','Google API key (Client Side)',NULL,NULL,55.00),(141,'location_suffix_prefix','County, Avenue, Ave, Boulevard, Blvd, Highway, Hwy, Lane, Ln, Square, Sq, Street, St, Road, Rd, Drive, Dr, Place, Pl, Plaza, Crescent, Cresc, Court, Cou, Path. Pa, Gate, Gt, Terrace, Ter',0,3,'text','Location Suffixes/Prefixes','{\"html_class\":\"long\"}','',141.00),(166,'txtimg_color1','000000',0,1,'text','Text to Image color',NULL,NULL,166.00),(188,'wizard_map_zoomlevel','11',1,3,'text','Wizard Map Zoom-level','','',7.00),(200,'autoupdate_exchange_rates','0',1,1,'select','Auto-update exchange rates','','{\"values\":[{\"key\":0,\"value\":\"Disabled\"},{\"key\":1,\"value\":\"Enabled\"}]}',97.00),(203,'wpl_theme_compatibility','0',1,1,'select','Theme Compatibility','{\"tooltip\":\"If enabled, WPL tries to make the frontend styles compatible with your theme. It works only for main style of some famous themes such as Bridge, Avada, X, Be etc.\"}','{\"values\":[{\"key\":1,\"value\":\"Enabled\"},{\"key\":0,\"value\":\"Disabled\"}]}',5.00),(204,'property_page_title_pattern','[property_type] [listing][glue] [rooms][glue] [bedrooms][glue] [bathrooms][glue] [price][glue] [mls_id]',1,4,'pattern','Listing Page Title',NULL,NULL,5.00),(218,'seo_patterns_separator','',1,4,'separator','SEO Patterns','','',3.50),(219,'property_title_pattern','[property_type] [listing]',1,4,'pattern','Listing Title',NULL,NULL,4.50),(220,'meta_description_pattern','[bedrooms] [str:Bedrooms:bedrooms] [rooms] [str:Rooms:rooms] [str:With:bathrooms] [bathrooms] [str:Bathrooms:bathrooms] [property_type] [listing_type] [field_54] [field_42] [str:On the:field_55] [field_55] [str:Floor:field_55] [str:In] [location]',1,4,'pattern','Meta Description',NULL,NULL,6.00),(221,'meta_keywords_pattern','[location][glue] [bedrooms] [str:Bedrooms:bedrooms][glue] [rooms] [str:Rooms:rooms][glue][bathrooms][str:Bathrooms:bathrooms][glue][property_type][glue][listing_type][glue][field_54][glue][field_42][glue][field_55][glue][listing_id]',1,4,'pattern','Meta Keywords',NULL,NULL,7.00),(222,'seo_adv_patterns_separator','',1,4,'separator','Advanced Patterns','','',22.20),(223,'seo_patterns','',1,4,'seo_patterns','Advanced Patterns','','',22.30),(234,'listing_media_confirm','0',1,1,'select','Media Confirm','{\"tooltip\":\"It\'s for showing/hiding tick icon for images/attachments in Add/Edit Listing menu.\"}','{\"values\":[{\"key\":0,\"value\":\"Disabled\" },{\"key\":1,\"value\":\"Enabled\"}]}',97.50),(241,'load_gmap_js_libraries','1',0,1,'select','Load Google Maps JS libraries','','{\"values\":[{\"key\":0,\"value\":\"Disabled\"},{\"key\":1,\"value\":\"Enabled\"}]}',241.00),(242,'multiple_marker_icon','multiple.png',0,1,'text','Multiple Marker Icon','','',242.00),(251,'base_currency','USD',1,1,'currency','Base Currency','{\"tooltip\":\"This is used for currency conversion.\"}','',96.00),(254,'hide_invalid_markers','1',1,3,'select','Hide invalid markers','{\"tooltip\":\"Hide the marker from maps when the geo point is not available or is set to 0,0.\"}','{\"values\":[{\"key\":1,\"value\":\"Yes\"},{\"key\":0,\"value\":\"No\"}]}',8.00),(257,'googlemap_display_status','1',1,1,'select','Google Maps Display','{\"tooltip\":\"If you hide it, you can place a Google Maps widget into your desired sidebar. Then your website users can view the map using the Google Maps widget.\"}','{\"values\":[{\"key\":1,\"value\":\"Show By Default\"},{\"key\":0,\"value\":\"Hide By Default\"}]}',56.00),(258,'wpl_cronjobs','1',0,1,'text',NULL,NULL,NULL,99.00),(259,'wpl_last_cpanel_cronjobs','',0,1,'text',NULL,NULL,NULL,99.00),(274,'microdata_separator','',1,4,'separator','Micordata','','',274.00),(275,'microdata','0',1,4,'select','Microdata(schema.org)','','{\"values\":[{\"key\":0,\"value\":\"Disabled\"},{\"key\":1,\"value\":\"Enabled\"}]} ',274.01),(277,'google_serverside_api_key',NULL,1,1,'text','Google API key (Server Side)','{\"tooltip\":\"Please note that for the Server Side API Key, you should not set any referrer restrictions (or IP restrictions).\"}',NULL,97.62),(293,'advanced_markers','{\"status\":\"0\",\"listing_types\":{\"9\":\"#29a9df\",\"10\":\"#cccc24\",\"12\":\"#d326d6\"},\"property_types\":{\"7\":\"apartment.svg\",\"6\":\"commercial.svg\",\"13\":\"income.svg\",\"14\":\"land.svg\",\"70\":\"loft.svg\",\"71\":\"rental.svg\",\"72\":\"residential.svg\",\"73\":\"vacant_land.svg\",\"74\":\"villa.svg\"}}',1,1,'advanced_markers','',NULL,NULL,240.70),(294,'advanced_markers_separator',NULL,1,1,'separator','Advanced Markers',NULL,NULL,240.60),(295,'geolocation_listings','0',1,1,'checkbox','Geolocation Listings','{\"tooltip\":\"Show listings based on users current geolocation.\"}',NULL,100.10),(297,'show_plisting_visits','0',1,1,'checkbox','Show Listing Visits','{\"tooltip\":\"If enabled, total property visits will show on the search results pages.\"}',NULL,101.00),(298,'gre_separator',NULL,1,1,'separator','Google Recaptcha','','',250.05),(299,'gre_enable','0',1,1,'select','Google Recaptcha',NULL,'{\"values\":[{\"key\":\"0\",\"value\":\"Disable\"},{\"key\":\"1\",\"value\":\"Enable\"}]}',250.10),(300,'gre_site_key',NULL,1,1,'text','Site Key',NULL,'',250.15),(301,'gre_secret_key',NULL,1,1,'text','Secret Key',NULL,'',250.20),(302,'gre_user_contact_activity','0',1,1,'checkbox','User Contact',NULL,'',250.25),(303,'gre_listing_contact_activity','0',1,1,'checkbox','Listing Contact',NULL,'',250.30),(304,'gre_widget_contact_activity','0',1,1,'checkbox','Favorites Widget',NULL,'',250.35),(310,'gre_report_listing','0',1,1,'checkbox','Report Listing',NULL,'',250.40),(311,'gre_send_to_friend','0',1,1,'checkbox','Send to Friend',NULL,'',250.50),(312,'gre_request_visit','0',1,1,'checkbox','Request a Visit',NULL,'',250.45),(321,'listing_404_redirect','0',1,1,'checkbox','Not Found Redirection','{\"tooltip\":\"Redirect the user to property listing page if property not found!\"}','',102.00),(331,'profile_email_type','0',1,1,'select','Profile email type','','{\"values\":[{\"key\":\"0\",\"value\":\"Image\"},{\"key\":\"1\",\"value\":\"Text\"}]} ',111.00),(335,'realtyna_signature_separator','',1,1,'separator','Realtyna Signature','','',335.00),(336,'realtyna_affiliate_id','',1,1,'text','Your Affiliate ID','{\"tooltip\":\"You can create an affiliate account here: https://realtyna.com/affiliate-area/ and earn money.\"}','',335.01),(337,'realtyna_signature','1',1,1,'select','Powered by Realtyna','{\"tooltip\":\"By Disabling this. The Realtyna logo from the footer of your listings will be removed.\"}','{\"values\":[{\"key\":\"1\",\"value\":\"Show\"},{\"key\":\"0\",\"value\":\"Hide\"}]}',335.02),(341,'geocoding_separator',NULL,1,1,'separator','Geocoding',NULL,NULL,97.60),(342,'geocoding_server','google_first',1,1,'select','Geocoding Server','{\"tooltip\":\"WPL use the first server for geocoding and then use the second server if first server failed! Google geocoding is more accurate but OSM is free.\"}','{\"values\":[{\"key\":\"google_first\",\"value\":\"First Google\"},{\"key\":\"osm_first\",\"value\":\"First OpenStreetMap\"}]}',97.65);
/*!40000 ALTER TABLE `lrwp_wpl_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_sort_options`
--

DROP TABLE IF EXISTS `lrwp_wpl_sort_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_sort_options` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `kind` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '[0][1]',
  `name` text CHARACTER SET utf8 DEFAULT NULL,
  `default_order` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'DESC',
  `asc_label` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `asc_enabled` tinyint(4) NOT NULL DEFAULT 1,
  `desc_label` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `desc_enabled` tinyint(4) NOT NULL DEFAULT 1,
  `field_name` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `index` float(5,2) NOT NULL DEFAULT 99.00,
  PRIMARY KEY (`id`),
  KEY `kind` (`kind`,`enabled`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_sort_options`
--

LOCK TABLES `lrwp_wpl_sort_options` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_sort_options` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_sort_options` VALUES (1,'[0][1]','Listing ID','DESC',NULL,1,NULL,1,'p.mls_id',1,4.00),(2,'[0][1]','Price','DESC',NULL,1,NULL,1,'p.price_si',1,6.00),(3,'[0][1]','Built up Area','DESC',NULL,1,NULL,1,'p.living_area_si',1,5.00),(4,'[0][1]','Bedrooms','DESC',NULL,1,NULL,1,'p.bedrooms',0,9.00),(6,'[0][1]','Pictures','DESC',NULL,1,NULL,1,'p.pic_numb',1,10.00),(7,'[0][1]','Listing','DESC',NULL,1,NULL,1,'p.listing',0,12.00),(8,'[0][1]','Property Type','DESC',NULL,1,NULL,1,'p.property_type',0,13.00),(9,'[0][1]','Add date','DESC',NULL,1,NULL,1,'p.add_date',1,11.00),(10,'[0][1]','View','DESC',NULL,1,NULL,1,'p.view',0,15.00),(11,'[0][1]','Lot Area','DESC',NULL,1,NULL,1,'p.lot_area_si',0,16.00),(12,'[0][1]','Zipcode','DESC',NULL,1,NULL,1,'p.zip_name',0,17.00),(13,'[0][1]','Featured','DESC',NULL,1,NULL,1,'p.sp_featured',1,14.00),(31,'[2]','Name','ASC',NULL,1,NULL,1,'p.first_name',1,99.00),(32,'[2]','Country','ASC',NULL,1,NULL,1,'p.location1_name',1,99.00),(33,'[2]','State','ASC',NULL,1,NULL,1,'p.location2_name',0,99.00);
/*!40000 ALTER TABLE `lrwp_wpl_sort_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_unit_types`
--

DROP TABLE IF EXISTS `lrwp_wpl_unit_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_unit_types` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_unit_types`
--

LOCK TABLES `lrwp_wpl_unit_types` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_unit_types` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_unit_types` VALUES (1,'Length'),(2,'Area'),(3,'Volume'),(4,'Currency');
/*!40000 ALTER TABLE `lrwp_wpl_unit_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_units`
--

DROP TABLE IF EXISTS `lrwp_wpl_units`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_units` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `type` tinyint(4) NOT NULL DEFAULT 2 COMMENT '1=length,2=area,3=volume 4=price',
  `enabled` tinyint(4) NOT NULL DEFAULT 0,
  `tosi` double NOT NULL DEFAULT 0,
  `index` int(11) NOT NULL DEFAULT 999,
  `extra` varchar(50) CHARACTER SET utf8 DEFAULT NULL COMMENT 'iso code',
  `extra2` varchar(50) CHARACTER SET utf8 DEFAULT NULL COMMENT 'currency name',
  `extra3` varchar(50) CHARACTER SET utf8 DEFAULT NULL COMMENT 'icon',
  `extra4` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `seperator` varchar(2) CHARACTER SET utf8 DEFAULT NULL,
  `d_seperator` varchar(2) CHARACTER SET utf8 DEFAULT NULL,
  `after_before` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0=before,1=after',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=271 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_units`
--

LOCK TABLES `lrwp_wpl_units` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_units` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_units` VALUES (1,'Sqft',2,1,0.093,1,'','','','','','',0),(2,'m&sup2;',2,1,1,2,'','','','','','',0),(3,'Acre',2,0,4046.873,3,'','','','','','',0),(4,'km&sup2;',2,0,1000000,4,'','','','','','',0),(5,'sq mi',2,0,2589988,6,'','','','','','',0),(6,'sq yd',2,0,0.836,5,'','','','','','',0),(7,'Hectare',2,0,10000,7,'','','','','','',0),(11,'m',1,1,1,0,'','','','','','',0),(12,'ft',1,1,0.305,0,'','','','','','',0),(13,'km',1,1,1000,2,'','','','','','',0),(14,'mi',1,1,1609.344,5,'','','','','','',0),(15,'yd',1,0,0.9144,6,'','','','','','',0),(16,'cm',1,0,0.01,7,'','','','','','',0),(17,'in',1,0,0.0254,0,'','','','','','',0),(21,'m&sup3;',3,0,1,1,'','','','','','',0),(101,'؋',4,0,0.0184,11,'AFN','Afghan Afghani','Afghanistan','Pul','','',0),(102,'L',4,0,0.0094,12,'ALL','Albania Lek','Albanian','Qintar','','',0),(103,'£',4,0,87.9,13,'GBP','Alderney Pound','Alderney','Penny','','',0),(104,'د.ج',4,0,0.0126,14,'DZD','Algerian Dinar','Algeria','Centime','','',0),(105,'Kz',4,0,0.0104,15,'AOA','Angolan Kwanza','Angola','Cêntimo','','',0),(106,'$',4,0,0.1886,16,'ARS','Argentine Peso','Argentina','Centavo','','',0),(107,'դր.',4,0,0.0024,17,'AMD','Armenian Dram','Armenia','Luma','','',0),(108,'Afl.',4,0,0.5587,18,'AWG','Aruban Florin','Aruba','Cent','','',0),(109,'$, A$ or AU$',4,0,0.9435,6,'AUD','Australian Dollar','Australia','Cent','','',0),(110,'m, ман. or man.',4,0,1.2742,19,'AZN','Azerbaijani Manat','Azerbaijan','qəpik','','',0),(111,'B$',4,0,1,20,'BSD','Bahamian dollar','Bahamas','Cent','','',0),(112,'.د.ب (Arabic), or BD (Latin),',4,0,2.652,21,'BHD','Bahraini Dollar','Bahrain','Fils','','',0),(113,'৳, ৲',4,0,0.0129,22,'BDT','Bangladeshi Taka','Bangladesh','Poisha','','',0),(114,'Bds$',4,0,0.5,23,'BBD','Barbadian Dollar','Barbados','Cent','','',0),(115,'Br',4,0,0.0001,24,'BYR','Belarusian Ruble','Belarus','Kapeyka','','',0),(116,'BZ$',4,0,0.5,25,'BZD','Belize Dollar','Belize','Cent','','',0),(117,'BD$',4,0,1,26,'BMD','Bermudian Dollar','Bermuda','Cent','','',0),(118,'Nu. or Ch.',4,0,0.0173,27,'BTN','Bhutanese Ngultrum','Bhutan','Chhertum','','',0),(119,'Bs.',4,0,0.1447,28,'BOB','Bolivian Boliviano','Bolivia','Centavo','','',0),(120,'KM (Latin), or КМ (Cyrillic),',4,0,0.6733,29,'BAM','Bosnia and Herzegovina Marka','Bosnia and Herzegovina','fening (Latin), or фенинг (Cyrillic),','','',0),(121,'P',4,0,0.1175,30,'BWP','Botswana Pula','Botswana','thebe','','',0),(122,'R$ or Ɽ',4,0,0.4678,31,'BRL','Brazillian Real','Brazil','Centavo','','',0),(123,'B$',4,0,0.7969,32,'BND','Brunei Dollar','Sultanate of Brunei','Sen','','',0),(124,'лв',4,0,0.676,33,'BGN','Bulgarian Lev','Bulgaria','Stotinka','','',0),(125,'FBu',4,0,0.0006,34,'BIF','Burundian Franc','Burundi','Centime','','',0),(126,'៛',4,0,0.0003,35,'KHR','Cambodian Riel','Cambodia','1/10 Kak','','',0),(127,'C$',4,0,0.9805,5,'CAD','Canadian Dollar','Canada','Cent','','',0),(128,'Esc or $',4,0,0.012,36,'CVE','Cap Werdean Escudo','Cape Verde','Centavo','','',0),(129,'$',4,0,1.2195,37,'KYD','Cayman Islands Dollar','Caymen Islands','Cent','','',0),(130,'FCFA, c',4,0,0.002,38,'XAF','Central African CFA franc','Central Africa','Centime','','',0),(131,'$',4,0,0.002,39,'CLP','Chilean Peso','Chile','Centavo','','',0),(132,'$',4,0,0.0005,40,'COP','Colombian Peso','Republic of Colombia','Centavo','','',0),(133,'CF',4,0,0.0027,41,'KMF','Comorian Franc','Comoros','Centime','','',0),(134,'Fr',4,0,0.0011,42,'CDF','Congolese Franc','Democratic Republic of Congo','Centime','','',0),(135,'$ or c',4,0,87.6,43,'NZD','Cook Islands Dollar','Cook Islands','Cent','','',0),(136,'₡',4,0,0.002,44,'CRC','Costa Rican colón','Costa Rica','Céntimo','','',0),(137,'kn or lp',4,0,0.1714,45,'HRK','Croatian Kuna','Croatia','Lipa','','',0),(138,'$, CUC or CUC$',4,0,87.6,46,'CUC','Cuban Convertible Peso','Cuba','Centavo','','',0),(139,'$ or $MN',4,0,1,47,'CUP','Cuban Peso','Cuba','Centavo','','',0),(140,'K�? or h',4,0,0.0505,48,'CZK','Czech Koruna','Czech Republic','Haléř','','',0),(141,'kr',4,0,0.1743,49,'DKK','Danish Krone','Denmark','øre or kroner','','',0),(142,'Fdj',4,0,0.0056,50,'DJF','Djiboutian Franc','Djibouti','Centime','','',0),(143,'RD$',4,0,0.0243,51,'DOP','Dominican Peso','Dominican Republic','Centavo','','',0),(144,'$',4,0,0.3704,52,'XCD','East Caribbean Dollar','East Caribbean','Cent','','',0),(145,'$',4,0,1,10,'USD','Ecuadorian Centavo Coins','Ecuador','Cent','','',0),(146,'£, LE, or ج.م or Pt.',4,0,0.1431,53,'EGP','Egyptian Pound','Egypt','qirsh or','','',0),(147,'Nfk',4,0,0.0888,54,'ERN','Eritrean Nakfa','Eritrea','Cent','','',0),(148,'KR',4,0,0,55,'EEK','Estonian Kroon','Estonia','Sent','','',0),(149,'Br',4,0,0.0536,56,'ETB','Ethiopian Birr','Ethiopia','Santim','','',0),(150,'€',4,1,1.3634,2,'EUR','Euro','European-Union','Euro',',','',0),(151,'£ or p',4,0,1.5193,57,'FKP','Flakland Islands Pound','Falkland Islands','Penny','','',0),(152,'kr',4,0,0.1743,58,'DKK','Faroese Króna','Faroe Islands','Oyra','','',0),(153,'FJ$',4,0,0.5433,59,'FJD','Fijian Dollar','Fiji','Cent','','',0),(154,'D',4,0,0.0295,60,'GMD','Gambian Dalasi','Gambia','Butut','','',0),(155,'ლ',4,0,0.6091,61,'GEL','Georgian Lari','Georgia','Tetri','','',0),(156,'GH₵',4,0,0.5007,62,'GHS','Ghanaian Cedi','Ghana','Pesewa','','',0),(157,'£ or p',4,0,1.5194,63,'GIP','Gibraltar Pound','Gibraltar','Penny','','',0),(158,'Q',4,0,0.1283,64,'GTQ','Guatemalan Quetzal','Guatemala','Centavo','','',0),(159,'£ or p',4,0,87.6,65,'GBP','Guernsey Pound','Guernsey','Penny','','',0),(160,'FG or Fr/GFr',4,0,0.0001,66,'GNF','Guinean Franc','Guinea','Centime','','',0),(161,'$',4,0,0.0049,67,'GYD','Guyanese Dollar','Guyana','Cent','','',0),(162,'G',4,0,0.0236,68,'HTG','Haitian Gourde','Haiti','Centime','','',0),(163,'L',4,0,0.0494,69,'HNL','Hondyran Lempira','Honduras','Centavo','','',0),(164,'£ or HK$',4,0,0.1288,70,'HKD','Hong Kong Dollar','Hong Kong','Cent','','',0),(165,'Ft',4,0,0.0044,71,'HUF','Hungarian Forint','Hungary','Fillér','','',0),(166,'kr, �?kr',4,0,0.0081,72,'ISK','Icelandic Króna','Iceland','Eyrir','','',0),(167,'',4,0,0.0177,73,'INR','Indian Rupee','India','Paisa','','',0),(168,'Rp',4,0,0.0001,74,'IDR','Indonesian Rupiah','Indonesia','Sen','','',0),(169,'﷼',4,0,0.0001,75,'IRR','Iranian Rial','Iran','Toman or Dinar','','',0),(170,'ع.د',4,0,0.0009,76,'IQD','Iraqi Dinar','Iraq','Fils','','',0),(171,'₪',4,0,0.2711,77,'ILS','Israeli New Sheqel','Israel','Agora','','',0),(172,'$',4,0,0.0101,78,'JMD','Jamaican Dollar','Jamaica','Cent','','',0),(173,'¥',4,0,0.0102,7,'JPY','Japanese Yen','Japan','Sen or Rin','','',0),(174,'£ or p',4,0,87.6,79,'GBP','Jersey Pound','Jersey','Penny','','',0),(175,'د.ا',4,0,1.4104,80,'JOD','Jordanian Dinar','Jordan','Dirham','','',0),(176,'',4,0,0.0066,81,'KZT','Kazakhstani tenge','Kazakhstan','tiyn (тиын),','','',0),(177,'KSh',4,0,0.0117,82,'KES','Kenyan Shilling','Kenya','Cent','','',0),(178,'$ or ¢',4,0,87.6,83,'AUD','Kiribati Dollar','Kiribati','Cent','','',0),(179,'د.ك',4,0,3.4955,84,'KWD','Kuwaiti Dinar','Kuwait','Fils','','',0),(180,'N/A',4,0,0.0207,85,'KGS','Kyrgyzstani som','Kyrgyz Republic','Tyiyn','','',0),(181,'₭ or ₭N',4,0,0.0001,86,'LAK','Lao Kip','Laos','Att','','',0),(182,'Ls or s',4,0,1.8505,87,'LVL','Latvian Lats','Lativa','Santims','','',0),(183,'ل.ل',4,0,0.0007,88,'LBP','Lebanese Pound','Lebanon','Piastre','','',0),(184,'L or M',4,0,0.0994,89,'LSL','Lesotho Loti','Lesotho','Sente','','',0),(185,'L$',4,0,0.0133,90,'LRD','Liberian Dollar','Liberia','Cent','','',0),(186,'LD and ل.د',4,0,0.78,91,'LYD','Libyan Dinar','Libya','Dirham','','',0),(187,'Lt',4,0,0.376,92,'LTL','Lithuanian Litas','Lithuania','Centas','','',0),(188,'MOP$',4,0,0.1251,93,'MOP','Macanese Pataca','Macau','Avo','','',0),(189,'ден',4,0,0.0208,94,'MKD','Macedonian Denar','Republic of Macedonia','Deni','','',0),(190,'N/A',4,0,0.0005,95,'MGA','Malagasy Ariary','Madagascar','Iraimbilanja','','',0),(191,'MK',4,0,0.003,96,'MWK','Malawian Kwacha','Malawi','Tambala','','',0),(192,'RM',4,0,0.3227,97,'MYR','Malaysian Ringgit','Malaysia','Sen','','',0),(193,'Rf, MRf, or .ރ',4,0,0.0649,98,'MVR','Maldivian Rufiyaa','Maldives','Laari','','',0),(194,'£ or p',4,0,87.6,99,'GBP','Manx Pound','Isle Of Man','Penny','','',0),(195,'UM',4,0,0.0034,100,'MRO','Mauritanian Ouguiya','Mauritania','Khoums','','',0),(196,'Rs',4,0,0.032,101,'MUR','Mauritian Rupee','Mauritius','Cent','','',0),(197,'$ or Mex$ / ¢',4,0,0.078,102,'MXN','Mexican Peso','Mexico','Centavo','','',0),(198,'L',4,0,0.08,103,'MDL','Moldovan Leu','Moldova','Ban','','',0),(199,'₮',4,0,0.0007,104,'MNT','Mongolian Tögrög','Mongolia','Möngö(мөнгө),','','',0),(200,'د.م',4,0,0.1168,105,'MAD','Moroccan Dirham','Morocco','Santim','','',0),(201,'MTn',4,0,0.0336,106,'MZN','Mozambican Metical','Mozambique','Centavo','','',0),(202,'K',4,0,0.0011,107,'MMK','Myanma Kyat','Myanmar/Burma','Pya','','',0),(203,'N$',4,0,0.0993,108,'NAD','Namibian Dollar','Namibia','Cent','','',0),(204,'Rs',4,0,0.0111,109,'NPR','Nepalese Rupee','Nepal','Paisa','','',0),(205,'NAƒ, NAf, ƒ, or f',4,0,0.5587,110,'ANG','Netherlands Antillean Guilder','Netherlands Antilles','Cent','','',0),(206,'$ or NT$',4,0,0.0333,111,'TWD','New Taiwan Dollar','New Taiwan','Cent','','',0),(207,'$ or c',4,0,0.7947,112,'NZD','New Zealand Dollar','New Zealand','Cent','','',0),(208,'C$',4,0,0.0402,113,'NIO','Nicaraguan Córdoba','Nicaragua','Centavo','','',0),(209,'₦',4,0,0.0063,114,'NGN','Nigerian Naira','Nigeria','Kobo','','',0),(210,'₩',4,0,0.0011,115,'KPW','North Korean Won','North Korea','Ch�?n','','',0),(211,'kr',4,0,0.1703,116,'NOK','Norweigian Krone','Norway','øre','','',0),(212,'ر.ع.',4,0,2.5998,117,'OMR','Omani Rial','Oman','Baisa','','',0),(213,'Rs',4,0,0.0102,118,'PKR','Pakistani Rupee','Pakistan','Paisa','','',0),(214,'B/. or B',4,0,1,119,'PAB','Panamanian Blaboa','Panama','Centesimo','','',0),(215,'K',4,0,0.4401,120,'PGK','Papua New Guinea Kina','Papua New Guinea','Toea','','',0),(216,'₲',4,0,0.0002,121,'PYG','Paraguayan Guarani','Paraguay','Centimo','','',0),(217,'S/.',4,0,0.3655,122,'PEN','Peruvian Nuevo Sol','Peru','Centimo','','',0),(218,'',4,0,0.0237,123,'PHP','Philippine Peso','Philippines','Sentimo','','',0),(219,'zł or gr',4,0,0.304,124,'PLN','Polish złoty','Poland','Grosz','','',0),(220,'£',4,1,1.6412,3,'GBP','Pound Sterling','England','Penny',',','',0),(221,'QR or ر.ق',4,0,0.2746,125,'QAR','Qatari Riyal','Qatar','Dirham','','',0),(222,'¥',4,0,0.1629,126,'CNY','Renminbi','PRC','jiǎo (角','','',0),(223,'L',4,0,0.2954,127,'RON','Romanian Leu','Romania','Bani','','',0),(224,'руб. / Р. / р. or',4,0,0.0313,128,'RUB','Russian Ruble','Russia','Kopek','','',0),(225,'RF',4,0,0.0016,129,'RWF','Rwandan Franc','Rwanda','Centime','','',0),(226,'£',4,0,1.5194,130,'SHP','Saint Helena Pound','Saint Helena','Penny','','',0),(227,'₡',4,0,0.1143,131,'SVC','Salvadorian Colón','El Salvador','Centavo','','',0),(228,'WS$',4,0,0.4364,132,'WST','Samoan Tala','Samoa','Sene','','',0),(229,'ر.س (Arabic),, SR (Latin),',4,0,0.2666,133,'SAR','Saudi Riyal','Saudi Arabia','Halala','','',0),(230,'РСД and RSD',4,0,0.0115,134,'RSD','Serbian Dinar','Serbia','Para','','',0),(231,'SR or SRe',4,0,0.0847,135,'SCR','Seychellois Rupee','Seychelles','Cent','','',0),(232,'Le',4,0,0.0002,136,'SLL','Sierra Leonean Leone','Sierra Leone','Cent','','',0),(233,'S$',4,0,0.7908,137,'SGD','Singapore Dollar','Singapore','Cent','','',0),(234,'SI$',4,0,0.1391,138,'SBD','Solomon Islands Dollar','Solomon Islands','Cent','','',0),(235,'So. Sh.',4,0,0.0007,139,'SOS','Somali Shilling','Somalia','Cent','','',0),(236,'Sl. Sh.',4,0,0.0007,140,'SOS','Somaliland Shilling','Somaliland','Cent','','',0),(237,'R or c',4,0,0.0993,141,'ZAR','South African Rand','South Africa','Cent','','',0),(238,'₩',4,0,0.0009,142,'KRW','South Korean Won','South Korea','Jeon','','',0),(239,'Rs or SLRss/SLRs',4,0,0.0079,143,'LKR','Sri Lankan Rupee','Sri Lanka','Cents','','',0),(240,'£',4,0,0.2272,144,'SDG','Sudanese Pound','Sudan','Qirsh','','',0),(241,'$',4,0,0.3042,145,'SRD','Surinamese Dollar','Suriname','Cent','','',0),(242,'L or E',4,0,0.0993,146,'SZL','Swazi Lilangeni','Swaziland','Cent','','',0),(243,'kr, :-',4,0,0.1521,8,'SEK','Swedish Krona','Sweden','öre','','',0),(244,'CHF, Fr., SFr. (old),',4,0,1.1024,4,'CHF','Swiss Franc','Switzerland','Centime',',','',0),(245,'£ or ل.س',4,0,0.0103,147,'SYP','Syrian Pound','Syria','Piastre','','',0),(246,'Db',4,0,0.0001,148,'STD','São Tomé and Príncipe dobra','São Tomé and Príncipe','cêntimo','','',0),(247,'SM',4,0,0.2103,149,'TJS','Tajikistani Somoni','Tajikistan','Dirham','','',0),(248,'x/y',4,0,0.0006,150,'TZS','Tanzanian Shilling','Tanzania','Senti','','',0),(249,'฿',4,0,0.0329,151,'THB','Thai Baht','Thailand','Satang','','',0),(250,'T$ or PT - ¢',4,0,0.5743,152,'TOP','Tongan Pa\'anga','Tonga','Seniti','','',0),(251,'p.',4,0,87.6,153,'PRB','Transnistrian Ruble','Transnistria','Kopecks','','',0),(252,'$',4,0,0.1558,154,'TTD','Trinidad and Tobago Dollar','Trinidad and Tobago','Cent','','',0),(253,'د.ت (Arabic), or DT (Latin),',4,0,0.6085,155,'TND','Tunisian Dollar','Tunisia','Milim','','',0),(254,'TL',4,0,0.5333,156,'TRY','Turkish Lira','Turkey','kuruş','','',0),(255,'m',4,0,0.3506,157,'TMT','Turkmenistani manat','Turkmenistan','tennesi (tenge),','','',0),(256,'$ or ¢',4,0,0,158,'TVD','Tuvaluan Dollar','Tivalu','Cent','','',0),(257,'USh',4,0,0.0004,159,'UGX','Ugandan Shilling','Uganda','Cent','','',0),(258,'₴',4,0,0.1226,160,'UAH','Ukrainian hryvnia','Ukraine','kopiyka (копійка),','','',0),(259,'د.إ',4,0,0.2722,161,'AED','United Arab Emirates dirham','United Arab Emirates','fils','','',0),(260,'$',4,1,1,1,'USD','United States dollar','United-States','Dime/ Cent /Mill',',','',0),(261,'$',4,0,0.0496,162,'UYU','Uruguayan peso','Uruguay','centésimo','','',0),(262,'N/A',4,0,0.0005,163,'UZS','Uzbekistani som','Uzbekistan','tiyin','','',0),(263,'Vt',4,0,0.0106,164,'VUV','Vanuatu vatu','Vanuatu','none','','',0),(264,'Bs. F',4,0,0.1589,165,'VEF','Venezuelan bolívar','Venezuela','céntimo','','',0),(265,'₫',4,0,0,166,'VND','Vietnamese đồng','Vietnam','hào or xu','','',0),(266,'CFA or c',4,0,0.002,167,'XOF','West African CFA franc','West Africa','centime','','',0),(267,'﷼',4,0,0.0047,168,'YER','Yemeni Rial','Yemen','Fils','','',0),(268,'ZK',4,0,0.0002,169,'ZMK','Zambian Kwacha','Zambia','Ngwee','','',0),(269,'$',4,0,0.0031,170,'ZWL','Zimbabwean Dollar','Zimbabwe','Cent','','',0),(270,'¥',4,0,0.16,999,'CNY','Chinese Yuan Renminbi','china','Fen',NULL,NULL,0);
/*!40000 ALTER TABLE `lrwp_wpl_units` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_user_group_types`
--

DROP TABLE IF EXISTS `lrwp_wpl_user_group_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_user_group_types` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8 NOT NULL,
  `default_membership_id` int(10) NOT NULL DEFAULT -1,
  `description` text CHARACTER SET utf8 DEFAULT NULL,
  `editable` tinyint(4) unsigned NOT NULL DEFAULT 1,
  `deletable` tinyint(4) unsigned NOT NULL DEFAULT 1,
  `index` float(5,2) NOT NULL DEFAULT 99.00,
  `params` text CHARACTER SET utf8 DEFAULT NULL,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_user_group_types`
--

LOCK TABLES `lrwp_wpl_user_group_types` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_user_group_types` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_user_group_types` VALUES (1,'Agents',-1,NULL,1,0,1.00,NULL,1),(2,'Owners',-1,NULL,1,0,2.00,NULL,1),(3,'Guests',-1,NULL,1,0,0.50,NULL,1);
/*!40000 ALTER TABLE `lrwp_wpl_user_group_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpl_users`
--

DROP TABLE IF EXISTS `lrwp_wpl_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpl_users` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `membership_name` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `membership_id` int(10) DEFAULT NULL,
  `membership_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `index` float(5,2) NOT NULL DEFAULT 99.00,
  `access_propertywizard` tinyint(4) NOT NULL DEFAULT 0,
  `access_propertyshow` tinyint(4) NOT NULL DEFAULT 1,
  `access_propertylisting` tinyint(4) NOT NULL DEFAULT 1,
  `access_profilewizard` tinyint(4) NOT NULL DEFAULT 1,
  `access_confirm` tinyint(4) NOT NULL DEFAULT 0,
  `access_propertymanager` tinyint(4) NOT NULL DEFAULT 0,
  `access_delete` tinyint(4) NOT NULL DEFAULT 0,
  `access_public_profile` tinyint(4) NOT NULL DEFAULT 1,
  `access_change_user` tinyint(4) NOT NULL DEFAULT 0,
  `access_receive_notifications` tinyint(4) NOT NULL DEFAULT 1,
  `first_name` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `last_name` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `about` text CHARACTER SET utf8 DEFAULT NULL,
  `company_name` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `company_address` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `website` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `main_email` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `secondary_email` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `sex` tinyint(4) DEFAULT NULL,
  `tel` varchar(20) CHARACTER SET utf8 DEFAULT NULL,
  `fax` varchar(20) CHARACTER SET utf8 DEFAULT NULL,
  `mobile` varchar(20) CHARACTER SET utf8 DEFAULT NULL,
  `languages` text CHARACTER SET utf8 DEFAULT NULL,
  `location1_id` int(11) NOT NULL DEFAULT 0,
  `location2_id` int(11) NOT NULL DEFAULT 0,
  `location3_id` int(11) NOT NULL DEFAULT 0,
  `location4_id` int(11) NOT NULL DEFAULT 0,
  `location5_id` int(11) NOT NULL DEFAULT 0,
  `location6_id` int(11) NOT NULL DEFAULT 0,
  `location7_id` int(11) NOT NULL DEFAULT 0,
  `location1_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location2_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location3_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location4_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location5_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location6_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `location7_name` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `show_address` tinyint(4) NOT NULL DEFAULT 1,
  `zip_id` int(11) NOT NULL DEFAULT 0,
  `zip_name` varchar(20) CHARACTER SET utf8 DEFAULT NULL,
  `maccess_num_prop` int(10) DEFAULT NULL,
  `maccess_num_feat` int(10) DEFAULT NULL,
  `maccess_num_hot` int(10) DEFAULT NULL,
  `maccess_num_pic` int(10) DEFAULT NULL,
  `maccess_period` int(10) DEFAULT NULL,
  `maccess_price` double DEFAULT NULL,
  `maccess_price_unit` int(10) DEFAULT NULL,
  `maccess_lrestrict` int(4) DEFAULT NULL,
  `maccess_listings` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `maccess_ptrestrict` int(4) DEFAULT NULL,
  `maccess_property_types` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `maccess_renewable` int(4) DEFAULT NULL,
  `maccess_renewal_price` double DEFAULT NULL,
  `maccess_renewal_price_unit` int(11) DEFAULT NULL,
  `maccess_upgradable` int(4) DEFAULT NULL,
  `maccess_upgradable_to` text CHARACTER SET utf8 DEFAULT NULL,
  `maccess_short_description` text CHARACTER SET utf8 DEFAULT NULL,
  `maccess_long_description` text CHARACTER SET utf8 DEFAULT NULL,
  `maccess_wpl_color` varchar(10) CHARACTER SET utf8 DEFAULT NULL,
  `expired` tinyint(4) NOT NULL DEFAULT 0,
  `expiry_date` datetime DEFAULT NULL,
  `textsearch` text CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `location_text` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `rendered` text CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `last_modified_time_stamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `profile_picture` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `company_logo` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `maccess_lrestrict_pshow` int(4) DEFAULT 0,
  `maccess_ptrestrict_pshow` int(4) DEFAULT 0,
  `maccess_listings_pshow` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `maccess_property_types_pshow` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `maccess_lrestrict_plisting` int(4) DEFAULT 0,
  `maccess_ptrestrict_plisting` int(4) DEFAULT 0,
  `maccess_listings_plisting` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `maccess_property_types_plisting` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `membership_id` (`membership_id`),
  KEY `expired` (`expired`,`expiry_date`),
  KEY `membership_id_2` (`membership_id`),
  KEY `expired_2` (`expired`,`expiry_date`),
  FULLTEXT KEY `textsearch` (`textsearch`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpl_users`
--

LOCK TABLES `lrwp_wpl_users` WRITE;
/*!40000 ALTER TABLE `lrwp_wpl_users` DISABLE KEYS */;
INSERT INTO `lrwp_wpl_users` VALUES (-2,'Guest',0,'3',99.00,0,1,1,0,0,0,0,0,0,1,'','',NULL,'','','','','',0,'','','','',0,0,0,0,0,0,0,'','','','','','','',1,0,'',0,0,0,0,0,0,0,0,'',0,'',0,0,0,0,'',NULL,NULL,NULL,0,NULL,'',NULL,'','2021-11-05 20:15:59','','',0,0,NULL,NULL,0,0,NULL,NULL),(-1,'Default',-1,'1',99.00,1,1,1,1,0,1,1,0,0,1,'','',NULL,'','','','','',0,'','','','',0,0,0,0,0,0,0,'','','','','','','',1,0,'',-1,-1,-1,-1,0,0,0,0,'',0,'',0,0,0,0,'',NULL,NULL,NULL,0,NULL,'',NULL,'','2021-11-05 20:15:58','','',0,0,NULL,NULL,0,0,NULL,NULL),(0,'Guest',-2,'3',99.00,0,1,1,0,0,0,0,0,0,1,'','',NULL,'','','','','',0,'','','','',0,0,0,0,0,0,0,'','','','','','','',1,0,'',0,0,0,0,0,0,0,0,'',0,'',0,0,0,0,'',NULL,NULL,NULL,0,NULL,'',NULL,'','2021-11-05 20:15:59','','',0,0,NULL,NULL,0,0,NULL,NULL),(1,'Default',-1,'1',99.00,1,1,1,1,0,1,1,0,0,1,'','','','','','','ckeziah127@gmail.com','',0,'','','','',0,0,0,0,0,0,0,'','','','','','','',1,0,'',-1,-1,-1,-1,0,0,0,0,'',0,'',0,0,0,0,'','','','',0,'0000-00-00 00:00:00','Email ckeziah127@gmail.com   ','','{\"rendered\":{\"914\":{\"field_id\":\"914\",\"type\":\"text\",\"name\":\"Email\",\"value\":\"ckeziah127@gmail.com\"},\"911\":{\"field_id\":\"911\",\"type\":\"locations\",\"name\":\"Location\",\"value\":\"\",\"settings\":[]}},\"materials\":{\"main_email\":{\"field_id\":\"914\",\"type\":\"text\",\"name\":\"Email\",\"value\":\"ckeziah127@gmail.com\"},\"locations\":{\"field_id\":\"911\",\"type\":\"locations\",\"name\":\"Location\",\"value\":\"\",\"settings\":[]}},\"location_text\":\"\"}','2021-11-05 20:16:01','','',0,0,NULL,NULL,0,0,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_wpl_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpmailsmtp_debug_events`
--

DROP TABLE IF EXISTS `lrwp_wpmailsmtp_debug_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpmailsmtp_debug_events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `initiator` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_type` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpmailsmtp_debug_events`
--

LOCK TABLES `lrwp_wpmailsmtp_debug_events` WRITE;
/*!40000 ALTER TABLE `lrwp_wpmailsmtp_debug_events` DISABLE KEYS */;
INSERT INTO `lrwp_wpmailsmtp_debug_events` VALUES (1,'Mailer: Other SMTP\r\nYou must provide at least one recipient email address.','{\"file\":\"\\/home\\/lanternrealty\\/public_html\\/wp-content\\/plugins\\/postie\\/postie-message.php\",\"line\":717}',0,'2022-03-10 04:06:05'),(2,'Mailer: Other SMTP\r\nYou must provide at least one recipient email address.','{\"file\":\"\\/home\\/lanternrealty\\/public_html\\/wp-content\\/plugins\\/postie\\/postie-message.php\",\"line\":717}',0,'2022-03-10 04:06:05'),(3,'Mailer: Other SMTP\r\nYou must provide at least one recipient email address.','{\"file\":\"\\/home\\/lanternrealty\\/public_html\\/wp-content\\/plugins\\/postie\\/postie-message.php\",\"line\":717}',0,'2022-04-05 01:25:58'),(4,'Mailer: Other SMTP\r\nYou must provide at least one recipient email address.','{\"file\":\"\\/home\\/lanternrealty\\/public_html\\/wp-content\\/plugins\\/postie\\/postie-message.php\",\"line\":717}',0,'2022-04-05 01:25:58'),(5,'Mailer: Other SMTP\r\nYou must provide at least one recipient email address.','{\"file\":\"\\/home\\/lanternrealty\\/public_html\\/wp-content\\/plugins\\/postie\\/postie-message.php\",\"line\":717}',0,'2022-04-06 08:06:00'),(6,'Mailer: Other SMTP\r\nYou must provide at least one recipient email address.','{\"file\":\"\\/home\\/lanternrealty\\/public_html\\/wp-content\\/plugins\\/postie\\/postie-message.php\",\"line\":717}',0,'2022-04-06 08:06:00'),(7,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/home\\/lanternrealty\\/public_html\\/wp-includes\\/user.php\",\"line\":2472}',0,'2022-04-14 21:29:59'),(8,'Mailer: Other SMTP\r\nSMTP Error: The following recipients failed: quote@lantern-realty.com: No Such User Here','{\"file\":\"\\/home\\/lanternrealty\\/public_html\\/wp-includes\\/user.php\",\"line\":2472}',0,'2022-04-14 21:29:59'),(9,'Mailer: Other SMTP\r\nYou must provide at least one recipient email address.','{\"file\":\"\\/home\\/lanternrealty\\/public_html\\/wp-content\\/plugins\\/postie\\/postie-message.php\",\"line\":717}',0,'2022-05-16 22:56:04'),(10,'Mailer: Other SMTP\r\nYou must provide at least one recipient email address.','{\"file\":\"\\/home\\/lanternrealty\\/public_html\\/wp-content\\/plugins\\/postie\\/postie-message.php\",\"line\":717}',0,'2022-05-16 22:56:04');
/*!40000 ALTER TABLE `lrwp_wpmailsmtp_debug_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wpmailsmtp_tasks_meta`
--

DROP TABLE IF EXISTS `lrwp_wpmailsmtp_tasks_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wpmailsmtp_tasks_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `action` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wpmailsmtp_tasks_meta`
--

LOCK TABLES `lrwp_wpmailsmtp_tasks_meta` WRITE;
/*!40000 ALTER TABLE `lrwp_wpmailsmtp_tasks_meta` DISABLE KEYS */;
INSERT INTO `lrwp_wpmailsmtp_tasks_meta` VALUES (1,'wp_mail_smtp_admin_notifications_update','W10=','2020-10-12 14:27:30'),(2,'wp_mail_smtp_admin_notifications_update','W10=','2020-10-15 00:28:03'),(3,'wp_mail_smtp_admin_notifications_update','W10=','2020-10-16 00:29:02'),(4,'wp_mail_smtp_admin_notifications_update','W10=','2020-10-17 23:30:23'),(5,'wp_mail_smtp_admin_notifications_update','W10=','2020-10-19 00:01:52'),(6,'wp_mail_smtp_admin_notifications_update','W10=','2020-11-11 01:04:26'),(7,'wp_mail_smtp_admin_notifications_update','W10=','2020-12-01 01:21:43'),(8,'wp_mail_smtp_admin_notifications_update','W10=','2021-01-28 00:14:01'),(9,'wp_mail_smtp_admin_notifications_update','W10=','2021-01-29 00:49:37'),(10,'wp_mail_smtp_admin_notifications_update','W10=','2021-02-08 00:18:53'),(11,'wp_mail_smtp_admin_notifications_update','W10=','2021-02-16 00:48:06'),(12,'wp_mail_smtp_admin_notifications_update','W10=','2021-02-18 14:10:21'),(13,'wp_mail_smtp_admin_notifications_update','W10=','2021-02-23 23:37:52'),(14,'wp_mail_smtp_admin_notifications_update','W10=','2021-03-14 22:11:34'),(15,'wp_mail_smtp_admin_notifications_update','W10=','2021-04-13 23:54:22'),(16,'wp_mail_smtp_admin_notifications_update','W10=','2021-05-01 01:58:05'),(17,'wp_mail_smtp_admin_notifications_update','W10=','2021-05-14 12:28:33'),(18,'wp_mail_smtp_admin_notifications_update','W10=','2021-05-22 12:58:40'),(19,'wp_mail_smtp_admin_notifications_update','W10=','2021-06-09 00:01:27'),(20,'wp_mail_smtp_admin_notifications_update','W10=','2021-06-09 00:02:00'),(21,'wp_mail_smtp_admin_notifications_update','W10=','2021-06-24 11:30:18'),(22,'wp_mail_smtp_admin_notifications_update','W10=','2021-07-17 18:51:01'),(23,'wp_mail_smtp_admin_notifications_update','W10=','2021-08-01 21:13:40'),(24,'wp_mail_smtp_admin_notifications_update','W10=','2021-09-04 00:01:07'),(25,'wp_mail_smtp_admin_notifications_update','W10=','2021-11-05 11:58:00'),(26,'wp_mail_smtp_admin_notifications_update','W10=','2021-11-05 11:58:19'),(27,'wp_mail_smtp_admin_notifications_update','W10=','2021-11-22 00:20:45'),(28,'wp_mail_smtp_admin_notifications_update','W10=','2021-11-29 02:51:39'),(29,'wp_mail_smtp_admin_notifications_update','W10=','2021-12-10 13:20:14'),(30,'wp_mail_smtp_admin_notifications_update','W10=','2022-01-03 17:51:12'),(31,'wp_mail_smtp_admin_notifications_update','W10=','2022-01-06 23:07:43'),(32,'wp_mail_smtp_admin_notifications_update','W10=','2022-01-06 23:08:28'),(33,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-18 01:08:37'),(34,'wp_mail_smtp_admin_notifications_update','W10=','2022-04-14 14:23:14'),(35,'wp_mail_smtp_admin_notifications_update','W10=','2022-04-15 14:46:08'),(36,'wp_mail_smtp_admin_notifications_update','W10=','2022-04-16 15:26:41'),(37,'wp_mail_smtp_admin_notifications_update','W10=','2022-04-18 14:17:25'),(38,'wp_mail_smtp_admin_notifications_update','W10=','2022-04-20 00:54:42'),(39,'wp_mail_smtp_admin_notifications_update','W10=','2022-04-20 00:55:30'),(40,'wp_mail_smtp_admin_notifications_update','W10=','2022-04-21 01:10:49'),(41,'wp_mail_smtp_admin_notifications_update','W10=','2022-04-25 16:17:17'),(42,'wp_mail_smtp_admin_notifications_update','W10=','2022-04-30 15:56:14'),(43,'wp_mail_smtp_admin_notifications_update','W10=','2022-04-30 15:56:14'),(44,'wp_mail_smtp_admin_notifications_update','W10=','2022-04-30 15:56:23'),(45,'wp_mail_smtp_admin_notifications_update','W10=','2022-05-14 15:13:27'),(46,'wp_mail_smtp_admin_notifications_update','W10=','2022-05-14 15:13:27'),(47,'wp_mail_smtp_admin_notifications_update','W10=','2022-05-26 00:43:37'),(48,'wp_mail_smtp_admin_notifications_update','W10=','2022-06-23 23:58:14');
/*!40000 ALTER TABLE `lrwp_wpmailsmtp_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wps_cleaner`
--

DROP TABLE IF EXISTS `lrwp_wps_cleaner`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wps_cleaner` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `blog_id` bigint(20) NOT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `media_id` bigint(20) NOT NULL,
  `object_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6674 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wps_cleaner`
--

LOCK TABLES `lrwp_wps_cleaner` WRITE;
/*!40000 ALTER TABLE `lrwp_wps_cleaner` DISABLE KEYS */;
INSERT INTO `lrwp_wps_cleaner` VALUES (2366,1,'post_thumbnail',624,'623'),(272,1,'post_thumbnail',621,'620'),(267,1,'post_thumbnail',618,'617'),(1598,1,'post_content',1481,'1480'),(1677,1,'post_thumbnail',609,'608'),(1064,1,'post_thumbnail',1127,'604'),(1070,1,'post_thumbnail',602,'601'),(154,1,'post_thumbnail',599,'598'),(1600,1,'post_content',1491,'1490'),(265,1,'post_thumbnail',580,'579'),(6488,1,'post_thumbnail',577,'576'),(184,1,'post_thumbnail',574,'573'),(1675,1,'post_thumbnail',566,'565'),(6652,1,'post_thumbnail',2333,'563'),(262,1,'post_thumbnail',561,'560'),(222,1,'post_thumbnail',591,'558'),(204,1,'post_thumbnail',556,'555'),(195,1,'post_thumbnail',572,'553'),(188,1,'post_thumbnail',627,'551'),(156,1,'post_thumbnail',592,'549'),(134,1,'post_thumbnail',547,'546'),(1602,1,'post_content',1494,'1493'),(391,1,'post_thumbnail',529,'528'),(2360,1,'post_content',515,'508'),(2359,1,'post_content',514,'508'),(216,1,'post_thumbnail',504,'503'),(213,1,'post_thumbnail',542,'497'),(2067,1,'post_thumbnail',1684,'1682'),(1679,1,'post_thumbnail',22,'487'),(2400,1,'post_thumbnail',2267,'484'),(2267,1,'post_thumbnail',482,'481'),(220,1,'post_thumbnail',543,'476'),(2310,1,'post_thumbnail',474,'473'),(2390,1,'post_thumbnail',2261,'470'),(136,1,'post_thumbnail',541,'468'),(256,1,'post_thumbnail',445,'444'),(2405,1,'post_thumbnail',501,'442'),(252,1,'post_thumbnail',440,'439'),(248,1,'post_thumbnail',500,'434'),(240,1,'post_thumbnail',431,'430'),(5171,1,'post_thumbnail',428,'427'),(389,1,'post_thumbnail',425,'424'),(193,1,'post_thumbnail',499,'419'),(137,1,'post_thumbnail',417,'416'),(1068,1,'post_thumbnail',414,'411'),(223,1,'post_thumbnail',401,'400'),(186,1,'post_thumbnail',394,'393'),(210,1,'post_thumbnail',391,'390'),(2090,1,'post_content',1836,'1834'),(2313,1,'post_thumbnail',2113,'383'),(157,1,'post_thumbnail',381,'380'),(1678,1,'post_thumbnail',378,'377'),(1676,1,'post_thumbnail',374,'373'),(128,1,'post_thumbnail',372,'370'),(172,1,'post_thumbnail',359,'358'),(230,1,'post_thumbnail',323,'322'),(254,1,'post_thumbnail',142,'141'),(169,1,'post_thumbnail',136,'135'),(181,1,'post_thumbnail',133,'132'),(145,1,'post_thumbnail',127,'126'),(234,1,'post_thumbnail',121,'120'),(323,1,'post_thumbnail',119,'114'),(2402,1,'post_thumbnail',112,'111'),(322,1,'post_thumbnail',106,'105'),(1084,1,'post_thumbnail',663,'45'),(1072,1,'post_thumbnail',38,'37'),(6410,1,'post_thumbnail',646,'645'),(118,1,'post_thumbnail',747,'744'),(103,1,'post_thumbnail',674,'757'),(2459,1,'post_thumbnail',21,'758'),(2461,1,'post_thumbnail',1125,'759'),(1584,1,'post_thumbnail',1363,'760'),(143,1,'post_thumbnail',124,'123'),(148,1,'post_thumbnail',362,'361'),(158,1,'post_thumbnail',145,'144'),(175,1,'post_thumbnail',423,'421'),(176,1,'post_thumbnail',139,'138'),(177,1,'post_thumbnail',490,'489'),(178,1,'post_thumbnail',320,'319'),(179,1,'post_thumbnail',479,'478'),(180,1,'post_thumbnail',130,'129'),(182,1,'post_thumbnail',437,'436'),(6625,1,'post_content',1896,'101'),(1434,1,'post_content',21,'1320'),(1437,1,'post_content',21,'1319'),(1440,1,'post_content',21,'1321'),(1544,1,'post_content',56,'1325'),(1445,1,'post_content',56,'1334'),(1450,1,'post_content',56,'1335'),(1452,1,'post_content',56,'1336'),(1457,1,'post_content',56,'1337'),(1461,1,'post_content',56,'1338'),(326,1,'post_thumbnail',782,'781'),(2407,1,'post_thumbnail',2273,'1551'),(332,1,'post_thumbnail',786,'785'),(1643,1,'post_thumbnail',789,'788'),(340,1,'post_thumbnail',792,'791'),(2318,1,'post_thumbnail',796,'795'),(344,1,'post_thumbnail',799,'798'),(346,1,'post_thumbnail',22,'801'),(348,1,'post_thumbnail',806,'805'),(351,1,'post_thumbnail',809,'808'),(2394,1,'post_thumbnail',812,'811'),(355,1,'post_thumbnail',22,'814'),(359,1,'post_thumbnail',817,'816'),(2393,1,'post_thumbnail',820,'819'),(364,1,'post_thumbnail',823,'822'),(366,1,'post_thumbnail',826,'825'),(369,1,'post_thumbnail',829,'828'),(371,1,'post_thumbnail',832,'831'),(373,1,'post_thumbnail',22,'834'),(375,1,'post_thumbnail',837,'836'),(377,1,'post_thumbnail',840,'839'),(379,1,'post_thumbnail',843,'842'),(381,1,'post_thumbnail',846,'845'),(2453,1,'post_thumbnail',2258,'848'),(2065,1,'post_thumbnail',1680,'1677'),(1687,1,'post_thumbnail',1590,'853'),(1647,1,'post_thumbnail',1550,'1548'),(1645,1,'post_thumbnail',1547,'1545'),(1641,1,'post_content',1543,'1541'),(1640,1,'post_content',1542,'1541'),(1637,1,'post_thumbnail',1530,'1523'),(1097,1,'post_content',663,'1251'),(1101,1,'post_content',663,'1252'),(1086,1,'post_content',663,'1248'),(1090,1,'post_content',663,'1249'),(1689,1,'post_thumbnail',1522,'1520'),(2316,1,'post_thumbnail',1519,'1517'),(1613,1,'post_thumbnail',1516,'1514'),(1615,1,'post_thumbnail',1512,'1510'),(1614,1,'post_thumbnail',1509,'1507'),(1604,1,'post_content',1497,'1496'),(1596,1,'post_content',515,'1454'),(1595,1,'post_content',514,'1454'),(1592,1,'post_thumbnail',1451,'1449'),(1586,1,'post_content',1425,'1424'),(1588,1,'post_content',1431,'1430'),(1580,1,'post_content',1294,'1411'),(1576,1,'post_content',1363,'1412'),(1574,1,'post_thumbnail',1410,'1408'),(6653,1,'post_thumbnail',1407,'1405'),(1681,1,'post_thumbnail',1404,'1402'),(1566,1,'post_thumbnail',1397,'1393'),(1568,1,'post_thumbnail',1400,'1398'),(2213,1,'post_content',1990,'1988'),(1549,1,'post_content',1372,'1371'),(1547,1,'post_content',56,'1360'),(1542,1,'post_content',56,'1359'),(1538,1,'post_content',56,'1358'),(1527,1,'post_content',56,'1355'),(1531,1,'post_content',56,'1356'),(1525,1,'post_content',56,'1354'),(1515,1,'post_content',56,'1353'),(1519,1,'post_content',56,'1352'),(1508,1,'post_content',56,'1350'),(1501,1,'post_content',56,'1348'),(1497,1,'post_content',56,'1347'),(1493,1,'post_content',56,'1346'),(1489,1,'post_content',56,'1344'),(1485,1,'post_content',56,'1345'),(1481,1,'post_content',56,'1342'),(1477,1,'post_content',56,'1343'),(1473,1,'post_content',56,'1341'),(1469,1,'post_content',56,'1340'),(1409,1,'post_content',1294,'1313'),(1034,1,'post_content',22,'998'),(1465,1,'post_content',56,'1339'),(1033,1,'post_content',910,'998'),(1032,1,'post_content',906,'998'),(1429,1,'post_content',1125,'1317'),(1426,1,'post_content',1125,'1318'),(1421,1,'post_content',1294,'1316'),(1417,1,'post_content',1294,'1315'),(1405,1,'post_content',674,'1312'),(1394,1,'post_content',1294,'1311'),(1395,1,'post_content',1122,'1311'),(1413,1,'post_content',1294,'1314'),(1393,1,'post_content',674,'1311'),(1392,1,'post_content',663,'1311'),(1386,1,'post_content',663,'1310'),(1582,1,'post_content',1363,'1309'),(1381,1,'post_content',663,'1306'),(1415,1,'post_content',1294,'1305'),(1378,1,'post_content',663,'1308'),(1376,1,'post_content',663,'1303'),(1407,1,'post_content',674,'1302'),(1374,1,'post_content',663,'1304'),(1431,1,'post_content',1125,'1307'),(1367,1,'post_content',1122,'1299'),(1366,1,'post_content',1294,'1299'),(1365,1,'post_content',674,'1299'),(1364,1,'post_content',663,'1299'),(1351,1,'post_content',1122,'1298'),(1350,1,'post_content',1294,'1298'),(1349,1,'post_content',674,'1298'),(1348,1,'post_content',663,'1298'),(1326,1,'post_content',1294,'1297'),(1327,1,'post_content',1122,'1297'),(1325,1,'post_content',674,'1297'),(1311,1,'post_content',1122,'1295'),(1324,1,'post_content',663,'1297'),(1310,1,'post_content',1294,'1295'),(1309,1,'post_content',674,'1295'),(1308,1,'post_content',663,'1295'),(1295,1,'post_content',1122,'1296'),(1294,1,'post_content',1294,'1296'),(1293,1,'post_content',674,'1296'),(1292,1,'post_content',663,'1296'),(1279,1,'post_content',1122,'1292'),(1278,1,'post_content',22,'1292'),(1277,1,'post_content',674,'1292'),(1276,1,'post_content',663,'1292'),(3544,1,'post_content',663,'2513'),(1265,1,'post_content',1122,'1291'),(1264,1,'post_content',674,'1291'),(1263,1,'post_content',663,'1291'),(1253,1,'post_content',674,'1289'),(1252,1,'post_content',663,'1289'),(1242,1,'post_content',1122,'1290'),(1241,1,'post_content',674,'1290'),(1240,1,'post_content',663,'1290'),(6477,1,'post_content',2582,'1279'),(6476,1,'post_content',2577,'1279'),(1234,1,'post_content',663,'1288'),(1230,1,'post_content',663,'1287'),(1226,1,'post_content',663,'1286'),(1222,1,'post_content',663,'1285'),(900,1,'post_content',910,'1083'),(899,1,'post_content',906,'1083'),(1218,1,'post_content',663,'1284'),(1214,1,'post_content',663,'1283'),(1210,1,'post_content',663,'1282'),(1206,1,'post_content',663,'1281'),(1372,1,'post_content',663,'1245'),(1080,1,'post_content',1197,'1215'),(1031,1,'post_content',1010,'998'),(1030,1,'post_content',1009,'998'),(1204,1,'post_content',663,'1280'),(6475,1,'post_content',2573,'1279'),(1200,1,'post_content',663,'1277'),(1196,1,'post_content',663,'1276'),(1190,1,'post_content',663,'1275'),(1186,1,'post_content',663,'1273'),(1182,1,'post_content',663,'1274'),(1178,1,'post_content',663,'1272'),(1171,1,'post_content',663,'1270'),(1167,1,'post_content',663,'1269'),(1148,1,'post_content',663,'1264'),(1144,1,'post_content',663,'1263'),(1140,1,'post_content',663,'1262'),(1133,1,'post_content',663,'1260'),(1125,1,'post_content',663,'1258'),(1129,1,'post_content',663,'1259'),(1160,1,'post_content',663,'1267'),(1156,1,'post_content',663,'1266'),(1152,1,'post_content',663,'1265'),(1121,1,'post_content',663,'1257'),(1117,1,'post_content',663,'1256'),(1113,1,'post_content',663,'1255'),(1109,1,'post_content',663,'1254'),(1105,1,'post_content',663,'1253'),(1078,1,'post_content',1195,'1216'),(1052,1,'post_content',1115,'1113'),(1051,1,'post_content',1114,'1113'),(1082,1,'post_content',1195,'1194'),(1081,1,'post_content',1197,'1196'),(2311,1,'post_thumbnail',1556,'1554'),(1657,1,'post_thumbnail',1559,'1557'),(1663,1,'post_content',1573,'1570'),(1662,1,'post_content',1572,'1570'),(1661,1,'post_content',1571,'1570'),(1666,1,'post_content',21,'1574'),(1667,1,'post_content',21,'1575'),(1671,1,'post_content',1581,'1579'),(1670,1,'post_content',1580,'1579'),(1941,1,'post_content',1616,'1645'),(1692,1,'post_content',1363,'1600'),(1939,1,'post_content',1616,'1646'),(2042,1,'post_content',1616,'1599'),(1697,1,'post_content',1363,'1608'),(1698,1,'post_content',1553,'1608'),(1699,1,'post_content',1550,'1608'),(1703,1,'post_content',1363,'1607'),(1704,1,'post_content',1553,'1607'),(1705,1,'post_content',1550,'1607'),(1709,1,'post_content',1363,'1606'),(1710,1,'post_content',1553,'1606'),(1711,1,'post_content',1550,'1606'),(1715,1,'post_content',1363,'1605'),(1716,1,'post_content',1553,'1605'),(1717,1,'post_content',1550,'1605'),(1721,1,'post_content',1363,'1604'),(1722,1,'post_content',1553,'1604'),(1723,1,'post_content',1550,'1604'),(1727,1,'post_content',1363,'1603'),(1728,1,'post_content',1553,'1603'),(1729,1,'post_content',1550,'1603'),(1733,1,'post_content',1363,'1602'),(1737,1,'post_content',1363,'1601'),(1741,1,'post_content',1363,'1609'),(1742,1,'post_content',1553,'1609'),(1743,1,'post_content',1550,'1609'),(1747,1,'post_content',1363,'1610'),(1748,1,'post_content',1553,'1610'),(1749,1,'post_content',1550,'1610'),(1753,1,'post_content',1363,'1612'),(1754,1,'post_content',1553,'1612'),(1755,1,'post_content',1550,'1612'),(1759,1,'post_content',1363,'1611'),(1760,1,'post_content',1553,'1611'),(1761,1,'post_content',1550,'1611'),(1765,1,'post_content',1363,'1615'),(1766,1,'post_content',1553,'1615'),(1767,1,'post_content',1550,'1615'),(1771,1,'post_content',1363,'1614'),(1772,1,'post_content',1553,'1614'),(1773,1,'post_content',1550,'1614'),(1777,1,'post_content',1363,'1613'),(1778,1,'post_content',1553,'1613'),(1779,1,'post_content',1550,'1613'),(1783,1,'post_content',1616,'1619'),(1784,1,'post_content',1553,'1619'),(1785,1,'post_content',1550,'1619'),(1789,1,'post_content',1363,'1618'),(1790,1,'post_content',1553,'1618'),(1791,1,'post_content',1550,'1618'),(1795,1,'post_content',1363,'1617'),(1796,1,'post_content',1553,'1617'),(1797,1,'post_content',1550,'1617'),(1804,1,'post_content',1616,'1620'),(1805,1,'post_content',1553,'1620'),(1806,1,'post_content',1550,'1620'),(1811,1,'post_content',663,'1623'),(1812,1,'post_content',674,'1623'),(1813,1,'post_content',1294,'1623'),(1814,1,'post_content',1122,'1623'),(1819,1,'post_content',663,'1622'),(1820,1,'post_content',674,'1622'),(1821,1,'post_content',1294,'1622'),(1822,1,'post_content',1122,'1622'),(1827,1,'post_content',663,'1621'),(1828,1,'post_content',674,'1621'),(1829,1,'post_content',1294,'1621'),(1830,1,'post_content',1122,'1621'),(6474,1,'post_content',1616,'1279'),(6473,1,'post_content',1363,'1279'),(1843,1,'post_content',663,'1626'),(1844,1,'post_content',674,'1626'),(1845,1,'post_content',1294,'1626'),(1846,1,'post_content',1122,'1626'),(1847,1,'post_content',663,'1632'),(1848,1,'post_content',674,'1632'),(1849,1,'post_content',1294,'1632'),(1850,1,'post_content',1122,'1632'),(1851,1,'post_content',1363,'1632'),(1852,1,'post_content',1616,'1632'),(1859,1,'post_content',663,'1631'),(1860,1,'post_content',674,'1631'),(1861,1,'post_content',1294,'1631'),(1862,1,'post_content',1122,'1631'),(1863,1,'post_content',1616,'1631'),(1870,1,'post_content',663,'1630'),(1871,1,'post_content',674,'1630'),(1872,1,'post_content',1294,'1630'),(1873,1,'post_content',1122,'1630'),(1874,1,'post_content',1616,'1630'),(1881,1,'post_content',663,'1629'),(1882,1,'post_content',674,'1629'),(1883,1,'post_content',1294,'1629'),(1884,1,'post_content',1122,'1629'),(1885,1,'post_content',1616,'1629'),(1892,1,'post_content',663,'1628'),(1893,1,'post_content',674,'1628'),(1894,1,'post_content',1294,'1628'),(1895,1,'post_content',1122,'1628'),(1902,1,'post_content',663,'1627'),(1903,1,'post_content',674,'1627'),(1904,1,'post_content',1294,'1627'),(1905,1,'post_content',1122,'1627'),(1912,1,'post_content',663,'1625'),(1913,1,'post_content',674,'1625'),(1914,1,'post_content',1294,'1625'),(1915,1,'post_content',1122,'1625'),(1922,1,'post_content',663,'1624'),(1923,1,'post_content',674,'1624'),(1924,1,'post_content',1294,'1624'),(1925,1,'post_content',1122,'1624'),(2048,1,'post_thumbnail',1654,'1633'),(1931,1,'post_thumbnail',1639,'1637'),(2221,1,'post_thumbnail',1889,'1640'),(2404,1,'post_thumbnail',2269,'1642'),(1942,1,'post_content',1553,'1645'),(1943,1,'post_content',1550,'1645'),(1945,1,'post_content',1616,'1644'),(1946,1,'post_content',1553,'1644'),(1947,1,'post_content',1550,'1644'),(6624,1,'post_content',1639,'101'),(6623,1,'post_content',1550,'101'),(6622,1,'post_content',1522,'101'),(6621,1,'post_content',1530,'101'),(6620,1,'post_content',1516,'101'),(6619,1,'post_content',1509,'101'),(6618,1,'post_content',1451,'101'),(6617,1,'post_content',1547,'101'),(6616,1,'post_content',1684,'101'),(6615,1,'post_content',1410,'101'),(6614,1,'post_content',1687,'101'),(6613,1,'post_content',1590,'101'),(6612,1,'post_content',1680,'101'),(6611,1,'post_content',1559,'101'),(6610,1,'post_content',1654,'101'),(6609,1,'post_content',1407,'101'),(6608,1,'post_content',1404,'101'),(6607,1,'post_content',1400,'101'),(6606,1,'post_content',1657,'101'),(6605,1,'post_content',1512,'101'),(6604,1,'post_content',1397,'101'),(1970,1,'post_content',21,'1649'),(1971,1,'post_content',1519,'1649'),(1972,1,'post_content',1397,'1649'),(1973,1,'post_content',1512,'1649'),(1974,1,'post_content',1400,'1649'),(1975,1,'post_content',1404,'1649'),(1976,1,'post_content',1407,'1649'),(1977,1,'post_content',1635,'1649'),(1978,1,'post_content',1559,'1649'),(1979,1,'post_content',1590,'1649'),(1980,1,'post_content',1410,'1649'),(1981,1,'post_content',1547,'1649'),(1982,1,'post_content',1392,'1649'),(1983,1,'post_content',1556,'1649'),(1984,1,'post_content',1451,'1649'),(1985,1,'post_content',1509,'1649'),(1986,1,'post_content',1516,'1649'),(1987,1,'post_content',1530,'1649'),(1988,1,'post_content',1522,'1649'),(1989,1,'post_content',1553,'1649'),(1990,1,'post_content',1550,'1649'),(1991,1,'post_content',1639,'1649'),(2014,1,'post_content',21,'1648'),(2037,1,'post_content',21,'1647'),(2039,1,'post_content',1616,'1652'),(2041,1,'post_content',1616,'1651'),(2043,1,'post_content',1616,'1650'),(2054,1,'post_thumbnail',1657,'1655'),(2058,1,'post_content',1660,'1658'),(2057,1,'post_content',1659,'1658'),(6655,1,'post_thumbnail',1687,'1685'),(2071,1,'post_content',1701,'1700'),(2075,1,'post_content',1709,'1707'),(2074,1,'post_content',1708,'1707'),(2076,1,'post_content',1711,'1710'),(2077,1,'post_content',1712,'1710'),(2078,1,'post_content',1713,'1710'),(2079,1,'post_content',1714,'1710'),(2080,1,'post_content',1715,'1710'),(2082,1,'post_content',1718,'1717'),(2086,1,'post_content',1726,'1724'),(2085,1,'post_content',1725,'1724'),(2089,1,'post_content',1835,'1834'),(2094,1,'post_content',1846,'1844'),(2093,1,'post_content',1845,'1844'),(2098,1,'post_content',1852,'1850'),(2097,1,'post_content',1851,'1850'),(2100,1,'post_content',1856,'1855'),(2104,1,'post_content',1873,'1871'),(2103,1,'post_content',1872,'1871'),(2108,1,'post_content',1878,'1876'),(2107,1,'post_content',1877,'1876'),(2110,1,'post_content',1882,'1881'),(2227,1,'post_thumbnail',1893,'1892'),(2315,1,'post_thumbnail',1896,'1895'),(2225,1,'post_thumbnail',1899,'1898'),(2127,1,'post_thumbnail',1902,'1901'),(2130,1,'post_thumbnail',1905,'1904'),(2133,1,'post_thumbnail',1908,'1907'),(2142,1,'post_content',1924,'1922'),(2141,1,'post_content',1923,'1922'),(2143,1,'post_thumbnail',1930,'1929'),(2146,1,'post_content',514,'1934'),(2147,1,'post_content',515,'1934'),(2154,1,'post_content',514,'1935'),(2155,1,'post_content',515,'1935'),(2199,1,'post_content',1961,'1939'),(2198,1,'post_content',1960,'1939'),(2197,1,'post_content',1959,'1939'),(2196,1,'post_content',1958,'1939'),(2195,1,'post_content',1957,'1939'),(2194,1,'post_content',1956,'1939'),(2193,1,'post_content',1955,'1939'),(2192,1,'post_content',1954,'1939'),(2191,1,'post_content',1953,'1939'),(2190,1,'post_content',1952,'1939'),(2189,1,'post_content',1951,'1939'),(2188,1,'post_content',1950,'1939'),(2187,1,'post_content',1949,'1939'),(2186,1,'post_content',1948,'1939'),(2185,1,'post_content',1947,'1939'),(2184,1,'post_content',1946,'1939'),(2183,1,'post_content',1945,'1939'),(2182,1,'post_content',1944,'1939'),(2181,1,'post_content',1943,'1939'),(2180,1,'post_content',1942,'1939'),(2179,1,'post_content',1941,'1939'),(2178,1,'post_content',1940,'1939'),(2205,1,'post_content',1965,'1962'),(2204,1,'post_content',1964,'1962'),(2203,1,'post_content',1963,'1962'),(2209,1,'post_content',1974,'1972'),(2208,1,'post_content',1973,'1972'),(2212,1,'post_content',1989,'1988'),(2215,1,'post_content',2000,'1999'),(2219,1,'post_content',2007,'2005'),(2218,1,'post_content',2006,'2005'),(2229,1,'post_thumbnail',1995,'2021'),(2271,1,'post_thumbnail',2072,'2023'),(2317,1,'post_thumbnail',1983,'2025'),(2236,1,'post_thumbnail',1937,'2027'),(2238,1,'post_thumbnail',1920,'2029'),(2240,1,'post_thumbnail',28,'2031'),(2242,1,'post_thumbnail',1967,'2033'),(6496,1,'post_thumbnail',2653,'2035'),(2249,1,'post_content',2039,'2037'),(2248,1,'post_content',2038,'2037'),(2253,1,'post_content',2060,'2058'),(2252,1,'post_content',2059,'2058'),(2255,1,'post_content',2062,'2061'),(2259,1,'post_content',2066,'2064'),(2258,1,'post_content',2065,'2064'),(2273,1,'post_thumbnail',2070,'2077'),(2276,1,'post_thumbnail',2068,'2079'),(2278,1,'post_thumbnail',2067,'2082'),(2281,1,'post_thumbnail',2063,'2084'),(2283,1,'post_thumbnail',2056,'2086'),(2287,1,'post_content',2090,'2088'),(2286,1,'post_content',2089,'2088'),(2291,1,'post_content',2099,'2097'),(2290,1,'post_content',2098,'2097'),(2295,1,'post_content',2103,'2101'),(2294,1,'post_content',2102,'2101'),(2299,1,'post_content',2112,'2110'),(2298,1,'post_content',2111,'2110'),(2301,1,'post_content',2119,'2118'),(2305,1,'post_content',2132,'2130'),(2304,1,'post_content',2131,'2130'),(2306,1,'post_content',2137,'2136'),(2307,1,'post_content',2138,'2136'),(2308,1,'post_content',2151,'2150'),(2309,1,'post_content',2152,'2150'),(2321,1,'post_thumbnail',2108,'2163'),(2323,1,'post_thumbnail',2122,'2165'),(2326,1,'post_thumbnail',2123,'2167'),(2328,1,'post_thumbnail',2126,'2169'),(2330,1,'post_thumbnail',2135,'2171'),(2337,1,'post_thumbnail',2156,'2173'),(2338,1,'post_content',2179,'2178'),(2339,1,'post_content',2180,'2178'),(2340,1,'post_content',2181,'2178'),(2361,1,'post_content',514,'2190'),(2362,1,'post_content',515,'2190'),(2363,1,'post_content',514,'2189'),(2364,1,'post_content',515,'2189'),(2368,1,'post_content',2217,'2216'),(2370,1,'post_content',2219,'2218'),(2374,1,'post_content',2223,'2221'),(2373,1,'post_content',2222,'2221'),(2376,1,'post_content',2225,'2224'),(2380,1,'post_content',2230,'2228'),(2379,1,'post_content',2229,'2228'),(2382,1,'post_content',2238,'2237'),(2386,1,'post_content',2250,'2249'),(2385,1,'post_content',2251,'2249'),(2414,1,'post_thumbnail',2275,'2274'),(2428,1,'post_thumbnail',2278,'2277'),(2417,1,'post_thumbnail',2281,'2280'),(2449,1,'post_thumbnail',2311,'2283'),(2421,1,'post_thumbnail',2287,'2286'),(2424,1,'post_thumbnail',2290,'2289'),(6490,1,'post_thumbnail',2313,'2292'),(2441,1,'post_thumbnail',2299,'2298'),(2656,1,'post_thumbnail',28,'2301'),(2443,1,'post_thumbnail',2303,'2302'),(5170,1,'post_thumbnail',2306,'2305'),(2447,1,'post_thumbnail',2309,'2308'),(2462,1,'post_content',663,'2315'),(2463,1,'post_content',674,'2315'),(2464,1,'post_content',1294,'2315'),(2465,1,'post_content',1122,'2315'),(2466,1,'post_content',1363,'2315'),(2467,1,'post_content',1616,'2315'),(2474,1,'post_content',663,'2314'),(2475,1,'post_content',674,'2314'),(2476,1,'post_content',1294,'2314'),(2477,1,'post_content',1122,'2314'),(2478,1,'post_content',1363,'2314'),(2479,1,'post_content',1616,'2314'),(2486,1,'post_content',663,'2316'),(2487,1,'post_content',674,'2316'),(2488,1,'post_content',1294,'2316'),(2489,1,'post_content',1122,'2316'),(2490,1,'post_content',1363,'2316'),(2491,1,'post_content',1616,'2316'),(6603,1,'post_content',21,'101'),(2521,1,'post_content',21,'2319'),(2522,1,'post_content',1397,'2319'),(2523,1,'post_content',1512,'2319'),(2524,1,'post_content',1657,'2319'),(2525,1,'post_content',1400,'2319'),(2526,1,'post_content',1404,'2319'),(2527,1,'post_content',1407,'2319'),(2528,1,'post_content',1654,'2319'),(2529,1,'post_content',1559,'2319'),(2530,1,'post_content',1680,'2319'),(2531,1,'post_content',1590,'2319'),(2532,1,'post_content',1687,'2319'),(2533,1,'post_content',1410,'2319'),(2534,1,'post_content',1684,'2319'),(2535,1,'post_content',1547,'2319'),(2536,1,'post_content',1451,'2319'),(2537,1,'post_content',1509,'2319'),(2538,1,'post_content',1516,'2319'),(2539,1,'post_content',1530,'2319'),(2540,1,'post_content',1522,'2319'),(2541,1,'post_content',1550,'2319'),(2542,1,'post_content',1639,'2319'),(2543,1,'post_content',1896,'2319'),(2567,1,'post_content',21,'2318'),(2568,1,'post_content',1519,'2318'),(2569,1,'post_content',1397,'2318'),(2570,1,'post_content',1512,'2318'),(2571,1,'post_content',1400,'2318'),(2572,1,'post_content',1404,'2318'),(2573,1,'post_content',1407,'2318'),(2574,1,'post_content',1635,'2318'),(2575,1,'post_content',1559,'2318'),(2576,1,'post_content',1590,'2318'),(2577,1,'post_content',1410,'2318'),(2578,1,'post_content',1547,'2318'),(2579,1,'post_content',1392,'2318'),(2580,1,'post_content',1556,'2318'),(2581,1,'post_content',1451,'2318'),(2582,1,'post_content',1509,'2318'),(2583,1,'post_content',1516,'2318'),(2584,1,'post_content',1530,'2318'),(2585,1,'post_content',1522,'2318'),(2586,1,'post_content',1553,'2318'),(2587,1,'post_content',1550,'2318'),(2588,1,'post_content',1639,'2318'),(2589,1,'post_content',21,'2317'),(2590,1,'post_content',1519,'2317'),(2591,1,'post_content',1397,'2317'),(2592,1,'post_content',1512,'2317'),(2593,1,'post_content',1400,'2317'),(2594,1,'post_content',1404,'2317'),(2595,1,'post_content',1407,'2317'),(2596,1,'post_content',1635,'2317'),(2597,1,'post_content',1559,'2317'),(2598,1,'post_content',1590,'2317'),(2599,1,'post_content',1410,'2317'),(2600,1,'post_content',1547,'2317'),(2601,1,'post_content',1392,'2317'),(2602,1,'post_content',1556,'2317'),(2603,1,'post_content',1451,'2317'),(2604,1,'post_content',1509,'2317'),(2605,1,'post_content',1516,'2317'),(2606,1,'post_content',1530,'2317'),(2607,1,'post_content',1522,'2317'),(2608,1,'post_content',1553,'2317'),(2609,1,'post_content',1550,'2317'),(2610,1,'post_content',1639,'2317'),(2645,1,'post_content',2322,'2320'),(2644,1,'post_content',2321,'2320'),(2643,1,'post_content',2326,'2320'),(2642,1,'post_content',2325,'2320'),(2641,1,'post_content',2324,'2320'),(2640,1,'post_content',2323,'2320'),(2647,1,'post_content',2328,'2327'),(2649,1,'post_content',2340,'2339'),(2651,1,'post_content',2351,'2350'),(6432,1,'post_content',2577,'2672'),(2666,1,'post_thumbnail',28,'2371'),(6407,1,'post_thumbnail',28,'2370'),(6472,1,'post_content',2594,'1279'),(2674,1,'post_content',663,'2374'),(2675,1,'post_content',674,'2374'),(2676,1,'post_content',1294,'2374'),(2677,1,'post_content',1122,'2374'),(2678,1,'post_content',1363,'2374'),(2679,1,'post_content',1616,'2374'),(2680,1,'post_content',28,'2374'),(2688,1,'post_content',663,'2373'),(2689,1,'post_content',674,'2373'),(2690,1,'post_content',1294,'2373'),(2691,1,'post_content',1122,'2373'),(2692,1,'post_content',1363,'2373'),(2693,1,'post_content',1616,'2373'),(2701,1,'post_content',663,'2372'),(2702,1,'post_content',674,'2372'),(2703,1,'post_content',1294,'2372'),(2704,1,'post_content',1122,'2372'),(2705,1,'post_content',1363,'2372'),(2706,1,'post_content',1616,'2372'),(2714,1,'post_content',663,'2376'),(2715,1,'post_content',674,'2376'),(2716,1,'post_content',1294,'2376'),(2717,1,'post_content',1122,'2376'),(2718,1,'post_content',1363,'2376'),(2719,1,'post_content',1616,'2376'),(2720,1,'post_content',28,'2376'),(2728,1,'post_content',663,'2375'),(2729,1,'post_content',674,'2375'),(2730,1,'post_content',1294,'2375'),(2731,1,'post_content',1122,'2375'),(2732,1,'post_content',1363,'2375'),(2733,1,'post_content',1616,'2375'),(2734,1,'post_content',28,'2375'),(2742,1,'post_content',663,'2377'),(2743,1,'post_content',674,'2377'),(2744,1,'post_content',1294,'2377'),(2745,1,'post_content',1122,'2377'),(2746,1,'post_content',1363,'2377'),(2747,1,'post_content',1616,'2377'),(2748,1,'post_content',28,'2377'),(2756,1,'post_content',663,'2379'),(2757,1,'post_content',674,'2379'),(2758,1,'post_content',1294,'2379'),(2759,1,'post_content',1122,'2379'),(2760,1,'post_content',1363,'2379'),(2761,1,'post_content',1616,'2379'),(2762,1,'post_content',28,'2379'),(2770,1,'post_content',663,'2378'),(2771,1,'post_content',674,'2378'),(2772,1,'post_content',1294,'2378'),(2773,1,'post_content',1122,'2378'),(2774,1,'post_content',1363,'2378'),(2775,1,'post_content',1616,'2378'),(2776,1,'post_content',28,'2378'),(2777,1,'post_content',663,'2380'),(2778,1,'post_content',674,'2380'),(2779,1,'post_content',1294,'2380'),(2780,1,'post_content',1122,'2380'),(2781,1,'post_content',1363,'2380'),(2782,1,'post_content',1616,'2380'),(2783,1,'post_content',28,'2380'),(2798,1,'post_content',663,'2384'),(2799,1,'post_content',674,'2384'),(2800,1,'post_content',1294,'2384'),(2801,1,'post_content',1122,'2384'),(2802,1,'post_content',1363,'2384'),(2803,1,'post_content',1616,'2384'),(2804,1,'post_content',28,'2384'),(2812,1,'post_content',663,'2383'),(2813,1,'post_content',674,'2383'),(2814,1,'post_content',1294,'2383'),(2815,1,'post_content',1122,'2383'),(2816,1,'post_content',1363,'2383'),(2817,1,'post_content',1616,'2383'),(2818,1,'post_content',28,'2383'),(2826,1,'post_content',663,'2382'),(2827,1,'post_content',674,'2382'),(2828,1,'post_content',1294,'2382'),(2829,1,'post_content',1122,'2382'),(2830,1,'post_content',1363,'2382'),(2831,1,'post_content',1616,'2382'),(2832,1,'post_content',28,'2382'),(2840,1,'post_content',663,'2381'),(2841,1,'post_content',674,'2381'),(2842,1,'post_content',1294,'2381'),(2843,1,'post_content',1122,'2381'),(2844,1,'post_content',1363,'2381'),(2845,1,'post_content',1616,'2381'),(2846,1,'post_content',28,'2381'),(2847,1,'post_content',663,'2385'),(2848,1,'post_content',674,'2385'),(2849,1,'post_content',1294,'2385'),(2850,1,'post_content',1122,'2385'),(2851,1,'post_content',1363,'2385'),(2852,1,'post_content',1616,'2385'),(2853,1,'post_content',28,'2385'),(2861,1,'post_content',663,'2386'),(2862,1,'post_content',674,'2386'),(2863,1,'post_content',1294,'2386'),(2864,1,'post_content',1122,'2386'),(2865,1,'post_content',1363,'2386'),(2866,1,'post_content',1616,'2386'),(2867,1,'post_content',28,'2386'),(2882,1,'post_content',663,'2389'),(2883,1,'post_content',674,'2389'),(2884,1,'post_content',1294,'2389'),(2885,1,'post_content',1122,'2389'),(2886,1,'post_content',1363,'2389'),(2887,1,'post_content',1616,'2389'),(2888,1,'post_content',28,'2389'),(2896,1,'post_content',663,'2388'),(2897,1,'post_content',674,'2388'),(2898,1,'post_content',1294,'2388'),(2899,1,'post_content',1122,'2388'),(2900,1,'post_content',1363,'2388'),(2901,1,'post_content',1616,'2388'),(2902,1,'post_content',28,'2388'),(2910,1,'post_content',663,'2387'),(2911,1,'post_content',674,'2387'),(2912,1,'post_content',1294,'2387'),(2913,1,'post_content',1122,'2387'),(2914,1,'post_content',1363,'2387'),(2915,1,'post_content',1616,'2387'),(2916,1,'post_content',28,'2387'),(3041,1,'post_content',1400,'2407'),(3040,1,'post_content',1657,'2407'),(2920,1,'post_content',2369,'2393'),(2921,1,'post_content',1896,'2393'),(2924,1,'post_content',1616,'2392'),(2927,1,'post_content',1616,'2391'),(2930,1,'post_content',2369,'2399'),(2931,1,'post_content',1896,'2399'),(2934,1,'post_content',2369,'2398'),(2935,1,'post_content',1896,'2398'),(2938,1,'post_content',2369,'2397'),(2939,1,'post_content',1896,'2397'),(2942,1,'post_content',2369,'2396'),(2943,1,'post_content',1896,'2396'),(2946,1,'post_content',2369,'2395'),(2947,1,'post_content',1896,'2395'),(2950,1,'post_content',2369,'2394'),(2951,1,'post_content',1896,'2394'),(2952,1,'post_content',2369,'2400'),(2953,1,'post_content',1896,'2400'),(2956,1,'post_content',2369,'2401'),(2957,1,'post_content',1896,'2401'),(2960,1,'post_content',2369,'2402'),(2961,1,'post_content',1896,'2402'),(3039,1,'post_content',1512,'2407'),(3038,1,'post_content',1397,'2407'),(3037,1,'post_content',1530,'2407'),(3036,1,'post_content',1522,'2407'),(3035,1,'post_content',1516,'2407'),(3034,1,'post_content',1896,'2407'),(3033,1,'post_content',2369,'2407'),(3031,1,'post_content',2369,'2408'),(3029,1,'post_content',2369,'2409'),(3027,1,'post_content',2369,'2410'),(3025,1,'post_content',2369,'2411'),(3068,1,'post_content',2369,'2390'),(2978,1,'post_content',2369,'2405'),(2979,1,'post_content',1896,'2405'),(2980,1,'post_content',1516,'2405'),(2981,1,'post_content',1522,'2405'),(2982,1,'post_content',1530,'2405'),(2983,1,'post_content',1397,'2405'),(2984,1,'post_content',1512,'2405'),(2985,1,'post_content',1657,'2405'),(2986,1,'post_content',1400,'2405'),(2987,1,'post_content',1404,'2405'),(2988,1,'post_content',1407,'2405'),(2989,1,'post_content',1654,'2405'),(2990,1,'post_content',1559,'2405'),(2991,1,'post_content',1680,'2405'),(3006,1,'post_content',2369,'2404'),(3007,1,'post_content',1896,'2404'),(3008,1,'post_content',2369,'2403'),(3009,1,'post_content',1896,'2403'),(3042,1,'post_content',1404,'2407'),(3043,1,'post_content',1407,'2407'),(3044,1,'post_content',1654,'2407'),(3045,1,'post_content',1559,'2407'),(3046,1,'post_content',1680,'2407'),(3048,1,'post_content',2369,'2406'),(3049,1,'post_content',1896,'2406'),(3050,1,'post_content',1516,'2406'),(3051,1,'post_content',1522,'2406'),(3052,1,'post_content',1530,'2406'),(3053,1,'post_content',1397,'2406'),(3054,1,'post_content',1512,'2406'),(3055,1,'post_content',1657,'2406'),(3056,1,'post_content',1400,'2406'),(3057,1,'post_content',1404,'2406'),(3058,1,'post_content',1407,'2406'),(3059,1,'post_content',1654,'2406'),(3060,1,'post_content',1559,'2406'),(3061,1,'post_content',1680,'2406'),(3063,1,'post_content',2369,'2414'),(3065,1,'post_content',2369,'2413'),(3067,1,'post_content',2369,'2412'),(3069,1,'post_content',2369,'2415'),(6541,1,'post_content',1654,'2708'),(6502,1,'post_thumbnail',2649,'2713'),(6506,1,'post_thumbnail',2650,'2711'),(6510,1,'post_thumbnail',2355,'2709'),(6534,1,'post_content',21,'2708'),(6535,1,'post_content',1397,'2708'),(6536,1,'post_content',1512,'2708'),(6537,1,'post_content',1657,'2708'),(6538,1,'post_content',1400,'2708'),(6539,1,'post_content',1404,'2708'),(6540,1,'post_content',1407,'2708'),(3098,1,'post_content',663,'2445'),(3099,1,'post_content',674,'2445'),(3100,1,'post_content',1294,'2445'),(3101,1,'post_content',1122,'2445'),(3102,1,'post_content',1363,'2445'),(3103,1,'post_content',1616,'2445'),(3104,1,'post_content',28,'2445'),(3112,1,'post_content',663,'2446'),(3113,1,'post_content',674,'2446'),(3114,1,'post_content',1294,'2446'),(3115,1,'post_content',1122,'2446'),(3116,1,'post_content',1363,'2446'),(3117,1,'post_content',1616,'2446'),(3118,1,'post_content',28,'2446'),(3126,1,'post_content',663,'2447'),(3127,1,'post_content',674,'2447'),(3128,1,'post_content',1294,'2447'),(3129,1,'post_content',1122,'2447'),(3130,1,'post_content',1363,'2447'),(3131,1,'post_content',1616,'2447'),(3132,1,'post_content',28,'2447'),(3147,1,'post_content',663,'2466'),(3148,1,'post_content',674,'2466'),(3149,1,'post_content',1294,'2466'),(3150,1,'post_content',1122,'2466'),(3151,1,'post_content',1363,'2466'),(3152,1,'post_content',1616,'2466'),(3153,1,'post_content',28,'2466'),(3161,1,'post_content',663,'2465'),(3162,1,'post_content',674,'2465'),(3163,1,'post_content',1294,'2465'),(3164,1,'post_content',1122,'2465'),(3165,1,'post_content',1363,'2465'),(3166,1,'post_content',1616,'2465'),(3167,1,'post_content',28,'2465'),(3175,1,'post_content',663,'2463'),(3176,1,'post_content',674,'2463'),(3177,1,'post_content',1294,'2463'),(3178,1,'post_content',1122,'2463'),(3179,1,'post_content',1363,'2463'),(3180,1,'post_content',1616,'2463'),(3181,1,'post_content',28,'2463'),(3189,1,'post_content',663,'2462'),(3190,1,'post_content',674,'2462'),(3191,1,'post_content',1294,'2462'),(3192,1,'post_content',1122,'2462'),(3193,1,'post_content',1363,'2462'),(3194,1,'post_content',1616,'2462'),(3195,1,'post_content',28,'2462'),(3203,1,'post_content',663,'2460'),(3204,1,'post_content',674,'2460'),(3205,1,'post_content',1294,'2460'),(3206,1,'post_content',1122,'2460'),(3207,1,'post_content',1363,'2460'),(3208,1,'post_content',1616,'2460'),(3209,1,'post_content',28,'2460'),(3217,1,'post_content',663,'2459'),(3218,1,'post_content',674,'2459'),(3219,1,'post_content',1294,'2459'),(3220,1,'post_content',1122,'2459'),(3221,1,'post_content',1363,'2459'),(3222,1,'post_content',1616,'2459'),(3223,1,'post_content',28,'2459'),(3231,1,'post_content',663,'2458'),(3232,1,'post_content',674,'2458'),(3233,1,'post_content',1294,'2458'),(3234,1,'post_content',1122,'2458'),(3235,1,'post_content',1363,'2458'),(3236,1,'post_content',1616,'2458'),(3237,1,'post_content',28,'2458'),(3245,1,'post_content',663,'2456'),(3246,1,'post_content',674,'2456'),(3247,1,'post_content',1294,'2456'),(3248,1,'post_content',1122,'2456'),(3249,1,'post_content',1363,'2456'),(3250,1,'post_content',1616,'2456'),(3251,1,'post_content',28,'2456'),(3259,1,'post_content',663,'2455'),(3260,1,'post_content',674,'2455'),(3261,1,'post_content',1294,'2455'),(3262,1,'post_content',1122,'2455'),(3263,1,'post_content',1363,'2455'),(3264,1,'post_content',1616,'2455'),(3265,1,'post_content',28,'2455'),(3273,1,'post_content',663,'2454'),(3274,1,'post_content',674,'2454'),(3275,1,'post_content',1294,'2454'),(3276,1,'post_content',1122,'2454'),(3277,1,'post_content',1363,'2454'),(3278,1,'post_content',1616,'2454'),(3279,1,'post_content',28,'2454'),(3287,1,'post_content',663,'2453'),(3288,1,'post_content',674,'2453'),(3289,1,'post_content',1294,'2453'),(3290,1,'post_content',1122,'2453'),(3291,1,'post_content',1363,'2453'),(3292,1,'post_content',1616,'2453'),(3293,1,'post_content',28,'2453'),(3301,1,'post_content',663,'2452'),(3302,1,'post_content',674,'2452'),(3303,1,'post_content',1294,'2452'),(3304,1,'post_content',1122,'2452'),(3305,1,'post_content',1363,'2452'),(3306,1,'post_content',1616,'2452'),(3307,1,'post_content',28,'2452'),(3315,1,'post_content',663,'2451'),(3316,1,'post_content',674,'2451'),(3317,1,'post_content',1294,'2451'),(3318,1,'post_content',1122,'2451'),(3319,1,'post_content',1363,'2451'),(3320,1,'post_content',1616,'2451'),(3321,1,'post_content',28,'2451'),(3329,1,'post_content',663,'2450'),(3330,1,'post_content',674,'2450'),(3331,1,'post_content',1294,'2450'),(3332,1,'post_content',1122,'2450'),(3333,1,'post_content',1363,'2450'),(3334,1,'post_content',1616,'2450'),(3335,1,'post_content',28,'2450'),(3343,1,'post_content',663,'2449'),(3344,1,'post_content',674,'2449'),(3345,1,'post_content',1294,'2449'),(3346,1,'post_content',1122,'2449'),(3347,1,'post_content',1363,'2449'),(3348,1,'post_content',1616,'2449'),(3349,1,'post_content',28,'2449'),(3357,1,'post_content',663,'2448'),(3358,1,'post_content',674,'2448'),(3359,1,'post_content',1294,'2448'),(3360,1,'post_content',1122,'2448'),(3361,1,'post_content',1363,'2448'),(3362,1,'post_content',1616,'2448'),(3363,1,'post_content',28,'2448'),(3364,1,'post_content',663,'2467'),(3365,1,'post_content',674,'2467'),(3366,1,'post_content',1294,'2467'),(3367,1,'post_content',1122,'2467'),(3368,1,'post_content',1363,'2467'),(3369,1,'post_content',1616,'2467'),(3370,1,'post_content',28,'2467'),(3378,1,'post_content',663,'2469'),(3379,1,'post_content',674,'2469'),(3380,1,'post_content',1294,'2469'),(3381,1,'post_content',1122,'2469'),(3382,1,'post_content',1363,'2469'),(3383,1,'post_content',1616,'2469'),(3384,1,'post_content',28,'2469'),(3392,1,'post_content',663,'2470'),(3393,1,'post_content',674,'2470'),(3394,1,'post_content',1294,'2470'),(3395,1,'post_content',1122,'2470'),(3396,1,'post_content',1363,'2470'),(3397,1,'post_content',1616,'2470'),(3398,1,'post_content',28,'2470'),(3406,1,'post_content',663,'2471'),(3407,1,'post_content',674,'2471'),(3408,1,'post_content',1294,'2471'),(3409,1,'post_content',1122,'2471'),(3410,1,'post_content',1363,'2471'),(3411,1,'post_content',1616,'2471'),(3412,1,'post_content',28,'2471'),(3420,1,'post_content',663,'2472'),(3421,1,'post_content',674,'2472'),(3422,1,'post_content',1294,'2472'),(3423,1,'post_content',1122,'2472'),(3424,1,'post_content',1363,'2472'),(3425,1,'post_content',1616,'2472'),(3426,1,'post_content',28,'2472'),(3434,1,'post_content',663,'2473'),(3435,1,'post_content',674,'2473'),(3436,1,'post_content',1294,'2473'),(3437,1,'post_content',1122,'2473'),(3438,1,'post_content',1363,'2473'),(3439,1,'post_content',1616,'2473'),(3440,1,'post_content',28,'2473'),(3448,1,'post_content',663,'2474'),(3449,1,'post_content',674,'2474'),(3450,1,'post_content',1294,'2474'),(3451,1,'post_content',1122,'2474'),(3452,1,'post_content',1363,'2474'),(3453,1,'post_content',1616,'2474'),(3454,1,'post_content',28,'2474'),(3462,1,'post_content',663,'2475'),(3463,1,'post_content',674,'2475'),(3464,1,'post_content',1294,'2475'),(3465,1,'post_content',1122,'2475'),(3466,1,'post_content',1363,'2475'),(3467,1,'post_content',1616,'2475'),(3468,1,'post_content',28,'2475'),(3476,1,'post_content',663,'2476'),(3477,1,'post_content',674,'2476'),(3478,1,'post_content',1294,'2476'),(3479,1,'post_content',1122,'2476'),(3480,1,'post_content',1363,'2476'),(3481,1,'post_content',1616,'2476'),(3482,1,'post_content',28,'2476'),(3490,1,'post_content',663,'2477'),(3491,1,'post_content',674,'2477'),(3492,1,'post_content',1294,'2477'),(3493,1,'post_content',1122,'2477'),(3494,1,'post_content',1363,'2477'),(3495,1,'post_content',1616,'2477'),(3496,1,'post_content',28,'2477'),(3504,1,'post_content',663,'2478'),(3505,1,'post_content',674,'2478'),(3506,1,'post_content',1294,'2478'),(3507,1,'post_content',1122,'2478'),(3508,1,'post_content',1363,'2478'),(3509,1,'post_content',1616,'2478'),(3510,1,'post_content',28,'2478'),(3518,1,'post_content',663,'2479'),(3519,1,'post_content',674,'2479'),(3520,1,'post_content',1294,'2479'),(3521,1,'post_content',1122,'2479'),(3522,1,'post_content',1363,'2479'),(3523,1,'post_content',1616,'2479'),(3524,1,'post_content',28,'2479'),(3532,1,'post_content',663,'2514'),(3533,1,'post_content',674,'2514'),(3534,1,'post_content',28,'2514'),(3535,1,'post_content',1125,'2514'),(3536,1,'post_content',1363,'2514'),(3537,1,'post_content',1616,'2514'),(3545,1,'post_content',674,'2513'),(3546,1,'post_content',28,'2513'),(3547,1,'post_content',1125,'2513'),(3548,1,'post_content',1363,'2513'),(3549,1,'post_content',1616,'2513'),(3556,1,'post_content',663,'2512'),(3557,1,'post_content',674,'2512'),(3558,1,'post_content',28,'2512'),(3559,1,'post_content',1125,'2512'),(3560,1,'post_content',1363,'2512'),(3561,1,'post_content',1616,'2512'),(3574,1,'post_content',663,'2480'),(3575,1,'post_content',674,'2480'),(3576,1,'post_content',1294,'2480'),(3577,1,'post_content',1122,'2480'),(3578,1,'post_content',1363,'2480'),(3579,1,'post_content',1616,'2480'),(3580,1,'post_content',28,'2480'),(3581,1,'post_content',663,'2511'),(3582,1,'post_content',674,'2511'),(3583,1,'post_content',28,'2511'),(3584,1,'post_content',1125,'2511'),(3585,1,'post_content',1363,'2511'),(3586,1,'post_content',1616,'2511'),(3593,1,'post_content',663,'2510'),(3594,1,'post_content',674,'2510'),(3595,1,'post_content',28,'2510'),(3596,1,'post_content',1125,'2510'),(3597,1,'post_content',1363,'2510'),(3598,1,'post_content',1616,'2510'),(3605,1,'post_content',663,'2509'),(3606,1,'post_content',674,'2509'),(3607,1,'post_content',28,'2509'),(3608,1,'post_content',1125,'2509'),(3609,1,'post_content',1363,'2509'),(3610,1,'post_content',1616,'2509'),(3617,1,'post_content',663,'2508'),(3618,1,'post_content',674,'2508'),(3619,1,'post_content',28,'2508'),(3620,1,'post_content',1125,'2508'),(3621,1,'post_content',1363,'2508'),(3622,1,'post_content',1616,'2508'),(3629,1,'post_content',663,'2507'),(3630,1,'post_content',674,'2507'),(3631,1,'post_content',28,'2507'),(3632,1,'post_content',1125,'2507'),(3633,1,'post_content',1363,'2507'),(3634,1,'post_content',1616,'2507'),(3641,1,'post_content',663,'2506'),(3642,1,'post_content',674,'2506'),(3643,1,'post_content',28,'2506'),(3644,1,'post_content',1125,'2506'),(3645,1,'post_content',1363,'2506'),(3646,1,'post_content',1616,'2506'),(3653,1,'post_content',663,'2505'),(3654,1,'post_content',674,'2505'),(3655,1,'post_content',28,'2505'),(3656,1,'post_content',1125,'2505'),(3657,1,'post_content',1363,'2505'),(3658,1,'post_content',1616,'2505'),(3665,1,'post_content',663,'2504'),(3666,1,'post_content',674,'2504'),(3667,1,'post_content',28,'2504'),(3668,1,'post_content',1125,'2504'),(3669,1,'post_content',1363,'2504'),(3670,1,'post_content',1616,'2504'),(3677,1,'post_content',663,'2503'),(3678,1,'post_content',674,'2503'),(3679,1,'post_content',28,'2503'),(3680,1,'post_content',1125,'2503'),(3681,1,'post_content',1363,'2503'),(3682,1,'post_content',1616,'2503'),(3689,1,'post_content',663,'2502'),(3690,1,'post_content',674,'2502'),(3691,1,'post_content',28,'2502'),(3692,1,'post_content',1125,'2502'),(3693,1,'post_content',1363,'2502'),(3694,1,'post_content',1616,'2502'),(3701,1,'post_content',663,'2501'),(3702,1,'post_content',674,'2501'),(3703,1,'post_content',28,'2501'),(3704,1,'post_content',1125,'2501'),(3705,1,'post_content',1363,'2501'),(3706,1,'post_content',1616,'2501'),(3713,1,'post_content',663,'2500'),(3714,1,'post_content',674,'2500'),(3715,1,'post_content',28,'2500'),(3716,1,'post_content',1125,'2500'),(3717,1,'post_content',1363,'2500'),(3718,1,'post_content',1616,'2500'),(3725,1,'post_content',663,'2499'),(3726,1,'post_content',674,'2499'),(3727,1,'post_content',28,'2499'),(3728,1,'post_content',1125,'2499'),(3729,1,'post_content',1363,'2499'),(3730,1,'post_content',1616,'2499'),(3737,1,'post_content',663,'2498'),(3738,1,'post_content',674,'2498'),(3739,1,'post_content',28,'2498'),(3740,1,'post_content',1125,'2498'),(3741,1,'post_content',1363,'2498'),(3742,1,'post_content',1616,'2498'),(3749,1,'post_content',663,'2497'),(3750,1,'post_content',674,'2497'),(3751,1,'post_content',28,'2497'),(3752,1,'post_content',1125,'2497'),(3753,1,'post_content',1363,'2497'),(3754,1,'post_content',1616,'2497'),(3761,1,'post_content',663,'2496'),(3762,1,'post_content',674,'2496'),(3763,1,'post_content',28,'2496'),(3764,1,'post_content',1125,'2496'),(3765,1,'post_content',1363,'2496'),(3766,1,'post_content',1616,'2496'),(3773,1,'post_content',663,'2495'),(3774,1,'post_content',674,'2495'),(3775,1,'post_content',28,'2495'),(3776,1,'post_content',1125,'2495'),(3777,1,'post_content',1363,'2495'),(3778,1,'post_content',1616,'2495'),(3785,1,'post_content',663,'2493'),(3786,1,'post_content',674,'2493'),(3787,1,'post_content',28,'2493'),(3788,1,'post_content',1125,'2493'),(3789,1,'post_content',1363,'2493'),(3790,1,'post_content',1616,'2493'),(3797,1,'post_content',663,'2492'),(3798,1,'post_content',674,'2492'),(3799,1,'post_content',28,'2492'),(3800,1,'post_content',1122,'2492'),(3801,1,'post_content',1363,'2492'),(3802,1,'post_content',1616,'2492'),(3809,1,'post_content',663,'2491'),(3810,1,'post_content',674,'2491'),(3811,1,'post_content',28,'2491'),(3812,1,'post_content',1122,'2491'),(3813,1,'post_content',1363,'2491'),(3814,1,'post_content',1616,'2491'),(3821,1,'post_content',663,'2490'),(3822,1,'post_content',674,'2490'),(3823,1,'post_content',28,'2490'),(3824,1,'post_content',1122,'2490'),(3825,1,'post_content',1363,'2490'),(3826,1,'post_content',1616,'2490'),(3833,1,'post_content',663,'2489'),(3834,1,'post_content',674,'2489'),(3835,1,'post_content',28,'2489'),(3836,1,'post_content',1294,'2489'),(3837,1,'post_content',1122,'2489'),(3838,1,'post_content',1363,'2489'),(3839,1,'post_content',1616,'2489'),(3846,1,'post_content',663,'2488'),(3847,1,'post_content',674,'2488'),(3848,1,'post_content',28,'2488'),(3849,1,'post_content',1294,'2488'),(3850,1,'post_content',1122,'2488'),(3851,1,'post_content',1363,'2488'),(3852,1,'post_content',1616,'2488'),(3859,1,'post_content',663,'2487'),(3860,1,'post_content',674,'2487'),(3861,1,'post_content',28,'2487'),(3862,1,'post_content',1294,'2487'),(3863,1,'post_content',1122,'2487'),(3864,1,'post_content',1363,'2487'),(3865,1,'post_content',1616,'2487'),(3872,1,'post_content',663,'2486'),(3873,1,'post_content',674,'2486'),(3874,1,'post_content',1294,'2486'),(3875,1,'post_content',1122,'2486'),(3876,1,'post_content',1363,'2486'),(3877,1,'post_content',1616,'2486'),(3878,1,'post_content',28,'2486'),(3885,1,'post_content',663,'2485'),(3886,1,'post_content',674,'2485'),(3887,1,'post_content',1294,'2485'),(3888,1,'post_content',1122,'2485'),(3889,1,'post_content',1363,'2485'),(3890,1,'post_content',1616,'2485'),(3891,1,'post_content',28,'2485'),(3898,1,'post_content',663,'2484'),(3899,1,'post_content',674,'2484'),(3900,1,'post_content',1294,'2484'),(3901,1,'post_content',1122,'2484'),(3902,1,'post_content',1363,'2484'),(3903,1,'post_content',1616,'2484'),(3904,1,'post_content',28,'2484'),(3911,1,'post_content',663,'2483'),(3912,1,'post_content',674,'2483'),(3913,1,'post_content',1294,'2483'),(3914,1,'post_content',1122,'2483'),(3915,1,'post_content',1363,'2483'),(3916,1,'post_content',1616,'2483'),(3917,1,'post_content',28,'2483'),(3924,1,'post_content',663,'2482'),(3925,1,'post_content',674,'2482'),(3926,1,'post_content',1294,'2482'),(3927,1,'post_content',1122,'2482'),(3928,1,'post_content',1363,'2482'),(3929,1,'post_content',1616,'2482'),(3930,1,'post_content',28,'2482'),(3937,1,'post_content',663,'2515'),(3938,1,'post_content',674,'2515'),(3939,1,'post_content',28,'2515'),(3940,1,'post_content',1125,'2515'),(3941,1,'post_content',1363,'2515'),(3942,1,'post_content',1616,'2515'),(3949,1,'post_content',663,'2516'),(3950,1,'post_content',674,'2516'),(3951,1,'post_content',28,'2516'),(3952,1,'post_content',1125,'2516'),(3953,1,'post_content',1363,'2516'),(3954,1,'post_content',1616,'2516'),(3961,1,'post_content',663,'2517'),(3962,1,'post_content',674,'2517'),(3963,1,'post_content',28,'2517'),(3964,1,'post_content',1125,'2517'),(3965,1,'post_content',1363,'2517'),(3966,1,'post_content',1616,'2517'),(3973,1,'post_content',663,'2518'),(3974,1,'post_content',674,'2518'),(3975,1,'post_content',28,'2518'),(3976,1,'post_content',1125,'2518'),(3977,1,'post_content',1363,'2518'),(3978,1,'post_content',1616,'2518'),(4026,1,'post_content',1125,'2562'),(4025,1,'post_content',28,'2562'),(4024,1,'post_content',674,'2562'),(4023,1,'post_content',663,'2562'),(6471,1,'post_content',2566,'1279'),(6470,1,'post_content',2586,'1279'),(4027,1,'post_content',1363,'2562'),(4028,1,'post_content',1616,'2562'),(4037,1,'post_content',663,'2561'),(4038,1,'post_content',674,'2561'),(4039,1,'post_content',28,'2561'),(4040,1,'post_content',1125,'2561'),(4041,1,'post_content',1363,'2561'),(4042,1,'post_content',1616,'2561'),(4051,1,'post_content',663,'2560'),(4052,1,'post_content',674,'2560'),(4053,1,'post_content',28,'2560'),(4054,1,'post_content',1125,'2560'),(4055,1,'post_content',1363,'2560'),(4056,1,'post_content',1616,'2560'),(4065,1,'post_content',663,'2559'),(4066,1,'post_content',674,'2559'),(4067,1,'post_content',28,'2559'),(4068,1,'post_content',1125,'2559'),(4069,1,'post_content',1363,'2559'),(4070,1,'post_content',1616,'2559'),(4079,1,'post_content',663,'2558'),(4080,1,'post_content',674,'2558'),(4081,1,'post_content',28,'2558'),(4082,1,'post_content',1125,'2558'),(4083,1,'post_content',1363,'2558'),(4084,1,'post_content',1616,'2558'),(4093,1,'post_content',663,'2557'),(4094,1,'post_content',674,'2557'),(4095,1,'post_content',28,'2557'),(4096,1,'post_content',1125,'2557'),(4097,1,'post_content',1363,'2557'),(4098,1,'post_content',1616,'2557'),(4107,1,'post_content',663,'2556'),(4108,1,'post_content',674,'2556'),(4109,1,'post_content',28,'2556'),(4110,1,'post_content',1125,'2556'),(4111,1,'post_content',1363,'2556'),(4112,1,'post_content',1616,'2556'),(4121,1,'post_content',663,'2555'),(4122,1,'post_content',674,'2555'),(4123,1,'post_content',28,'2555'),(4124,1,'post_content',1125,'2555'),(4125,1,'post_content',1363,'2555'),(4126,1,'post_content',1616,'2555'),(4135,1,'post_content',663,'2554'),(4136,1,'post_content',674,'2554'),(4137,1,'post_content',28,'2554'),(4138,1,'post_content',1125,'2554'),(4139,1,'post_content',1363,'2554'),(4140,1,'post_content',1616,'2554'),(4149,1,'post_content',663,'2553'),(4150,1,'post_content',674,'2553'),(4151,1,'post_content',28,'2553'),(4152,1,'post_content',1125,'2553'),(4153,1,'post_content',1363,'2553'),(4154,1,'post_content',1616,'2553'),(4163,1,'post_content',663,'2552'),(4164,1,'post_content',674,'2552'),(4165,1,'post_content',28,'2552'),(4166,1,'post_content',1125,'2552'),(4167,1,'post_content',1363,'2552'),(4168,1,'post_content',1616,'2552'),(4177,1,'post_content',663,'2551'),(4178,1,'post_content',674,'2551'),(4179,1,'post_content',28,'2551'),(4180,1,'post_content',1125,'2551'),(4181,1,'post_content',1363,'2551'),(4182,1,'post_content',1616,'2551'),(4191,1,'post_content',663,'2550'),(4192,1,'post_content',674,'2550'),(4193,1,'post_content',28,'2550'),(4194,1,'post_content',1125,'2550'),(4195,1,'post_content',1363,'2550'),(4196,1,'post_content',1616,'2550'),(4205,1,'post_content',663,'2549'),(4206,1,'post_content',674,'2549'),(4207,1,'post_content',28,'2549'),(4208,1,'post_content',1125,'2549'),(4209,1,'post_content',1363,'2549'),(4210,1,'post_content',1616,'2549'),(4219,1,'post_content',663,'2548'),(4220,1,'post_content',674,'2548'),(4221,1,'post_content',28,'2548'),(4222,1,'post_content',1125,'2548'),(4223,1,'post_content',1363,'2548'),(4224,1,'post_content',1616,'2548'),(4233,1,'post_content',663,'2547'),(4234,1,'post_content',674,'2547'),(4235,1,'post_content',28,'2547'),(4236,1,'post_content',1125,'2547'),(4237,1,'post_content',1363,'2547'),(4238,1,'post_content',1616,'2547'),(4247,1,'post_content',663,'2546'),(4248,1,'post_content',674,'2546'),(4249,1,'post_content',28,'2546'),(4250,1,'post_content',1125,'2546'),(4251,1,'post_content',1363,'2546'),(4252,1,'post_content',1616,'2546'),(4261,1,'post_content',663,'2545'),(4262,1,'post_content',674,'2545'),(4263,1,'post_content',28,'2545'),(4264,1,'post_content',1125,'2545'),(4265,1,'post_content',1363,'2545'),(4266,1,'post_content',1616,'2545'),(4275,1,'post_content',663,'2544'),(4276,1,'post_content',674,'2544'),(4277,1,'post_content',28,'2544'),(4278,1,'post_content',1125,'2544'),(4279,1,'post_content',1363,'2544'),(4280,1,'post_content',1616,'2544'),(4289,1,'post_content',663,'2543'),(4290,1,'post_content',674,'2543'),(4291,1,'post_content',28,'2543'),(4292,1,'post_content',1125,'2543'),(4293,1,'post_content',1363,'2543'),(4294,1,'post_content',1616,'2543'),(4303,1,'post_content',663,'2542'),(4304,1,'post_content',674,'2542'),(4305,1,'post_content',28,'2542'),(4306,1,'post_content',1125,'2542'),(4307,1,'post_content',1363,'2542'),(4308,1,'post_content',1616,'2542'),(4317,1,'post_content',663,'2541'),(4318,1,'post_content',674,'2541'),(4319,1,'post_content',28,'2541'),(4320,1,'post_content',1125,'2541'),(4321,1,'post_content',1363,'2541'),(4322,1,'post_content',1616,'2541'),(4331,1,'post_content',663,'2540'),(4332,1,'post_content',674,'2540'),(4333,1,'post_content',28,'2540'),(4334,1,'post_content',1125,'2540'),(4335,1,'post_content',1363,'2540'),(4336,1,'post_content',1616,'2540'),(4345,1,'post_content',663,'2539'),(4346,1,'post_content',674,'2539'),(4347,1,'post_content',28,'2539'),(4348,1,'post_content',1125,'2539'),(4349,1,'post_content',1363,'2539'),(4350,1,'post_content',1616,'2539'),(4359,1,'post_content',663,'2538'),(4360,1,'post_content',674,'2538'),(4361,1,'post_content',28,'2538'),(4362,1,'post_content',1125,'2538'),(4363,1,'post_content',1363,'2538'),(4364,1,'post_content',1616,'2538'),(4373,1,'post_content',663,'2537'),(4374,1,'post_content',674,'2537'),(4375,1,'post_content',28,'2537'),(4376,1,'post_content',1125,'2537'),(4377,1,'post_content',1363,'2537'),(4378,1,'post_content',1616,'2537'),(4387,1,'post_content',663,'2536'),(4388,1,'post_content',674,'2536'),(4389,1,'post_content',28,'2536'),(4390,1,'post_content',1125,'2536'),(4391,1,'post_content',1363,'2536'),(4392,1,'post_content',1616,'2536'),(4401,1,'post_content',663,'2535'),(4402,1,'post_content',674,'2535'),(4403,1,'post_content',28,'2535'),(4404,1,'post_content',1125,'2535'),(4405,1,'post_content',1363,'2535'),(4406,1,'post_content',1616,'2535'),(4415,1,'post_content',663,'2534'),(4416,1,'post_content',674,'2534'),(4417,1,'post_content',28,'2534'),(4418,1,'post_content',1125,'2534'),(4419,1,'post_content',1363,'2534'),(4420,1,'post_content',1616,'2534'),(4429,1,'post_content',663,'2533'),(4430,1,'post_content',674,'2533'),(4431,1,'post_content',28,'2533'),(4432,1,'post_content',1125,'2533'),(4433,1,'post_content',1363,'2533'),(4434,1,'post_content',1616,'2533'),(4443,1,'post_content',663,'2532'),(4444,1,'post_content',674,'2532'),(4445,1,'post_content',28,'2532'),(4446,1,'post_content',1125,'2532'),(4447,1,'post_content',1363,'2532'),(4448,1,'post_content',1616,'2532'),(4457,1,'post_content',663,'2531'),(4458,1,'post_content',674,'2531'),(4459,1,'post_content',28,'2531'),(4460,1,'post_content',1125,'2531'),(4461,1,'post_content',1363,'2531'),(4462,1,'post_content',1616,'2531'),(4471,1,'post_content',663,'2530'),(4472,1,'post_content',674,'2530'),(4473,1,'post_content',28,'2530'),(4474,1,'post_content',1125,'2530'),(4475,1,'post_content',1363,'2530'),(4476,1,'post_content',1616,'2530'),(4485,1,'post_content',663,'2529'),(4486,1,'post_content',674,'2529'),(4487,1,'post_content',28,'2529'),(4488,1,'post_content',1125,'2529'),(4489,1,'post_content',1363,'2529'),(4490,1,'post_content',1616,'2529'),(4499,1,'post_content',663,'2528'),(4500,1,'post_content',674,'2528'),(4501,1,'post_content',28,'2528'),(4502,1,'post_content',1125,'2528'),(4503,1,'post_content',1363,'2528'),(4504,1,'post_content',1616,'2528'),(4513,1,'post_content',663,'2527'),(4514,1,'post_content',674,'2527'),(4515,1,'post_content',28,'2527'),(4516,1,'post_content',1125,'2527'),(4517,1,'post_content',1363,'2527'),(4518,1,'post_content',1616,'2527'),(4527,1,'post_content',663,'2525'),(4528,1,'post_content',674,'2525'),(4529,1,'post_content',28,'2525'),(4530,1,'post_content',1125,'2525'),(4531,1,'post_content',1363,'2525'),(4532,1,'post_content',1616,'2525'),(4541,1,'post_content',663,'2524'),(4542,1,'post_content',674,'2524'),(4543,1,'post_content',28,'2524'),(4544,1,'post_content',1125,'2524'),(4545,1,'post_content',1363,'2524'),(4546,1,'post_content',1616,'2524'),(4555,1,'post_content',663,'2523'),(4556,1,'post_content',674,'2523'),(4557,1,'post_content',28,'2523'),(4558,1,'post_content',1125,'2523'),(4559,1,'post_content',1363,'2523'),(4560,1,'post_content',1616,'2523'),(4569,1,'post_content',663,'2522'),(4570,1,'post_content',674,'2522'),(4571,1,'post_content',28,'2522'),(4572,1,'post_content',1125,'2522'),(4573,1,'post_content',1363,'2522'),(4574,1,'post_content',1616,'2522'),(4583,1,'post_content',663,'2521'),(4584,1,'post_content',674,'2521'),(4585,1,'post_content',28,'2521'),(4586,1,'post_content',1125,'2521'),(4587,1,'post_content',1363,'2521'),(4588,1,'post_content',1616,'2521'),(4597,1,'post_content',663,'2520'),(4598,1,'post_content',674,'2520'),(4599,1,'post_content',28,'2520'),(4600,1,'post_content',1125,'2520'),(4601,1,'post_content',1363,'2520'),(4602,1,'post_content',1616,'2520'),(4603,1,'post_content',663,'2563'),(4604,1,'post_content',674,'2563'),(4605,1,'post_content',28,'2563'),(4606,1,'post_content',1125,'2563'),(4607,1,'post_content',1363,'2563'),(4608,1,'post_content',1616,'2563'),(4617,1,'post_content',663,'2564'),(4618,1,'post_content',674,'2564'),(4619,1,'post_content',28,'2564'),(4620,1,'post_content',1125,'2564'),(4621,1,'post_content',1363,'2564'),(4622,1,'post_content',1616,'2564'),(4631,1,'post_content',663,'2565'),(4632,1,'post_content',674,'2565'),(4633,1,'post_content',28,'2565'),(4634,1,'post_content',1125,'2565'),(4635,1,'post_content',1363,'2565'),(4636,1,'post_content',1616,'2565'),(4645,1,'post_content',663,'2567'),(4646,1,'post_content',674,'2567'),(4647,1,'post_content',28,'2567'),(4648,1,'post_content',1125,'2567'),(4649,1,'post_content',1363,'2567'),(4650,1,'post_content',1616,'2567'),(4659,1,'post_content',663,'2568'),(4660,1,'post_content',674,'2568'),(4661,1,'post_content',28,'2568'),(4662,1,'post_content',1125,'2568'),(4663,1,'post_content',1363,'2568'),(4664,1,'post_content',1616,'2568'),(4673,1,'post_content',663,'2569'),(4674,1,'post_content',674,'2569'),(4675,1,'post_content',2566,'2569'),(4676,1,'post_content',1125,'2569'),(4677,1,'post_content',1363,'2569'),(4678,1,'post_content',1616,'2569'),(4679,1,'post_content',28,'2569'),(4688,1,'post_content',663,'2570'),(4689,1,'post_content',674,'2570'),(4690,1,'post_content',2566,'2570'),(4691,1,'post_content',1125,'2570'),(4692,1,'post_content',1363,'2570'),(4693,1,'post_content',1616,'2570'),(4694,1,'post_content',28,'2570'),(4703,1,'post_content',663,'2571'),(4704,1,'post_content',674,'2571'),(4705,1,'post_content',2566,'2571'),(4706,1,'post_content',1125,'2571'),(4707,1,'post_content',1363,'2571'),(4708,1,'post_content',1616,'2571'),(4709,1,'post_content',28,'2571'),(4718,1,'post_content',663,'2572'),(4719,1,'post_content',674,'2572'),(4720,1,'post_content',2566,'2572'),(4721,1,'post_content',1125,'2572'),(4722,1,'post_content',1363,'2572'),(4723,1,'post_content',1616,'2572'),(4724,1,'post_content',28,'2572'),(4733,1,'post_content',663,'2574'),(4734,1,'post_content',674,'2574'),(4735,1,'post_content',2566,'2574'),(4736,1,'post_content',1125,'2574'),(4737,1,'post_content',1363,'2574'),(4738,1,'post_content',1616,'2574'),(4739,1,'post_content',28,'2574'),(4748,1,'post_content',663,'2575'),(4749,1,'post_content',674,'2575'),(4750,1,'post_content',2566,'2575'),(4751,1,'post_content',1125,'2575'),(4752,1,'post_content',1363,'2575'),(4753,1,'post_content',1616,'2575'),(4754,1,'post_content',28,'2575'),(4763,1,'post_content',663,'2576'),(4764,1,'post_content',674,'2576'),(4765,1,'post_content',2566,'2576'),(4766,1,'post_content',1125,'2576'),(4767,1,'post_content',1363,'2576'),(4768,1,'post_content',1616,'2576'),(4769,1,'post_content',2573,'2576'),(4770,1,'post_content',28,'2576'),(6469,1,'post_content',2590,'1279'),(4788,1,'post_content',663,'2589'),(4789,1,'post_content',2586,'2589'),(4790,1,'post_content',2566,'2589'),(4791,1,'post_content',1125,'2589'),(4792,1,'post_content',1363,'2589'),(4793,1,'post_content',1616,'2589'),(4794,1,'post_content',2573,'2589'),(4795,1,'post_content',2577,'2589'),(4796,1,'post_content',2582,'2589'),(4806,1,'post_content',663,'2588'),(4807,1,'post_content',674,'2588'),(4808,1,'post_content',2566,'2588'),(4809,1,'post_content',1125,'2588'),(4810,1,'post_content',1363,'2588'),(4811,1,'post_content',1616,'2588'),(4812,1,'post_content',2573,'2588'),(4813,1,'post_content',2577,'2588'),(4814,1,'post_content',2582,'2588'),(4824,1,'post_content',663,'2587'),(4825,1,'post_content',674,'2587'),(4826,1,'post_content',2566,'2587'),(4827,1,'post_content',1125,'2587'),(4828,1,'post_content',1363,'2587'),(4829,1,'post_content',1616,'2587'),(4830,1,'post_content',2573,'2587'),(4831,1,'post_content',2577,'2587'),(4832,1,'post_content',2582,'2587'),(4842,1,'post_content',663,'2585'),(4843,1,'post_content',674,'2585'),(4844,1,'post_content',2566,'2585'),(4845,1,'post_content',1125,'2585'),(4846,1,'post_content',1363,'2585'),(4847,1,'post_content',1616,'2585'),(4848,1,'post_content',2573,'2585'),(4849,1,'post_content',2577,'2585'),(4850,1,'post_content',2582,'2585'),(4860,1,'post_content',663,'2584'),(4861,1,'post_content',674,'2584'),(4862,1,'post_content',2566,'2584'),(4863,1,'post_content',1125,'2584'),(4864,1,'post_content',1363,'2584'),(4865,1,'post_content',1616,'2584'),(4866,1,'post_content',2573,'2584'),(4867,1,'post_content',2577,'2584'),(4868,1,'post_content',28,'2584'),(4878,1,'post_content',663,'2583'),(4879,1,'post_content',674,'2583'),(4880,1,'post_content',2566,'2583'),(4881,1,'post_content',1125,'2583'),(4882,1,'post_content',1363,'2583'),(4883,1,'post_content',1616,'2583'),(4884,1,'post_content',2573,'2583'),(4885,1,'post_content',2577,'2583'),(4886,1,'post_content',28,'2583'),(4896,1,'post_content',663,'2581'),(4897,1,'post_content',674,'2581'),(4898,1,'post_content',2566,'2581'),(4899,1,'post_content',1125,'2581'),(4900,1,'post_content',1363,'2581'),(4901,1,'post_content',1616,'2581'),(4902,1,'post_content',2573,'2581'),(4903,1,'post_content',2577,'2581'),(4904,1,'post_content',28,'2581'),(4914,1,'post_content',663,'2580'),(4915,1,'post_content',674,'2580'),(4916,1,'post_content',2566,'2580'),(4917,1,'post_content',1125,'2580'),(4918,1,'post_content',1363,'2580'),(4919,1,'post_content',1616,'2580'),(4920,1,'post_content',2573,'2580'),(4921,1,'post_content',28,'2580'),(4931,1,'post_content',663,'2579'),(4932,1,'post_content',674,'2579'),(4933,1,'post_content',2566,'2579'),(4934,1,'post_content',1125,'2579'),(4935,1,'post_content',1363,'2579'),(4936,1,'post_content',1616,'2579'),(4937,1,'post_content',2573,'2579'),(4938,1,'post_content',28,'2579'),(5481,1,'post_content',1397,'2635'),(6373,1,'post_content',1896,'2608'),(6372,1,'post_content',1639,'2608'),(6371,1,'post_content',1550,'2608'),(6370,1,'post_content',1522,'2608'),(6369,1,'post_content',1530,'2608'),(6368,1,'post_content',1516,'2608'),(6367,1,'post_content',1509,'2608'),(6366,1,'post_content',1451,'2608'),(6365,1,'post_content',1547,'2608'),(6364,1,'post_content',1684,'2608'),(6363,1,'post_content',1410,'2608'),(6362,1,'post_content',1687,'2608'),(6361,1,'post_content',1590,'2608'),(6360,1,'post_content',1680,'2608'),(6359,1,'post_content',1559,'2608'),(6358,1,'post_content',1654,'2608'),(6357,1,'post_content',1407,'2608'),(6356,1,'post_content',1404,'2608'),(6355,1,'post_content',1400,'2608'),(6354,1,'post_content',1657,'2608'),(6353,1,'post_content',1512,'2608'),(6352,1,'post_content',1397,'2608'),(4962,1,'post_content',21,'2613'),(4963,1,'post_content',1397,'2613'),(4964,1,'post_content',1512,'2613'),(4965,1,'post_content',1657,'2613'),(4966,1,'post_content',1400,'2613'),(4967,1,'post_content',1404,'2613'),(4968,1,'post_content',1407,'2613'),(4969,1,'post_content',1654,'2613'),(4970,1,'post_content',1559,'2613'),(4971,1,'post_content',1680,'2613'),(4972,1,'post_content',1590,'2613'),(4973,1,'post_content',1687,'2613'),(4974,1,'post_content',1410,'2613'),(4975,1,'post_content',1684,'2613'),(4976,1,'post_content',1547,'2613'),(4977,1,'post_content',1451,'2613'),(4978,1,'post_content',1509,'2613'),(4979,1,'post_content',1516,'2613'),(4980,1,'post_content',1530,'2613'),(4981,1,'post_content',1522,'2613'),(4982,1,'post_content',1550,'2613'),(4983,1,'post_content',1639,'2613'),(4984,1,'post_content',1896,'2613'),(5008,1,'post_content',21,'2612'),(5009,1,'post_content',1397,'2612'),(5010,1,'post_content',1512,'2612'),(5011,1,'post_content',1657,'2612'),(5012,1,'post_content',1400,'2612'),(5013,1,'post_content',1404,'2612'),(5014,1,'post_content',1407,'2612'),(5015,1,'post_content',1654,'2612'),(5016,1,'post_content',1559,'2612'),(5017,1,'post_content',1680,'2612'),(5018,1,'post_content',1590,'2612'),(5019,1,'post_content',1687,'2612'),(5020,1,'post_content',1410,'2612'),(5021,1,'post_content',1684,'2612'),(5022,1,'post_content',1547,'2612'),(5023,1,'post_content',1451,'2612'),(5024,1,'post_content',1509,'2612'),(5025,1,'post_content',1516,'2612'),(5026,1,'post_content',1530,'2612'),(5027,1,'post_content',1522,'2612'),(5028,1,'post_content',1550,'2612'),(5029,1,'post_content',1639,'2612'),(5030,1,'post_content',1896,'2612'),(5054,1,'post_content',21,'2611'),(5055,1,'post_content',1397,'2611'),(5056,1,'post_content',1512,'2611'),(5057,1,'post_content',1657,'2611'),(5058,1,'post_content',1400,'2611'),(5059,1,'post_content',1404,'2611'),(5060,1,'post_content',1407,'2611'),(5061,1,'post_content',1654,'2611'),(5062,1,'post_content',1559,'2611'),(5063,1,'post_content',1680,'2611'),(5064,1,'post_content',1590,'2611'),(5065,1,'post_content',1687,'2611'),(5066,1,'post_content',1410,'2611'),(5067,1,'post_content',1684,'2611'),(5068,1,'post_content',1547,'2611'),(5069,1,'post_content',1451,'2611'),(5070,1,'post_content',1509,'2611'),(5071,1,'post_content',1516,'2611'),(5072,1,'post_content',1530,'2611'),(5073,1,'post_content',1522,'2611'),(5074,1,'post_content',1550,'2611'),(5075,1,'post_content',1639,'2611'),(5076,1,'post_content',1896,'2611'),(5123,1,'post_content',21,'2609'),(5124,1,'post_content',1397,'2609'),(5125,1,'post_content',1512,'2609'),(5126,1,'post_content',1657,'2609'),(5127,1,'post_content',1400,'2609'),(5128,1,'post_content',1404,'2609'),(5129,1,'post_content',1407,'2609'),(5130,1,'post_content',1654,'2609'),(5131,1,'post_content',1559,'2609'),(5132,1,'post_content',1680,'2609'),(5133,1,'post_content',1590,'2609'),(5134,1,'post_content',1687,'2609'),(5135,1,'post_content',1410,'2609'),(5136,1,'post_content',1684,'2609'),(5137,1,'post_content',1547,'2609'),(5138,1,'post_content',1451,'2609'),(5139,1,'post_content',1509,'2609'),(5140,1,'post_content',1516,'2609'),(5141,1,'post_content',1530,'2609'),(5142,1,'post_content',1522,'2609'),(5143,1,'post_content',1550,'2609'),(5144,1,'post_content',1639,'2609'),(5145,1,'post_content',1896,'2609'),(5182,1,'post_content',2590,'2606'),(5183,1,'post_content',2586,'2606'),(5184,1,'post_content',2566,'2606'),(5185,1,'post_content',2594,'2606'),(5186,1,'post_content',1363,'2606'),(5187,1,'post_content',1616,'2606'),(5188,1,'post_content',2573,'2606'),(5189,1,'post_content',2577,'2606'),(5190,1,'post_content',2582,'2606'),(5200,1,'post_content',2590,'2605'),(5201,1,'post_content',2586,'2605'),(5202,1,'post_content',2566,'2605'),(5203,1,'post_content',2594,'2605'),(5204,1,'post_content',1363,'2605'),(5205,1,'post_content',1616,'2605'),(5206,1,'post_content',2573,'2605'),(5207,1,'post_content',2577,'2605'),(5208,1,'post_content',2582,'2605'),(5218,1,'post_content',2590,'2604'),(5219,1,'post_content',2586,'2604'),(5220,1,'post_content',2566,'2604'),(5221,1,'post_content',2594,'2604'),(5222,1,'post_content',1363,'2604'),(5223,1,'post_content',1616,'2604'),(5224,1,'post_content',2573,'2604'),(5225,1,'post_content',2577,'2604'),(5226,1,'post_content',2582,'2604'),(5236,1,'post_content',2590,'2603'),(5237,1,'post_content',2586,'2603'),(5238,1,'post_content',2566,'2603'),(5239,1,'post_content',2594,'2603'),(5240,1,'post_content',1363,'2603'),(5241,1,'post_content',1616,'2603'),(5242,1,'post_content',2573,'2603'),(5243,1,'post_content',2577,'2603'),(5244,1,'post_content',2582,'2603'),(5254,1,'post_content',2590,'2602'),(5255,1,'post_content',2586,'2602'),(5256,1,'post_content',2566,'2602'),(5257,1,'post_content',2594,'2602'),(5258,1,'post_content',1363,'2602'),(5259,1,'post_content',1616,'2602'),(5260,1,'post_content',2573,'2602'),(5261,1,'post_content',2577,'2602'),(5262,1,'post_content',2582,'2602'),(5272,1,'post_content',2590,'2601'),(5273,1,'post_content',2586,'2601'),(5274,1,'post_content',2566,'2601'),(5275,1,'post_content',2594,'2601'),(5276,1,'post_content',1363,'2601'),(5277,1,'post_content',1616,'2601'),(5278,1,'post_content',2573,'2601'),(5279,1,'post_content',2577,'2601'),(5280,1,'post_content',2582,'2601'),(5284,1,'post_content',2590,'2598'),(5282,1,'post_content',2590,'2600'),(5294,1,'post_content',2590,'2597'),(5295,1,'post_content',2586,'2597'),(5296,1,'post_content',2566,'2597'),(5297,1,'post_content',2594,'2597'),(5298,1,'post_content',1363,'2597'),(5299,1,'post_content',1616,'2597'),(5300,1,'post_content',2573,'2597'),(5301,1,'post_content',2577,'2597'),(5302,1,'post_content',2582,'2597'),(5312,1,'post_content',2590,'2596'),(5313,1,'post_content',2586,'2596'),(5314,1,'post_content',2566,'2596'),(5315,1,'post_content',1125,'2596'),(5316,1,'post_content',1363,'2596'),(5317,1,'post_content',1616,'2596'),(5318,1,'post_content',2573,'2596'),(5319,1,'post_content',2577,'2596'),(5320,1,'post_content',2582,'2596'),(5330,1,'post_content',2590,'2595'),(5331,1,'post_content',2586,'2595'),(5332,1,'post_content',2566,'2595'),(5333,1,'post_content',1125,'2595'),(5334,1,'post_content',1363,'2595'),(5335,1,'post_content',1616,'2595'),(5336,1,'post_content',2573,'2595'),(5337,1,'post_content',2577,'2595'),(5338,1,'post_content',2582,'2595'),(5348,1,'post_content',2590,'2593'),(5349,1,'post_content',2586,'2593'),(5350,1,'post_content',2566,'2593'),(5351,1,'post_content',1125,'2593'),(5352,1,'post_content',1363,'2593'),(5353,1,'post_content',1616,'2593'),(5354,1,'post_content',2573,'2593'),(5355,1,'post_content',2577,'2593'),(5356,1,'post_content',2582,'2593'),(5366,1,'post_content',663,'2592'),(5367,1,'post_content',2586,'2592'),(5368,1,'post_content',2566,'2592'),(5369,1,'post_content',1125,'2592'),(5370,1,'post_content',1363,'2592'),(5371,1,'post_content',1616,'2592'),(5372,1,'post_content',2573,'2592'),(5373,1,'post_content',2577,'2592'),(5374,1,'post_content',2582,'2592'),(5384,1,'post_content',663,'2591'),(5385,1,'post_content',2586,'2591'),(5386,1,'post_content',2566,'2591'),(5387,1,'post_content',1125,'2591'),(5388,1,'post_content',1363,'2591'),(5389,1,'post_content',1616,'2591'),(5390,1,'post_content',2573,'2591'),(5391,1,'post_content',2577,'2591'),(5392,1,'post_content',2582,'2591'),(5458,1,'post_content',1896,'2636'),(5457,1,'post_content',1639,'2636'),(5456,1,'post_content',1550,'2636'),(5455,1,'post_content',1522,'2636'),(5454,1,'post_content',1530,'2636'),(5453,1,'post_content',1516,'2636'),(5452,1,'post_content',1509,'2636'),(5451,1,'post_content',1451,'2636'),(5450,1,'post_content',1547,'2636'),(5449,1,'post_content',1684,'2636'),(5448,1,'post_content',1410,'2636'),(5447,1,'post_content',1687,'2636'),(5446,1,'post_content',1590,'2636'),(5445,1,'post_content',1680,'2636'),(5444,1,'post_content',1559,'2636'),(5443,1,'post_content',1654,'2636'),(5442,1,'post_content',1407,'2636'),(5441,1,'post_content',1404,'2636'),(5440,1,'post_content',1400,'2636'),(5439,1,'post_content',1657,'2636'),(5438,1,'post_content',1512,'2636'),(5437,1,'post_content',1397,'2636'),(5482,1,'post_content',1512,'2635'),(5483,1,'post_content',1657,'2635'),(5484,1,'post_content',1400,'2635'),(5485,1,'post_content',1404,'2635'),(5486,1,'post_content',1407,'2635'),(5487,1,'post_content',1654,'2635'),(5488,1,'post_content',1559,'2635'),(5489,1,'post_content',1680,'2635'),(5490,1,'post_content',1590,'2635'),(5491,1,'post_content',1687,'2635'),(5492,1,'post_content',1410,'2635'),(5493,1,'post_content',1684,'2635'),(5494,1,'post_content',1547,'2635'),(5495,1,'post_content',1451,'2635'),(5496,1,'post_content',1509,'2635'),(5497,1,'post_content',1516,'2635'),(5498,1,'post_content',1530,'2635'),(5499,1,'post_content',1522,'2635'),(5500,1,'post_content',1550,'2635'),(5501,1,'post_content',1639,'2635'),(5502,1,'post_content',1896,'2635'),(5525,1,'post_content',1397,'2634'),(5526,1,'post_content',1512,'2634'),(5527,1,'post_content',1657,'2634'),(5528,1,'post_content',1400,'2634'),(5529,1,'post_content',1404,'2634'),(5530,1,'post_content',1407,'2634'),(5531,1,'post_content',1654,'2634'),(5532,1,'post_content',1559,'2634'),(5533,1,'post_content',1680,'2634'),(5534,1,'post_content',1590,'2634'),(5535,1,'post_content',1687,'2634'),(5536,1,'post_content',1410,'2634'),(5537,1,'post_content',1684,'2634'),(5538,1,'post_content',1547,'2634'),(5539,1,'post_content',1451,'2634'),(5540,1,'post_content',1509,'2634'),(5541,1,'post_content',1516,'2634'),(5542,1,'post_content',1530,'2634'),(5543,1,'post_content',1522,'2634'),(5544,1,'post_content',1550,'2634'),(5545,1,'post_content',1639,'2634'),(5546,1,'post_content',1896,'2634'),(5569,1,'post_content',1397,'2633'),(5570,1,'post_content',1512,'2633'),(5571,1,'post_content',1657,'2633'),(5572,1,'post_content',1400,'2633'),(5573,1,'post_content',1404,'2633'),(5574,1,'post_content',1407,'2633'),(5575,1,'post_content',1654,'2633'),(5576,1,'post_content',1559,'2633'),(5577,1,'post_content',1680,'2633'),(5578,1,'post_content',1590,'2633'),(5579,1,'post_content',1687,'2633'),(5580,1,'post_content',1410,'2633'),(5581,1,'post_content',1684,'2633'),(5582,1,'post_content',1547,'2633'),(5583,1,'post_content',1451,'2633'),(5584,1,'post_content',1509,'2633'),(5585,1,'post_content',1516,'2633'),(5586,1,'post_content',1530,'2633'),(5587,1,'post_content',1522,'2633'),(5588,1,'post_content',1550,'2633'),(5589,1,'post_content',1639,'2633'),(5590,1,'post_content',1896,'2633'),(5613,1,'post_content',1397,'2632'),(5614,1,'post_content',1512,'2632'),(5615,1,'post_content',1657,'2632'),(5616,1,'post_content',1400,'2632'),(5617,1,'post_content',1404,'2632'),(5618,1,'post_content',1407,'2632'),(5619,1,'post_content',1654,'2632'),(5620,1,'post_content',1559,'2632'),(5621,1,'post_content',1680,'2632'),(5622,1,'post_content',1590,'2632'),(5623,1,'post_content',1687,'2632'),(5624,1,'post_content',1410,'2632'),(5625,1,'post_content',1684,'2632'),(5626,1,'post_content',1547,'2632'),(5627,1,'post_content',1451,'2632'),(5628,1,'post_content',1509,'2632'),(5629,1,'post_content',1516,'2632'),(5630,1,'post_content',1530,'2632'),(5631,1,'post_content',1522,'2632'),(5632,1,'post_content',1550,'2632'),(5633,1,'post_content',1639,'2632'),(5634,1,'post_content',1896,'2632'),(5657,1,'post_content',1397,'2631'),(5658,1,'post_content',1512,'2631'),(5659,1,'post_content',1657,'2631'),(5660,1,'post_content',1400,'2631'),(5661,1,'post_content',1404,'2631'),(5662,1,'post_content',1407,'2631'),(5663,1,'post_content',1654,'2631'),(5664,1,'post_content',1559,'2631'),(5665,1,'post_content',1680,'2631'),(5666,1,'post_content',1590,'2631'),(5667,1,'post_content',1687,'2631'),(5668,1,'post_content',1410,'2631'),(5669,1,'post_content',1684,'2631'),(5670,1,'post_content',1547,'2631'),(5671,1,'post_content',1451,'2631'),(5672,1,'post_content',1509,'2631'),(5673,1,'post_content',1516,'2631'),(5674,1,'post_content',1530,'2631'),(5675,1,'post_content',1522,'2631'),(5676,1,'post_content',1550,'2631'),(5677,1,'post_content',1639,'2631'),(5678,1,'post_content',1896,'2631'),(5701,1,'post_content',1397,'2630'),(5702,1,'post_content',1512,'2630'),(5703,1,'post_content',1657,'2630'),(5704,1,'post_content',1400,'2630'),(5705,1,'post_content',1404,'2630'),(5706,1,'post_content',1407,'2630'),(5707,1,'post_content',1654,'2630'),(5708,1,'post_content',1559,'2630'),(5709,1,'post_content',1680,'2630'),(5710,1,'post_content',1590,'2630'),(5711,1,'post_content',1687,'2630'),(5712,1,'post_content',1410,'2630'),(5713,1,'post_content',1684,'2630'),(5714,1,'post_content',1547,'2630'),(5715,1,'post_content',1451,'2630'),(5716,1,'post_content',1509,'2630'),(5717,1,'post_content',1516,'2630'),(5718,1,'post_content',1530,'2630'),(5719,1,'post_content',1522,'2630'),(5720,1,'post_content',1550,'2630'),(5721,1,'post_content',1639,'2630'),(5722,1,'post_content',1896,'2630'),(5745,1,'post_content',1397,'2629'),(5746,1,'post_content',1512,'2629'),(5747,1,'post_content',1657,'2629'),(5748,1,'post_content',1400,'2629'),(5749,1,'post_content',1404,'2629'),(5750,1,'post_content',1407,'2629'),(5751,1,'post_content',1654,'2629'),(5752,1,'post_content',1559,'2629'),(5753,1,'post_content',1680,'2629'),(5754,1,'post_content',1590,'2629'),(5755,1,'post_content',1687,'2629'),(5756,1,'post_content',1410,'2629'),(5757,1,'post_content',1684,'2629'),(5758,1,'post_content',1547,'2629'),(5759,1,'post_content',1451,'2629'),(5760,1,'post_content',1509,'2629'),(5761,1,'post_content',1516,'2629'),(5762,1,'post_content',1530,'2629'),(5763,1,'post_content',1522,'2629'),(5764,1,'post_content',1550,'2629'),(5765,1,'post_content',1639,'2629'),(5766,1,'post_content',1896,'2629'),(5789,1,'post_content',21,'2628'),(5790,1,'post_content',1397,'2628'),(5791,1,'post_content',1512,'2628'),(5792,1,'post_content',1657,'2628'),(5793,1,'post_content',1400,'2628'),(5794,1,'post_content',1404,'2628'),(5795,1,'post_content',1407,'2628'),(5796,1,'post_content',1654,'2628'),(5797,1,'post_content',1559,'2628'),(5798,1,'post_content',1680,'2628'),(5799,1,'post_content',1590,'2628'),(5800,1,'post_content',1687,'2628'),(5801,1,'post_content',1410,'2628'),(5802,1,'post_content',1684,'2628'),(5803,1,'post_content',1547,'2628'),(5804,1,'post_content',1451,'2628'),(5805,1,'post_content',1509,'2628'),(5806,1,'post_content',1516,'2628'),(5807,1,'post_content',1530,'2628'),(5808,1,'post_content',1522,'2628'),(5809,1,'post_content',1550,'2628'),(5810,1,'post_content',1639,'2628'),(5811,1,'post_content',1896,'2628'),(5834,1,'post_content',21,'2627'),(5835,1,'post_content',1397,'2627'),(5836,1,'post_content',1512,'2627'),(5837,1,'post_content',1657,'2627'),(5838,1,'post_content',1400,'2627'),(5839,1,'post_content',1404,'2627'),(5840,1,'post_content',1407,'2627'),(5841,1,'post_content',1654,'2627'),(5842,1,'post_content',1559,'2627'),(5843,1,'post_content',1680,'2627'),(5844,1,'post_content',1590,'2627'),(5845,1,'post_content',1687,'2627'),(5846,1,'post_content',1410,'2627'),(5847,1,'post_content',1684,'2627'),(5848,1,'post_content',1547,'2627'),(5849,1,'post_content',1451,'2627'),(5850,1,'post_content',1509,'2627'),(5851,1,'post_content',1516,'2627'),(5852,1,'post_content',1530,'2627'),(5853,1,'post_content',1522,'2627'),(5854,1,'post_content',1550,'2627'),(5855,1,'post_content',1639,'2627'),(5856,1,'post_content',1896,'2627'),(5879,1,'post_content',21,'2626'),(5880,1,'post_content',1397,'2626'),(5881,1,'post_content',1512,'2626'),(5882,1,'post_content',1657,'2626'),(5883,1,'post_content',1400,'2626'),(5884,1,'post_content',1404,'2626'),(5885,1,'post_content',1407,'2626'),(5886,1,'post_content',1654,'2626'),(5887,1,'post_content',1559,'2626'),(5888,1,'post_content',1680,'2626'),(5889,1,'post_content',1590,'2626'),(5890,1,'post_content',1687,'2626'),(5891,1,'post_content',1410,'2626'),(5892,1,'post_content',1684,'2626'),(5893,1,'post_content',1547,'2626'),(5894,1,'post_content',1451,'2626'),(5895,1,'post_content',1509,'2626'),(5896,1,'post_content',1516,'2626'),(5897,1,'post_content',1530,'2626'),(5898,1,'post_content',1522,'2626'),(5899,1,'post_content',1550,'2626'),(5900,1,'post_content',1639,'2626'),(5901,1,'post_content',1896,'2626'),(5924,1,'post_content',21,'2625'),(5925,1,'post_content',1397,'2625'),(5926,1,'post_content',1512,'2625'),(5927,1,'post_content',1657,'2625'),(5928,1,'post_content',1400,'2625'),(5929,1,'post_content',1404,'2625'),(5930,1,'post_content',1407,'2625'),(5931,1,'post_content',1654,'2625'),(5932,1,'post_content',1559,'2625'),(5933,1,'post_content',1680,'2625'),(5934,1,'post_content',1590,'2625'),(5935,1,'post_content',1687,'2625'),(5936,1,'post_content',1410,'2625'),(5937,1,'post_content',1684,'2625'),(5938,1,'post_content',1547,'2625'),(5939,1,'post_content',1451,'2625'),(5940,1,'post_content',1509,'2625'),(5941,1,'post_content',1516,'2625'),(5942,1,'post_content',1530,'2625'),(5943,1,'post_content',1522,'2625'),(5944,1,'post_content',1550,'2625'),(5945,1,'post_content',1639,'2625'),(5946,1,'post_content',1896,'2625'),(5969,1,'post_content',21,'2624'),(5970,1,'post_content',1397,'2624'),(5971,1,'post_content',1512,'2624'),(5972,1,'post_content',1657,'2624'),(5973,1,'post_content',1400,'2624'),(5974,1,'post_content',1404,'2624'),(5975,1,'post_content',1407,'2624'),(5976,1,'post_content',1654,'2624'),(5977,1,'post_content',1559,'2624'),(5978,1,'post_content',1680,'2624'),(5979,1,'post_content',1590,'2624'),(5980,1,'post_content',1687,'2624'),(5981,1,'post_content',1410,'2624'),(5982,1,'post_content',1684,'2624'),(5983,1,'post_content',1547,'2624'),(5984,1,'post_content',1451,'2624'),(5985,1,'post_content',1509,'2624'),(5986,1,'post_content',1516,'2624'),(5987,1,'post_content',1530,'2624'),(5988,1,'post_content',1522,'2624'),(5989,1,'post_content',1550,'2624'),(5990,1,'post_content',1639,'2624'),(5991,1,'post_content',1896,'2624'),(6014,1,'post_content',21,'2623'),(6015,1,'post_content',1397,'2623'),(6016,1,'post_content',1512,'2623'),(6017,1,'post_content',1657,'2623'),(6018,1,'post_content',1400,'2623'),(6019,1,'post_content',1404,'2623'),(6020,1,'post_content',1407,'2623'),(6021,1,'post_content',1654,'2623'),(6022,1,'post_content',1559,'2623'),(6023,1,'post_content',1680,'2623'),(6024,1,'post_content',1590,'2623'),(6025,1,'post_content',1687,'2623'),(6026,1,'post_content',1410,'2623'),(6027,1,'post_content',1684,'2623'),(6028,1,'post_content',1547,'2623'),(6029,1,'post_content',1451,'2623'),(6030,1,'post_content',1509,'2623'),(6031,1,'post_content',1516,'2623'),(6032,1,'post_content',1530,'2623'),(6033,1,'post_content',1522,'2623'),(6034,1,'post_content',1550,'2623'),(6035,1,'post_content',1639,'2623'),(6036,1,'post_content',1896,'2623'),(6059,1,'post_content',21,'2622'),(6060,1,'post_content',1397,'2622'),(6061,1,'post_content',1512,'2622'),(6062,1,'post_content',1657,'2622'),(6063,1,'post_content',1400,'2622'),(6064,1,'post_content',1404,'2622'),(6065,1,'post_content',1407,'2622'),(6066,1,'post_content',1654,'2622'),(6067,1,'post_content',1559,'2622'),(6068,1,'post_content',1680,'2622'),(6069,1,'post_content',1590,'2622'),(6070,1,'post_content',1687,'2622'),(6071,1,'post_content',1410,'2622'),(6072,1,'post_content',1684,'2622'),(6073,1,'post_content',1547,'2622'),(6074,1,'post_content',1451,'2622'),(6075,1,'post_content',1509,'2622'),(6076,1,'post_content',1516,'2622'),(6077,1,'post_content',1530,'2622'),(6078,1,'post_content',1522,'2622'),(6079,1,'post_content',1550,'2622'),(6080,1,'post_content',1639,'2622'),(6081,1,'post_content',1896,'2622'),(6104,1,'post_content',21,'2621'),(6105,1,'post_content',1397,'2621'),(6106,1,'post_content',1512,'2621'),(6107,1,'post_content',1657,'2621'),(6108,1,'post_content',1400,'2621'),(6109,1,'post_content',1404,'2621'),(6110,1,'post_content',1407,'2621'),(6111,1,'post_content',1654,'2621'),(6112,1,'post_content',1559,'2621'),(6113,1,'post_content',1680,'2621'),(6114,1,'post_content',1590,'2621'),(6115,1,'post_content',1687,'2621'),(6116,1,'post_content',1410,'2621'),(6117,1,'post_content',1684,'2621'),(6118,1,'post_content',1547,'2621'),(6119,1,'post_content',1451,'2621'),(6120,1,'post_content',1509,'2621'),(6121,1,'post_content',1516,'2621'),(6122,1,'post_content',1530,'2621'),(6123,1,'post_content',1522,'2621'),(6124,1,'post_content',1550,'2621'),(6125,1,'post_content',1639,'2621'),(6126,1,'post_content',1896,'2621'),(6149,1,'post_content',21,'2620'),(6150,1,'post_content',1397,'2620'),(6151,1,'post_content',1512,'2620'),(6152,1,'post_content',1657,'2620'),(6153,1,'post_content',1400,'2620'),(6154,1,'post_content',1404,'2620'),(6155,1,'post_content',1407,'2620'),(6156,1,'post_content',1654,'2620'),(6157,1,'post_content',1559,'2620'),(6158,1,'post_content',1680,'2620'),(6159,1,'post_content',1590,'2620'),(6160,1,'post_content',1687,'2620'),(6161,1,'post_content',1410,'2620'),(6162,1,'post_content',1684,'2620'),(6163,1,'post_content',1547,'2620'),(6164,1,'post_content',1451,'2620'),(6165,1,'post_content',1509,'2620'),(6166,1,'post_content',1516,'2620'),(6167,1,'post_content',1530,'2620'),(6168,1,'post_content',1522,'2620'),(6169,1,'post_content',1550,'2620'),(6170,1,'post_content',1639,'2620'),(6171,1,'post_content',1896,'2620'),(6194,1,'post_content',21,'2619'),(6195,1,'post_content',1397,'2619'),(6196,1,'post_content',1512,'2619'),(6197,1,'post_content',1657,'2619'),(6198,1,'post_content',1400,'2619'),(6199,1,'post_content',1404,'2619'),(6200,1,'post_content',1407,'2619'),(6201,1,'post_content',1654,'2619'),(6202,1,'post_content',1559,'2619'),(6203,1,'post_content',1680,'2619'),(6204,1,'post_content',1590,'2619'),(6205,1,'post_content',1687,'2619'),(6206,1,'post_content',1410,'2619'),(6207,1,'post_content',1684,'2619'),(6208,1,'post_content',1547,'2619'),(6209,1,'post_content',1451,'2619'),(6210,1,'post_content',1509,'2619'),(6211,1,'post_content',1516,'2619'),(6212,1,'post_content',1530,'2619'),(6213,1,'post_content',1522,'2619'),(6214,1,'post_content',1550,'2619'),(6215,1,'post_content',1639,'2619'),(6216,1,'post_content',1896,'2619'),(6239,1,'post_content',21,'2618'),(6240,1,'post_content',1397,'2618'),(6241,1,'post_content',1512,'2618'),(6242,1,'post_content',1657,'2618'),(6243,1,'post_content',1400,'2618'),(6244,1,'post_content',1404,'2618'),(6245,1,'post_content',1407,'2618'),(6246,1,'post_content',1654,'2618'),(6247,1,'post_content',1559,'2618'),(6248,1,'post_content',1680,'2618'),(6249,1,'post_content',1590,'2618'),(6250,1,'post_content',1687,'2618'),(6251,1,'post_content',1410,'2618'),(6252,1,'post_content',1684,'2618'),(6253,1,'post_content',1547,'2618'),(6254,1,'post_content',1451,'2618'),(6255,1,'post_content',1509,'2618'),(6256,1,'post_content',1516,'2618'),(6257,1,'post_content',1530,'2618'),(6258,1,'post_content',1522,'2618'),(6259,1,'post_content',1550,'2618'),(6260,1,'post_content',1639,'2618'),(6261,1,'post_content',1896,'2618'),(6284,1,'post_content',21,'2617'),(6285,1,'post_content',1397,'2617'),(6286,1,'post_content',1512,'2617'),(6287,1,'post_content',1657,'2617'),(6288,1,'post_content',1400,'2617'),(6289,1,'post_content',1404,'2617'),(6290,1,'post_content',1407,'2617'),(6291,1,'post_content',1654,'2617'),(6292,1,'post_content',1559,'2617'),(6293,1,'post_content',1680,'2617'),(6294,1,'post_content',1590,'2617'),(6295,1,'post_content',1687,'2617'),(6296,1,'post_content',1410,'2617'),(6297,1,'post_content',1684,'2617'),(6298,1,'post_content',1547,'2617'),(6299,1,'post_content',1451,'2617'),(6300,1,'post_content',1509,'2617'),(6301,1,'post_content',1516,'2617'),(6302,1,'post_content',1530,'2617'),(6303,1,'post_content',1522,'2617'),(6304,1,'post_content',1550,'2617'),(6305,1,'post_content',1639,'2617'),(6306,1,'post_content',1896,'2617'),(6329,1,'post_content',21,'2616'),(6330,1,'post_content',1397,'2616'),(6331,1,'post_content',1512,'2616'),(6332,1,'post_content',1657,'2616'),(6333,1,'post_content',1400,'2616'),(6334,1,'post_content',1404,'2616'),(6335,1,'post_content',1407,'2616'),(6336,1,'post_content',1654,'2616'),(6337,1,'post_content',1559,'2616'),(6338,1,'post_content',1680,'2616'),(6339,1,'post_content',1590,'2616'),(6340,1,'post_content',1687,'2616'),(6341,1,'post_content',1410,'2616'),(6342,1,'post_content',1684,'2616'),(6343,1,'post_content',1547,'2616'),(6344,1,'post_content',1451,'2616'),(6345,1,'post_content',1509,'2616'),(6346,1,'post_content',1516,'2616'),(6347,1,'post_content',1530,'2616'),(6348,1,'post_content',1522,'2616'),(6349,1,'post_content',1550,'2616'),(6350,1,'post_content',1639,'2616'),(6351,1,'post_content',1896,'2616'),(6374,1,'post_content',21,'2615'),(6375,1,'post_content',1397,'2615'),(6376,1,'post_content',1512,'2615'),(6377,1,'post_content',1657,'2615'),(6378,1,'post_content',1400,'2615'),(6379,1,'post_content',1404,'2615'),(6380,1,'post_content',1407,'2615'),(6381,1,'post_content',1654,'2615'),(6382,1,'post_content',1559,'2615'),(6383,1,'post_content',1680,'2615'),(6384,1,'post_content',1590,'2615'),(6385,1,'post_content',1687,'2615'),(6386,1,'post_content',1410,'2615'),(6387,1,'post_content',1684,'2615'),(6388,1,'post_content',1547,'2615'),(6389,1,'post_content',1451,'2615'),(6390,1,'post_content',1509,'2615'),(6391,1,'post_content',1516,'2615'),(6392,1,'post_content',1530,'2615'),(6393,1,'post_content',1522,'2615'),(6394,1,'post_content',1550,'2615'),(6395,1,'post_content',1639,'2615'),(6396,1,'post_content',1896,'2615'),(6404,1,'post_content',2643,'2639'),(6403,1,'post_content',2642,'2639'),(6402,1,'post_content',2641,'2639'),(6401,1,'post_content',2640,'2639'),(6406,1,'post_content',2657,'2656'),(6412,1,'post_content',2577,'2681'),(6414,1,'post_content',1616,'2680'),(6415,1,'post_content',1896,'2680'),(6417,1,'post_content',1616,'2679'),(6418,1,'post_content',1896,'2679'),(6420,1,'post_content',1616,'2678'),(6421,1,'post_content',1896,'2678'),(6423,1,'post_content',1616,'2677'),(6425,1,'post_content',1616,'2676'),(6428,1,'post_content',1616,'2675'),(6431,1,'post_content',1616,'2673'),(6442,1,'post_content',2590,'2671'),(6443,1,'post_content',2586,'2671'),(6444,1,'post_content',2566,'2671'),(6445,1,'post_content',2594,'2671'),(6446,1,'post_content',1363,'2671'),(6447,1,'post_content',1616,'2671'),(6448,1,'post_content',2573,'2671'),(6449,1,'post_content',2577,'2671'),(6450,1,'post_content',2582,'2671'),(6460,1,'post_content',2590,'2670'),(6461,1,'post_content',2586,'2670'),(6462,1,'post_content',2566,'2670'),(6463,1,'post_content',2594,'2670'),(6464,1,'post_content',1363,'2670'),(6465,1,'post_content',1616,'2670'),(6466,1,'post_content',2573,'2670'),(6467,1,'post_content',2577,'2670'),(6468,1,'post_content',2582,'2670'),(6478,1,'post_content',2590,'2669'),(6479,1,'post_content',2586,'2669'),(6480,1,'post_content',2566,'2669'),(6481,1,'post_content',2594,'2669'),(6482,1,'post_content',1363,'2669'),(6483,1,'post_content',1616,'2669'),(6484,1,'post_content',2573,'2669'),(6485,1,'post_content',2577,'2669'),(6486,1,'post_content',2582,'2669'),(6494,1,'post_content',2692,'2690'),(6493,1,'post_content',2691,'2690'),(6542,1,'post_content',1559,'2708'),(6543,1,'post_content',1680,'2708'),(6544,1,'post_content',1590,'2708'),(6545,1,'post_content',1687,'2708'),(6546,1,'post_content',1410,'2708'),(6547,1,'post_content',1684,'2708'),(6548,1,'post_content',1547,'2708'),(6549,1,'post_content',1451,'2708'),(6550,1,'post_content',1509,'2708'),(6551,1,'post_content',1516,'2708'),(6552,1,'post_content',1530,'2708'),(6553,1,'post_content',1522,'2708'),(6554,1,'post_content',1550,'2708'),(6555,1,'post_content',1639,'2708'),(6556,1,'post_content',1896,'2708'),(6580,1,'post_content',21,'2707'),(6581,1,'post_content',1397,'2707'),(6582,1,'post_content',1512,'2707'),(6583,1,'post_content',1657,'2707'),(6584,1,'post_content',1400,'2707'),(6585,1,'post_content',1404,'2707'),(6586,1,'post_content',1407,'2707'),(6587,1,'post_content',1654,'2707'),(6588,1,'post_content',1559,'2707'),(6589,1,'post_content',1680,'2707'),(6590,1,'post_content',1590,'2707'),(6591,1,'post_content',1687,'2707'),(6592,1,'post_content',1410,'2707'),(6593,1,'post_content',1684,'2707'),(6594,1,'post_content',1547,'2707'),(6595,1,'post_content',1451,'2707'),(6596,1,'post_content',1509,'2707'),(6597,1,'post_content',1516,'2707'),(6598,1,'post_content',1530,'2707'),(6599,1,'post_content',1522,'2707'),(6600,1,'post_content',1550,'2707'),(6601,1,'post_content',1639,'2707'),(6602,1,'post_content',1896,'2707'),(6626,1,'post_content',21,'2706'),(6627,1,'post_content',1397,'2706'),(6628,1,'post_content',1512,'2706'),(6629,1,'post_content',1657,'2706'),(6630,1,'post_content',1400,'2706'),(6631,1,'post_content',1404,'2706'),(6632,1,'post_content',1407,'2706'),(6633,1,'post_content',1654,'2706'),(6634,1,'post_content',1559,'2706'),(6635,1,'post_content',1680,'2706'),(6636,1,'post_content',1590,'2706'),(6637,1,'post_content',1687,'2706'),(6638,1,'post_content',1410,'2706'),(6639,1,'post_content',1684,'2706'),(6640,1,'post_content',1547,'2706'),(6641,1,'post_content',1451,'2706'),(6642,1,'post_content',1509,'2706'),(6643,1,'post_content',1516,'2706'),(6644,1,'post_content',1530,'2706'),(6645,1,'post_content',1522,'2706'),(6646,1,'post_content',1550,'2706'),(6647,1,'post_content',1639,'2706'),(6648,1,'post_content',1896,'2706'),(6659,1,'post_thumbnail',2696,'2722'),(6664,1,'post_thumbnail',2664,'2720'),(6670,1,'post_thumbnail',2662,'2718'),(6673,1,'post_thumbnail',2655,'2716');
/*!40000 ALTER TABLE `lrwp_wps_cleaner` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_wps_cleaner_queue`
--

DROP TABLE IF EXISTS `lrwp_wps_cleaner_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_wps_cleaner_queue` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `blog_id` bigint(20) DEFAULT NULL,
  `post_id` bigint(20) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5155 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_wps_cleaner_queue`
--

LOCK TABLES `lrwp_wps_cleaner_queue` WRITE;
/*!40000 ALTER TABLE `lrwp_wps_cleaner_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `lrwp_wps_cleaner_queue` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2022-07-11 15:01:03
